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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
package endpoints
import (
"reflect"
"testing"
)
func TestEndpointResolve(t *testing.T) {
defs := Endpoint{
Hostname: "service.{region}.amazonaws.com",
SignatureVersions: []string{"v4"},
}
e := Endpoint{
Protocols: []string{"http", "https"},
SignatureVersions: []string{"v4"},
CredentialScope: CredentialScope{
Region: "us-west-2",
Service: "service",
},
}
resolved, err := e.resolve("aws", "us-west-2", defs, Options{})
if err != nil {
t.Errorf("expect no error, got %v", err)
}
if e, a := "https://service.us-west-2.amazonaws.com", resolved.URL; e != a {
t.Errorf("expect %v, got %v", e, a)
}
if e, a := "aws", resolved.PartitionID; e != a {
t.Errorf("expect %v, got %v", e, a)
}
if e, a := "service", resolved.SigningName; e != a {
t.Errorf("expect %v, got %v", e, a)
}
if e, a := "us-west-2", resolved.SigningRegion; e != a {
t.Errorf("expect %v, got %v", e, a)
}
if e, a := "v4", resolved.SigningMethod; e != a {
t.Errorf("expect %v, got %v", e, a)
}
}
func TestEndpointMergeIn(t *testing.T) {
expected := Endpoint{
Hostname: "other hostname",
Protocols: []string{"http"},
SignatureVersions: []string{"v4"},
CredentialScope: CredentialScope{
Region: "region",
Service: "service",
},
}
actual := Endpoint{}
actual.mergeIn(Endpoint{
Hostname: "other hostname",
Protocols: []string{"http"},
SignatureVersions: []string{"v4"},
CredentialScope: CredentialScope{
Region: "region",
Service: "service",
},
})
if e, a := expected, actual; !reflect.DeepEqual(e, a) {
t.Errorf("expect %v, got %v", e, a)
}
}
|