-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathservice_test.go
47 lines (43 loc) · 939 Bytes
/
service_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package main
import (
"net/url"
"testing"
"github.com/pkg/errors"
"github.com/stretchr/testify/assert"
)
func TestParseURL(t *testing.T) {
tests := []struct {
name string
rawurl string
want *url.URL
wantErr error
}{
{
name: "bad url",
rawurl: "http://^",
wantErr: errors.New(`parse http://^: invalid character "^" in host name`),
},
{
name: "url without transport",
rawurl: "localhost:5678/test",
want: ParseTestURL(t, "http://localhost:5678/test"),
},
{
name: "url without path",
rawurl: "localhost:5678",
want: ParseTestURL(t, "http://localhost:5678/debug/vars"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := ParseURL(tt.rawurl)
if tt.wantErr == nil {
assert.Equal(t, tt.want, got)
assert.NoError(t, err)
} else {
assert.Nil(t, got)
assert.Equal(t, tt.wantErr.Error(), err.Error())
}
})
}
}