|
1 | 1 | package domain
|
2 | 2 |
|
3 | 3 | import (
|
| 4 | + "fmt" |
4 | 5 | "testing"
|
5 | 6 |
|
6 | 7 | "github.com/stretchr/testify/assert"
|
@@ -95,3 +96,111 @@ func TestValidateDomains(t *testing.T) {
|
95 | 96 | })
|
96 | 97 | }
|
97 | 98 | }
|
| 99 | + |
| 100 | +// TestValidateDomainsStrSlice tests the ValidateDomainsStrSlice function. |
| 101 | +func TestValidateDomainsStrSlice(t *testing.T) { |
| 102 | + // Generate a slice of valid domains up to maxDomains |
| 103 | + validDomains := make([]string, maxDomains) |
| 104 | + for i := 0; i < maxDomains; i++ { |
| 105 | + validDomains[i] = fmt.Sprintf("example%d.com", i) |
| 106 | + } |
| 107 | + |
| 108 | + tests := []struct { |
| 109 | + name string |
| 110 | + domains []string |
| 111 | + expected []string |
| 112 | + wantErr bool |
| 113 | + }{ |
| 114 | + { |
| 115 | + name: "Empty list", |
| 116 | + domains: nil, |
| 117 | + expected: nil, |
| 118 | + wantErr: false, |
| 119 | + }, |
| 120 | + { |
| 121 | + name: "Single valid ASCII domain", |
| 122 | + domains: []string{"sub.ex-ample.com"}, |
| 123 | + expected: []string{"sub.ex-ample.com"}, |
| 124 | + wantErr: false, |
| 125 | + }, |
| 126 | + { |
| 127 | + name: "Underscores in labels", |
| 128 | + domains: []string{"_jabber._tcp.gmail.com"}, |
| 129 | + expected: []string{"_jabber._tcp.gmail.com"}, |
| 130 | + wantErr: false, |
| 131 | + }, |
| 132 | + { |
| 133 | + // Unlike ValidateDomains (which converts to punycode), |
| 134 | + // ValidateDomainsStrSlice will fail on non-ASCII domain chars. |
| 135 | + name: "Unicode domain fails (no punycode conversion)", |
| 136 | + domains: []string{"münchen.de"}, |
| 137 | + expected: nil, |
| 138 | + wantErr: true, |
| 139 | + }, |
| 140 | + { |
| 141 | + name: "Invalid domain format - leading dash", |
| 142 | + domains: []string{"-example.com"}, |
| 143 | + expected: nil, |
| 144 | + wantErr: true, |
| 145 | + }, |
| 146 | + { |
| 147 | + name: "Invalid domain format - trailing dash", |
| 148 | + domains: []string{"example-.com"}, |
| 149 | + expected: nil, |
| 150 | + wantErr: true, |
| 151 | + }, |
| 152 | + { |
| 153 | + // The function stops on the first invalid domain and returns an error, |
| 154 | + // so only the first domain is definitely valid, but the second is invalid. |
| 155 | + name: "Multiple domains with a valid one, then invalid", |
| 156 | + domains: []string{"google.com", "invalid_domain.com-"}, |
| 157 | + expected: []string{"google.com"}, |
| 158 | + wantErr: true, |
| 159 | + }, |
| 160 | + { |
| 161 | + name: "Valid wildcard domain", |
| 162 | + domains: []string{"*.example.com"}, |
| 163 | + expected: []string{"*.example.com"}, |
| 164 | + wantErr: false, |
| 165 | + }, |
| 166 | + { |
| 167 | + name: "Wildcard with leading dot - invalid", |
| 168 | + domains: []string{".*.example.com"}, |
| 169 | + expected: nil, |
| 170 | + wantErr: true, |
| 171 | + }, |
| 172 | + { |
| 173 | + name: "Invalid wildcard with multiple asterisks", |
| 174 | + domains: []string{"a.*.example.com"}, |
| 175 | + expected: nil, |
| 176 | + wantErr: true, |
| 177 | + }, |
| 178 | + { |
| 179 | + name: "Exactly maxDomains items (valid)", |
| 180 | + domains: validDomains, |
| 181 | + expected: validDomains, |
| 182 | + wantErr: false, |
| 183 | + }, |
| 184 | + { |
| 185 | + name: "Exceeds maxDomains items", |
| 186 | + domains: append(validDomains, "extra.com"), |
| 187 | + expected: nil, |
| 188 | + wantErr: true, |
| 189 | + }, |
| 190 | + } |
| 191 | + |
| 192 | + for _, tt := range tests { |
| 193 | + t.Run(tt.name, func(t *testing.T) { |
| 194 | + got, err := ValidateDomainsStrSlice(tt.domains) |
| 195 | + // Check if we got an error where expected |
| 196 | + if tt.wantErr { |
| 197 | + assert.Error(t, err) |
| 198 | + } else { |
| 199 | + assert.NoError(t, err) |
| 200 | + } |
| 201 | + |
| 202 | + // Compare the returned domains to what we expect |
| 203 | + assert.Equal(t, tt.expected, got) |
| 204 | + }) |
| 205 | + } |
| 206 | +} |
0 commit comments