-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restrict length of volumes generated from secret names
- Loading branch information
1 parent
0f20c35
commit 501fd2d
Showing
4 changed files
with
75 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
Copyright 2019 The Tekton Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package names | ||
|
||
import ( | ||
"strings" | ||
"testing" | ||
|
||
"github.com/tektoncd/pipeline/test/names" | ||
) | ||
|
||
func TestRestrictLengthWithRandomSuffix(t *testing.T) { | ||
for _, c := range []struct { | ||
in, want string | ||
}{{ | ||
in: "hello", | ||
want: "hello-9l9zj", | ||
}, { | ||
in: strings.Repeat("a", 100), | ||
want: strings.Repeat("a", 57) + "-9l9zj", | ||
}} { | ||
t.Run(c.in, func(t *testing.T) { | ||
names.TestingSeed() | ||
got := SimpleNameGenerator.RestrictLengthWithRandomSuffix(c.in) | ||
if got != c.want { | ||
t.Errorf("RestrictLengthWithRandomSuffix:\n got %q\nwant %q", got, c.want) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func TestRestrictLength(t *testing.T) { | ||
for _, c := range []struct { | ||
in, want string | ||
}{{ | ||
in: "hello", | ||
want: "hello", | ||
}, { | ||
in: strings.Repeat("a", 100), | ||
want: strings.Repeat("a", maxNameLength), | ||
}, { | ||
// Values that don't end with an alphanumeric value are | ||
// trimmed until they do. | ||
in: "abcdefg !@#!$", | ||
want: "abcdefg", | ||
}} { | ||
t.Run(c.in, func(t *testing.T) { | ||
got := SimpleNameGenerator.RestrictLength(c.in) | ||
if got != c.want { | ||
t.Errorf("RestrictLength:\n got %q\nwant %q", got, c.want) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters