
After review, there are cases where having common requirements for namespaces and identifiers creates contention between applications. One example is that it is nice to have namespaces comply with domain name requirement, but that does not allow underscores, which are required for certain identifiers. The namespaces validation has been reverted to be in line with RFC 1035. Existing identifiers has been modified to allow simply alpha-numeric identifiers, while limiting adjacent separators. We may follow up tweaks for the identifier charset but this split should remove the hard decisions. Signed-off-by: Stephen J Day <stephen.day@docker.com>
57 lines
1.1 KiB
Go
57 lines
1.1 KiB
Go
package identifiers
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/containerd/containerd/errdefs"
|
|
)
|
|
|
|
func TestValidIdentifiers(t *testing.T) {
|
|
for _, input := range []string{
|
|
"default",
|
|
"Default",
|
|
t.Name(),
|
|
"default-default",
|
|
"containerd.io",
|
|
"foo.boo",
|
|
"swarmkit.docker.io",
|
|
"0912341234",
|
|
"task.0.0123456789",
|
|
"underscores_are_allowed",
|
|
strings.Repeat("a", maxLength),
|
|
} {
|
|
t.Run(input, func(t *testing.T) {
|
|
if err := Validate(input); err != nil {
|
|
t.Fatalf("unexpected error: %v != nil", err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestInvalidIdentifiers(t *testing.T) {
|
|
for _, input := range []string{
|
|
"",
|
|
".foo..foo",
|
|
"foo/foo",
|
|
"foo/..",
|
|
"foo..foo",
|
|
"foo.-boo",
|
|
"-foo.boo",
|
|
"foo.boo-",
|
|
"but__only_tasteful_underscores",
|
|
"zn--e9.org", // or something like it!
|
|
"default--default",
|
|
strings.Repeat("a", maxLength+1),
|
|
} {
|
|
|
|
t.Run(input, func(t *testing.T) {
|
|
if err := Validate(input); err == nil {
|
|
t.Fatal("expected invalid error")
|
|
} else if !errdefs.IsInvalidArgument(err) {
|
|
t.Fatal("error should be an invalid identifier error")
|
|
}
|
|
})
|
|
}
|
|
}
|