Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
bb8a4f5e
Commit
bb8a4f5e
authored
Mar 02, 2015
by
gmarek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apply comments
parent
726a5af0
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
32 additions
and
24 deletions
+32
-24
frontend-controller.json
examples/guestbook/frontend-controller.json
+1
-1
validation.go
pkg/api/validation/validation.go
+5
-4
validation_test.go
pkg/api/validation/validation_test.go
+17
-8
selector_test.go
pkg/labels/selector_test.go
+1
-1
validation.go
pkg/util/validation.go
+7
-9
validation_test.go
pkg/util/validation_test.go
+1
-1
No files found.
examples/guestbook/frontend-controller.json
View file @
bb8a4f5e
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
},
},
"labels"
:
{
"labels"
:
{
"name"
:
"frontend"
,
"name"
:
"frontend"
,
"uses"
:
"redis-slave
,
redis-master"
,
"uses"
:
"redis-slave
-or-
redis-master"
,
"app"
:
"frontend"
"app"
:
"frontend"
}
}
}},
}},
...
...
pkg/api/validation/validation.go
View file @
bb8a4f5e
...
@@ -30,7 +30,6 @@ import (
...
@@ -30,7 +30,6 @@ import (
"github.com/golang/glog"
"github.com/golang/glog"
)
)
const
invalidAnnotationValueErrorMsg
string
=
"must match regex "
+
util
.
AnnotationValueFmt
const
cIdentifierErrorMsg
string
=
"must match regex "
+
util
.
CIdentifierFmt
const
cIdentifierErrorMsg
string
=
"must match regex "
+
util
.
CIdentifierFmt
const
isNegativeErrorMsg
string
=
"value must not be negative"
const
isNegativeErrorMsg
string
=
"value must not be negative"
...
@@ -46,6 +45,8 @@ var dns952LabelErrorMsg string = fmt.Sprintf("must have at most %d characters an
...
@@ -46,6 +45,8 @@ var dns952LabelErrorMsg string = fmt.Sprintf("must have at most %d characters an
var
pdPartitionErrorMsg
string
=
intervalErrorMsg
(
0
,
255
)
var
pdPartitionErrorMsg
string
=
intervalErrorMsg
(
0
,
255
)
var
portRangeErrorMsg
string
=
intervalErrorMsg
(
0
,
65536
)
var
portRangeErrorMsg
string
=
intervalErrorMsg
(
0
,
65536
)
const
totalAnnotationSizeLimitB
int
=
64
*
(
1
<<
10
)
// 64 kB
// ValidateLabels validates that a set of labels are correctly defined.
// ValidateLabels validates that a set of labels are correctly defined.
func
ValidateLabels
(
labels
map
[
string
]
string
,
field
string
)
errs
.
ValidationErrorList
{
func
ValidateLabels
(
labels
map
[
string
]
string
,
field
string
)
errs
.
ValidationErrorList
{
allErrs
:=
errs
.
ValidationErrorList
{}
allErrs
:=
errs
.
ValidationErrorList
{}
...
@@ -69,11 +70,11 @@ func ValidateAnnotations(annotations map[string]string, field string) errs.Valid
...
@@ -69,11 +70,11 @@ func ValidateAnnotations(annotations map[string]string, field string) errs.Valid
allErrs
=
append
(
allErrs
,
errs
.
NewFieldInvalid
(
field
,
k
,
qualifiedNameErrorMsg
))
allErrs
=
append
(
allErrs
,
errs
.
NewFieldInvalid
(
field
,
k
,
qualifiedNameErrorMsg
))
}
}
if
!
util
.
IsValidAnnotationValue
(
v
)
{
if
!
util
.
IsValidAnnotationValue
(
v
)
{
allErrs
=
append
(
allErrs
,
errs
.
NewFieldInvalid
(
field
,
k
,
invalidAnnotationValueErrorMsg
))
allErrs
=
append
(
allErrs
,
errs
.
NewFieldInvalid
(
field
,
k
,
""
))
}
}
totalSize
+=
(
int64
)(
len
(
k
))
+
(
int64
)(
len
(
v
))
totalSize
+=
(
int64
)(
len
(
k
))
+
(
int64
)(
len
(
v
))
}
}
if
totalSize
>
(
int64
)(
util
.
TotalAnnotationSize
B
)
{
if
totalSize
>
(
int64
)(
totalAnnotationSizeLimit
B
)
{
allErrs
=
append
(
allErrs
,
errs
.
NewFieldTooLong
(
"annotations"
,
""
))
allErrs
=
append
(
allErrs
,
errs
.
NewFieldTooLong
(
"annotations"
,
""
))
}
}
return
allErrs
return
allErrs
...
@@ -881,7 +882,7 @@ func validateResourceName(value string, field string) errs.ValidationErrorList {
...
@@ -881,7 +882,7 @@ func validateResourceName(value string, field string) errs.ValidationErrorList {
if
len
(
strings
.
Split
(
value
,
"/"
))
==
1
{
if
len
(
strings
.
Split
(
value
,
"/"
))
==
1
{
if
!
api
.
IsStandardResourceName
(
value
)
{
if
!
api
.
IsStandardResourceName
(
value
)
{
return
append
(
allErrs
,
errs
.
NewFieldInvalid
(
field
,
value
,
"is neither a standard resource type nor is fully qualified"
)
return
append
(
allErrs
,
errs
.
NewFieldInvalid
(
field
,
value
,
"is neither a standard resource type nor is fully qualified"
)
)
}
}
}
}
...
...
pkg/api/validation/validation_test.go
View file @
bb8a4f5e
...
@@ -76,7 +76,7 @@ func TestValidateLabels(t *testing.T) {
...
@@ -76,7 +76,7 @@ func TestValidateLabels(t *testing.T) {
{
"1234/5678"
:
"bar"
},
{
"1234/5678"
:
"bar"
},
{
"1.2.3.4/5678"
:
"bar"
},
{
"1.2.3.4/5678"
:
"bar"
},
{
"UpperCaseAreOK123"
:
"bar"
},
{
"UpperCaseAreOK123"
:
"bar"
},
{
"goodvalue"
:
"123_-.BaR
,
"
},
{
"goodvalue"
:
"123_-.BaR"
},
}
}
for
i
:=
range
successCases
{
for
i
:=
range
successCases
{
errs
:=
ValidateLabels
(
successCases
[
i
],
"field"
)
errs
:=
ValidateLabels
(
successCases
[
i
],
"field"
)
...
@@ -106,6 +106,7 @@ func TestValidateLabels(t *testing.T) {
...
@@ -106,6 +106,7 @@ func TestValidateLabels(t *testing.T) {
labelValueErrorCases
:=
[]
map
[
string
]
string
{
labelValueErrorCases
:=
[]
map
[
string
]
string
{
{
"toolongvalue"
:
strings
.
Repeat
(
"a"
,
64
)},
{
"toolongvalue"
:
strings
.
Repeat
(
"a"
,
64
)},
{
"backslashesinvalue"
:
"some
\\
bad
\\
value"
},
{
"backslashesinvalue"
:
"some
\\
bad
\\
value"
},
{
"nocommasallowed"
:
"bad,value"
},
{
"strangecharsinvalue"
:
"?#$notsogood"
},
{
"strangecharsinvalue"
:
"?#$notsogood"
},
}
}
for
i
:=
range
labelValueErrorCases
{
for
i
:=
range
labelValueErrorCases
{
...
@@ -136,7 +137,11 @@ func TestValidateAnnotations(t *testing.T) {
...
@@ -136,7 +137,11 @@ func TestValidateAnnotations(t *testing.T) {
{
"1234/5678"
:
"bar"
},
{
"1234/5678"
:
"bar"
},
{
"1.2.3.4/5678"
:
"bar"
},
{
"1.2.3.4/5678"
:
"bar"
},
{
"UpperCase123"
:
"bar"
},
{
"UpperCase123"
:
"bar"
},
{
"a"
:
strings
.
Repeat
(
"b"
,
64
*
(
1
<<
10
)
-
1
)},
{
"a"
:
strings
.
Repeat
(
"b"
,
(
64
*
1024
)
-
1
)},
{
"a"
:
strings
.
Repeat
(
"b"
,
(
32
*
1024
)
-
1
),
"c"
:
strings
.
Repeat
(
"d"
,
(
32
*
1024
)
-
1
),
},
}
}
for
i
:=
range
successCases
{
for
i
:=
range
successCases
{
errs
:=
ValidateAnnotations
(
successCases
[
i
],
"field"
)
errs
:=
ValidateAnnotations
(
successCases
[
i
],
"field"
)
...
@@ -144,7 +149,7 @@ func TestValidateAnnotations(t *testing.T) {
...
@@ -144,7 +149,7 @@ func TestValidateAnnotations(t *testing.T) {
t
.
Errorf
(
"case[%d] expected success, got %#v"
,
i
,
errs
)
t
.
Errorf
(
"case[%d] expected success, got %#v"
,
i
,
errs
)
}
}
}
}
nameErrorCases
:=
[]
map
[
string
]
string
{
nameErrorCases
:=
[]
map
[
string
]
string
{
{
"nospecialchars^=@"
:
"bar"
},
{
"nospecialchars^=@"
:
"bar"
},
{
"cantendwithadash-"
:
"bar"
},
{
"cantendwithadash-"
:
"bar"
},
...
@@ -161,11 +166,15 @@ func TestValidateAnnotations(t *testing.T) {
...
@@ -161,11 +166,15 @@ func TestValidateAnnotations(t *testing.T) {
t
.
Errorf
(
"error detail %s should be equal %s"
,
detail
,
qualifiedNameErrorMsg
)
t
.
Errorf
(
"error detail %s should be equal %s"
,
detail
,
qualifiedNameErrorMsg
)
}
}
}
}
errorCases
:=
[]
map
[
string
]
string
{
totalSizeErrorCases
:=
[]
map
[
string
]
string
{
{
"a"
:
strings
.
Repeat
(
"b"
,
64
*
(
1
<<
10
))},
{
"a"
:
strings
.
Repeat
(
"b"
,
64
*
1024
)},
{
"a"
:
strings
.
Repeat
(
"b"
,
32
*
1024
),
"c"
:
strings
.
Repeat
(
"d"
,
32
*
1024
),
},
}
}
for
i
:=
range
e
rrorCases
{
for
i
:=
range
totalSizeE
rrorCases
{
errs
:=
ValidateAnnotations
(
e
rrorCases
[
i
],
"field"
)
errs
:=
ValidateAnnotations
(
totalSizeE
rrorCases
[
i
],
"field"
)
if
len
(
errs
)
!=
1
{
if
len
(
errs
)
!=
1
{
t
.
Errorf
(
"case[%d] expected failure"
,
i
)
t
.
Errorf
(
"case[%d] expected failure"
,
i
)
}
}
...
@@ -2274,7 +2283,7 @@ func TestValidateResourceNames(t *testing.T) {
...
@@ -2274,7 +2283,7 @@ func TestValidateResourceNames(t *testing.T) {
{
"."
,
false
},
{
"."
,
false
},
{
".."
,
false
},
{
".."
,
false
},
{
"my.favorite.app.co/12345"
,
true
},
{
"my.favorite.app.co/12345"
,
true
},
{
"my.favorite.app.co/_12345"
,
tru
e
},
{
"my.favorite.app.co/_12345"
,
fals
e
},
{
"my.favorite.app.co/12345_"
,
false
},
{
"my.favorite.app.co/12345_"
,
false
},
{
"kubernetes.io/.."
,
false
},
{
"kubernetes.io/.."
,
false
},
{
"kubernetes.io/"
+
longString
,
true
},
{
"kubernetes.io/"
+
longString
,
true
},
...
...
pkg/labels/selector_test.go
View file @
bb8a4f5e
...
@@ -417,7 +417,7 @@ func TestRequirementConstructor(t *testing.T) {
...
@@ -417,7 +417,7 @@ func TestRequirementConstructor(t *testing.T) {
{
"x"
,
ExistsOperator
,
nil
,
true
},
{
"x"
,
ExistsOperator
,
nil
,
true
},
{
"1foo"
,
InOperator
,
util
.
NewStringSet
(
"bar"
),
true
},
{
"1foo"
,
InOperator
,
util
.
NewStringSet
(
"bar"
),
true
},
{
"1234"
,
InOperator
,
util
.
NewStringSet
(
"bar"
),
true
},
{
"1234"
,
InOperator
,
util
.
NewStringSet
(
"bar"
),
true
},
{
strings
.
Repeat
(
"a"
,
64
),
ExistsOperator
,
nil
,
true
},
//breaks DNS rule that len(key) <= 6
3
{
strings
.
Repeat
(
"a"
,
254
),
ExistsOperator
,
nil
,
false
},
//breaks DNS rule that len(key) <= 25
3
}
}
for
_
,
rc
:=
range
requirementConstructorTests
{
for
_
,
rc
:=
range
requirementConstructorTests
{
if
_
,
err
:=
NewRequirement
(
rc
.
Key
,
rc
.
Op
,
rc
.
Vals
);
err
==
nil
&&
!
rc
.
Success
{
if
_
,
err
:=
NewRequirement
(
rc
.
Key
,
rc
.
Op
,
rc
.
Vals
);
err
==
nil
&&
!
rc
.
Success
{
...
...
pkg/util/validation.go
View file @
bb8a4f5e
...
@@ -20,7 +20,7 @@ import (
...
@@ -20,7 +20,7 @@ import (
"regexp"
"regexp"
)
)
const
LabelValueFmt
string
=
"[
A-Za-z0-9_
\\
-
\\
.,
]*"
const
LabelValueFmt
string
=
"[
-A-Za-z0-9_.
]*"
var
labelValueRegexp
=
regexp
.
MustCompile
(
"^"
+
LabelValueFmt
+
"$"
)
var
labelValueRegexp
=
regexp
.
MustCompile
(
"^"
+
LabelValueFmt
+
"$"
)
...
@@ -30,17 +30,15 @@ func IsValidLabelValue(value string) bool {
...
@@ -30,17 +30,15 @@ func IsValidLabelValue(value string) bool {
return
(
len
(
value
)
<=
LabelValueMaxLength
&&
labelValueRegexp
.
MatchString
(
value
))
return
(
len
(
value
)
<=
LabelValueMaxLength
&&
labelValueRegexp
.
MatchString
(
value
))
}
}
const
AnnotationValueFmt
string
=
".*"
// Annotation values are opaque.
var
annotationValueRegexp
=
regexp
.
MustCompile
(
"^"
+
AnnotationValueFmt
+
"$"
)
const
TotalAnnotationSizeB
int
=
64
*
(
1
<<
10
)
// 64 kB
func
IsValidAnnotationValue
(
value
string
)
bool
{
func
IsValidAnnotationValue
(
value
string
)
bool
{
return
annotationValueRegexp
.
MatchString
(
value
)
return
true
}
}
const
QualifiedNameFmt
string
=
"([A-Za-z0-9_
\\
-
\\
.]+/)?[A-Za-z0-9_
\\
-
\\
.]*[A-Za-z0-9]"
const
kubeToken
string
=
"[A-Za-z0-9]"
const
extendedKubeToken
string
=
"[-A-Za-z0-9_.]"
const
qualifiedNamePiece
string
=
"("
+
kubeToken
+
extendedKubeToken
+
"*)?"
+
kubeToken
const
QualifiedNameFmt
string
=
"("
+
qualifiedNamePiece
+
"/)?"
+
qualifiedNamePiece
var
qualifiedNameRegexp
=
regexp
.
MustCompile
(
"^"
+
QualifiedNameFmt
+
"$"
)
var
qualifiedNameRegexp
=
regexp
.
MustCompile
(
"^"
+
QualifiedNameFmt
+
"$"
)
...
...
pkg/util/validation_test.go
View file @
bb8a4f5e
...
@@ -169,7 +169,6 @@ func TestIsQualifiedName(t *testing.T) {
...
@@ -169,7 +169,6 @@ func TestIsQualifiedName(t *testing.T) {
"1234/5678"
,
"1234/5678"
,
"1.2.3.4/5678"
,
"1.2.3.4/5678"
,
"UppercaseIsOK123"
,
"UppercaseIsOK123"
,
"-canstartwithadash"
,
}
}
for
i
:=
range
successCases
{
for
i
:=
range
successCases
{
if
!
IsQualifiedName
(
successCases
[
i
])
{
if
!
IsQualifiedName
(
successCases
[
i
])
{
...
@@ -182,6 +181,7 @@ func TestIsQualifiedName(t *testing.T) {
...
@@ -182,6 +181,7 @@ func TestIsQualifiedName(t *testing.T) {
"cantendwithadash-"
,
"cantendwithadash-"
,
"only/one/slash"
,
"only/one/slash"
,
strings
.
Repeat
(
"a"
,
254
),
strings
.
Repeat
(
"a"
,
254
),
"-cantstartwithadash"
,
}
}
for
i
:=
range
errorCases
{
for
i
:=
range
errorCases
{
if
IsQualifiedName
(
errorCases
[
i
])
{
if
IsQualifiedName
(
errorCases
[
i
])
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment