Files
gortsplib/pkg/base/url_test.go
Alessandro Ros ec81d388d1 switch to v5 (#890)
* switch from v4 to v5

* remove deprecated entities

* remove "2" suffix from entities

* rename TransportProtocol into Protocol
2025-09-16 11:46:52 +02:00

113 lines
2.1 KiB
Go

package base
import (
"net/url"
"testing"
"github.com/stretchr/testify/require"
)
func mustParseURL(s string) *URL {
u, err := ParseURL(s)
if err != nil {
panic(err)
}
return u
}
func TestParseURL(t *testing.T) {
for _, ca := range []struct {
name string
enc string
u *URL
}{
{
"ipv6 stateless",
`rtsp://user:pa%23ss@[fe80::a8f4:3219:f33e:a072%wl0]:8554/prox%23ied`,
&URL{
Scheme: "rtsp",
Host: "[fe80::a8f4:3219:f33e:a072%wl0]:8554",
Path: "/prox#ied",
User: url.UserPassword("user", "pa#ss"),
},
},
} {
t.Run(ca.name, func(t *testing.T) {
u, err := ParseURL(ca.enc)
require.NoError(t, err)
require.Equal(t, ca.u, u)
})
}
}
func TestURLParseErrors(t *testing.T) {
for _, ca := range []struct {
name string
enc string
err string
}{
{
"invalid",
":testing",
"parse \":testing\": missing protocol scheme",
},
{
"unsupported scheme",
"http://testing",
"unsupported scheme 'http'",
},
{
"with opaque data",
"rtsp:opaque?query",
"URLs with opaque data are not supported",
},
{
"with fragment",
"rtsp://localhost:8554/teststream#fragment",
"URLs with fragments are not supported",
},
} {
t.Run(ca.name, func(t *testing.T) {
_, err := ParseURL(ca.enc)
require.EqualError(t, err, ca.err)
})
}
}
func TestURLClone(t *testing.T) {
u := mustParseURL("rtsp://localhost:8554/test/stream")
u2 := u.Clone()
u.Host = "otherhost"
require.Equal(t, &URL{
Scheme: "rtsp",
Host: "otherhost",
Path: "/test/stream",
}, u)
require.Equal(t, &URL{
Scheme: "rtsp",
Host: "localhost:8554",
Path: "/test/stream",
}, u2)
}
func TestURLCloneWithoutCredentials(t *testing.T) {
u := mustParseURL("rtsp://user:pass@localhost:8554/test/stream")
u2 := u.CloneWithoutCredentials()
u.Host = "otherhost"
require.Equal(t, &URL{
Scheme: "rtsp",
Host: "otherhost",
Path: "/test/stream",
User: url.UserPassword("user", "pass"),
}, u)
require.Equal(t, &URL{
Scheme: "rtsp",
Host: "localhost:8554",
Path: "/test/stream",
}, u2)
}