2015-12-23 16:07:39 +01:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestValidateEcrRepositoryName(t *testing.T) {
|
|
|
|
validNames := []string{
|
|
|
|
"nginx-web-app",
|
|
|
|
"project-a/nginx-web-app",
|
|
|
|
"domain.ltd/nginx-web-app",
|
|
|
|
"3chosome-thing.com/01different-pattern",
|
|
|
|
"0123456789/999999999",
|
|
|
|
"double/forward/slash",
|
|
|
|
"000000000000000",
|
|
|
|
}
|
|
|
|
for _, v := range validNames {
|
|
|
|
_, errors := validateEcrRepositoryName(v, "name")
|
|
|
|
if len(errors) != 0 {
|
|
|
|
t.Fatalf("%q should be a valid ECR repository name: %q", v, errors)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
invalidNames := []string{
|
|
|
|
// length > 256
|
|
|
|
"3cho_some-thing.com/01different.-_pattern01different.-_pattern01diff" +
|
|
|
|
"erent.-_pattern01different.-_pattern01different.-_pattern01different" +
|
|
|
|
".-_pattern01different.-_pattern01different.-_pattern01different.-_pa" +
|
|
|
|
"ttern01different.-_pattern01different.-_pattern234567",
|
|
|
|
// length < 2
|
|
|
|
"i",
|
|
|
|
"special@character",
|
|
|
|
"different+special=character",
|
|
|
|
"double//slash",
|
|
|
|
"double..dot",
|
|
|
|
"/slash-at-the-beginning",
|
|
|
|
"slash-at-the-end/",
|
|
|
|
}
|
|
|
|
for _, v := range invalidNames {
|
|
|
|
_, errors := validateEcrRepositoryName(v, "name")
|
|
|
|
if len(errors) == 0 {
|
|
|
|
t.Fatalf("%q should be an invalid ECR repository name", v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-29 20:13:52 +01:00
|
|
|
|
|
|
|
func TestValidateCloudWatchEventRuleName(t *testing.T) {
|
|
|
|
validNames := []string{
|
|
|
|
"HelloWorl_d",
|
|
|
|
"hello-world",
|
|
|
|
"hello.World0125",
|
|
|
|
}
|
|
|
|
for _, v := range validNames {
|
|
|
|
_, errors := validateCloudWatchEventRuleName(v, "name")
|
|
|
|
if len(errors) != 0 {
|
|
|
|
t.Fatalf("%q should be a valid CW event rule name: %q", v, errors)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
invalidNames := []string{
|
|
|
|
"special@character",
|
|
|
|
"slash/in-the-middle",
|
|
|
|
// Length > 64
|
|
|
|
"TooLooooooooooooooooooooooooooooooooooooooooooooooooooooooongName",
|
|
|
|
}
|
|
|
|
for _, v := range invalidNames {
|
|
|
|
_, errors := validateCloudWatchEventRuleName(v, "name")
|
|
|
|
if len(errors) == 0 {
|
|
|
|
t.Fatalf("%q should be an invalid CW event rule name", v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|