summaryrefslogtreecommitdiff
path: root/internal/discovery/discovery_test.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2024-05-22 14:32:38 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2024-05-29 14:36:10 +0200
commitef7f44e4bb7713b18e6c0ab1b6e3510075b6623b (patch)
treeb44d871f0bc6b128fcda037c43318f20424ee891 /internal/discovery/discovery_test.go
parentc5c8bcfc53dd4d80133b39c3b130c6600e9cec99 (diff)
Discovery: return country_code to the client
Diffstat (limited to 'internal/discovery/discovery_test.go')
-rw-r--r--internal/discovery/discovery_test.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/internal/discovery/discovery_test.go b/internal/discovery/discovery_test.go
index c2bbf44..03ea109 100644
--- a/internal/discovery/discovery_test.go
+++ b/internal/discovery/discovery_test.go
@@ -90,12 +90,12 @@ func TestSecureLocationList(t *testing.T) {
Version: 1,
List: []Server{
// institute access server, this should not be found
- {Server: discotypes.Server{Type: "institute_access"}, CountryCode: ""},
+ {Server: discotypes.Server{Type: "institute_access"}},
// secure internet servers, these should be found
- {Server: discotypes.Server{Type: "secure_internet"}, CountryCode: "b"},
- {Server: discotypes.Server{Type: "secure_internet"}, CountryCode: "c"},
+ {Server: discotypes.Server{Type: "secure_internet", CountryCode: "b"}},
+ {Server: discotypes.Server{Type: "secure_internet", CountryCode: "c"}},
// Unexpected type, this should not be found
- {Server: discotypes.Server{Type: "test"}, CountryCode: "d"},
+ {Server: discotypes.Server{Type: "test", CountryCode: "d"}},
},
},
}
@@ -150,7 +150,7 @@ func TestServerByURL(t *testing.T) {
// TestServerByCountryCode tests the function for getting a server by the country code
func TestServerByCountryCode(t *testing.T) {
- s1 := Server{Server: discotypes.Server{Type: "secure_internet"}, CountryCode: "a"}
+ s1 := Server{Server: discotypes.Server{Type: "secure_internet", CountryCode: "a"}}
d := Discovery{
ServerList: Servers{
Version: 1,
@@ -158,8 +158,8 @@ func TestServerByCountryCode(t *testing.T) {
// secure internet server
s1,
// Unexpected types, these should not be found
- {Server: discotypes.Server{Type: "institute_access"}, CountryCode: "b"},
- {Server: discotypes.Server{Type: "test"}, CountryCode: "c"},
+ {Server: discotypes.Server{Type: "institute_access", CountryCode: "b"}},
+ {Server: discotypes.Server{Type: "test", CountryCode: "c"}},
},
},
}