-
Notifications
You must be signed in to change notification settings - Fork 84
/
validation_test.go
69 lines (58 loc) · 1.94 KB
/
validation_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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package gofakes3
import (
"fmt"
"strings"
"testing"
)
func TestValidateBucketName(t *testing.T) {
type tcase struct {
name string
errCode ErrorCode
}
baseCases := []tcase{
{"", ErrInvalidBucketName},
// This is not in nameCases because appending labels to it will cause an error:
{strings.Repeat("1", 63), ErrNone},
// Appending labels to these causes them to pass:
{"192.168.1.1", ErrInvalidBucketName}, // IP addresses are not allowed as bucket names. These may trip the "3-char min" rule first.
{"192.168.111.111", ErrInvalidBucketName}, // These should not trip the 3-char min but should still fail.
}
nameCases := []tcase{
{"yep", ErrNone},
{"0yep", ErrNone},
{"yep0", ErrNone},
{"y-p", ErrNone},
{"y--p", ErrNone},
{"NUP", ErrInvalidBucketName},
{"n🤡p", ErrInvalidBucketName}, // UTF-8 is effectively invalid because the high bytes fall outside the legal range
{"-nup", ErrInvalidBucketName},
{"nup-", ErrInvalidBucketName},
{"-nup-", ErrInvalidBucketName},
{"1", ErrInvalidBucketName}, // Too short
{"12", ErrInvalidBucketName}, // Too short
{"123", ErrNone},
{strings.Repeat("1", 64), ErrInvalidBucketName},
}
// All the same rules that apply to names apply to "labels" (the "."-separated
// portions of a bucket name, like DNS):
var labelCases []tcase
for _, tc := range nameCases {
labelCases = append(labelCases, []tcase{
{name: fmt.Sprintf("%s.label", tc.name), errCode: tc.errCode},
{name: fmt.Sprintf("label.%s", tc.name), errCode: tc.errCode},
{name: fmt.Sprintf("label.%s.label", tc.name), errCode: tc.errCode},
}...)
}
var cases []tcase
cases = append(cases, baseCases...)
cases = append(cases, nameCases...)
cases = append(cases, labelCases...)
for _, tc := range cases {
t.Run("", func(t *testing.T) {
err := ValidateBucketName(tc.name)
if !HasErrorCode(err, tc.errCode) {
t.Fatalf("name %q did not contain code %q", tc.name, tc.errCode)
}
})
}
}