Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
kube-bench
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
aquasecurity
kube-bench
Commits
d1c3e316
Commit
d1c3e316
authored
5 years ago
by
Yoav Hizkiahou
Browse files
Options
Downloads
Patches
Plain Diff
Genereate expected result automatically for each test
parent
53ef7739
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
check/check.go
+2
-0
2 additions, 0 deletions
check/check.go
check/test.go
+20
-1
20 additions, 1 deletion
check/test.go
with
22 additions
and
1 deletion
check/check.go
+
2
−
0
View file @
d1c3e316
...
@@ -72,6 +72,7 @@ type Check struct {
...
@@ -72,6 +72,7 @@ type Check struct {
State
`json:"status"`
State
`json:"status"`
ActualValue
string
`json:"actual_value"`
ActualValue
string
`json:"actual_value"`
Scored
bool
`json:"scored"`
Scored
bool
`json:"scored"`
ExpectedResult
string
`json:"expected_result"`
}
}
// Runner wraps the basic Run method.
// Runner wraps the basic Run method.
...
@@ -188,6 +189,7 @@ func (c *Check) run() State {
...
@@ -188,6 +189,7 @@ func (c *Check) run() State {
finalOutput
:=
c
.
Tests
.
execute
(
out
.
String
())
finalOutput
:=
c
.
Tests
.
execute
(
out
.
String
())
if
finalOutput
!=
nil
{
if
finalOutput
!=
nil
{
c
.
ActualValue
=
finalOutput
.
actualResult
c
.
ActualValue
=
finalOutput
.
actualResult
c
.
ExpectedResult
=
finalOutput
.
ExpectedResult
if
finalOutput
.
testResult
{
if
finalOutput
.
testResult
{
c
.
State
=
PASS
c
.
State
=
PASS
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.
check/test.go
+
20
−
1
View file @
d1c3e316
...
@@ -58,6 +58,7 @@ type compare struct {
...
@@ -58,6 +58,7 @@ type compare struct {
type
testOutput
struct
{
type
testOutput
struct
{
testResult
bool
testResult
bool
actualResult
string
actualResult
string
ExpectedResult
string
}
}
func
failTestItem
(
s
string
)
*
testOutput
{
func
failTestItem
(
s
string
)
*
testOutput
{
...
@@ -135,8 +136,10 @@ func (t *testItem) execute(s string) *testOutput {
...
@@ -135,8 +136,10 @@ func (t *testItem) execute(s string) *testOutput {
}
}
}
}
expectedResultPattern
:=
""
switch
t
.
Compare
.
Op
{
switch
t
.
Compare
.
Op
{
case
"eq"
:
case
"eq"
:
expectedResultPattern
=
"'%s' is equal to '%s'"
value
:=
strings
.
ToLower
(
flagVal
)
value
:=
strings
.
ToLower
(
flagVal
)
// Do case insensitive comparaison for booleans ...
// Do case insensitive comparaison for booleans ...
if
value
==
"false"
||
value
==
"true"
{
if
value
==
"false"
||
value
==
"true"
{
...
@@ -146,6 +149,7 @@ func (t *testItem) execute(s string) *testOutput {
...
@@ -146,6 +149,7 @@ func (t *testItem) execute(s string) *testOutput {
}
}
case
"noteq"
:
case
"noteq"
:
expectedResultPattern
=
"'%s' is not equal to '%s'"
value
:=
strings
.
ToLower
(
flagVal
)
value
:=
strings
.
ToLower
(
flagVal
)
// Do case insensitive comparaison for booleans ...
// Do case insensitive comparaison for booleans ...
if
value
==
"false"
||
value
==
"true"
{
if
value
==
"false"
||
value
==
"true"
{
...
@@ -155,32 +159,41 @@ func (t *testItem) execute(s string) *testOutput {
...
@@ -155,32 +159,41 @@ func (t *testItem) execute(s string) *testOutput {
}
}
case
"gt"
:
case
"gt"
:
expectedResultPattern
=
"%s is greater then %s"
a
,
b
:=
toNumeric
(
flagVal
,
t
.
Compare
.
Value
)
a
,
b
:=
toNumeric
(
flagVal
,
t
.
Compare
.
Value
)
result
.
testResult
=
a
>
b
result
.
testResult
=
a
>
b
case
"gte"
:
case
"gte"
:
expectedResultPattern
=
"%s is greater or equal to %s"
a
,
b
:=
toNumeric
(
flagVal
,
t
.
Compare
.
Value
)
a
,
b
:=
toNumeric
(
flagVal
,
t
.
Compare
.
Value
)
result
.
testResult
=
a
>=
b
result
.
testResult
=
a
>=
b
case
"lt"
:
case
"lt"
:
expectedResultPattern
=
"%s is lower then %s"
a
,
b
:=
toNumeric
(
flagVal
,
t
.
Compare
.
Value
)
a
,
b
:=
toNumeric
(
flagVal
,
t
.
Compare
.
Value
)
result
.
testResult
=
a
<
b
result
.
testResult
=
a
<
b
case
"lte"
:
case
"lte"
:
expectedResultPattern
=
"%s is lower or equal to %s"
a
,
b
:=
toNumeric
(
flagVal
,
t
.
Compare
.
Value
)
a
,
b
:=
toNumeric
(
flagVal
,
t
.
Compare
.
Value
)
result
.
testResult
=
a
<=
b
result
.
testResult
=
a
<=
b
case
"has"
:
case
"has"
:
expectedResultPattern
=
"'%s' has '%s'"
result
.
testResult
=
strings
.
Contains
(
flagVal
,
t
.
Compare
.
Value
)
result
.
testResult
=
strings
.
Contains
(
flagVal
,
t
.
Compare
.
Value
)
case
"nothave"
:
case
"nothave"
:
expectedResultPattern
=
" '%s' not have '%s'"
result
.
testResult
=
!
strings
.
Contains
(
flagVal
,
t
.
Compare
.
Value
)
result
.
testResult
=
!
strings
.
Contains
(
flagVal
,
t
.
Compare
.
Value
)
}
}
result
.
ExpectedResult
=
fmt
.
Sprintf
(
expectedResultPattern
,
t
.
Flag
,
t
.
Compare
.
Value
)
}
else
{
}
else
{
result
.
ExpectedResult
=
fmt
.
Sprintf
(
"'%s' is present"
,
t
.
Flag
)
result
.
testResult
=
isset
result
.
testResult
=
isset
}
}
}
else
{
}
else
{
result
.
ExpectedResult
=
fmt
.
Sprintf
(
"'%s' is not present"
,
t
.
Flag
)
notset
:=
!
match
notset
:=
!
match
result
.
testResult
=
notset
result
.
testResult
=
notset
}
}
...
@@ -219,13 +232,19 @@ func (ts *tests) execute(s string) *testOutput {
...
@@ -219,13 +232,19 @@ func (ts *tests) execute(s string) *testOutput {
case
and
,
""
:
case
and
,
""
:
result
=
true
result
=
true
for
i
:=
range
res
{
for
i
:=
range
res
{
finalOutput
.
ExpectedResult
+=
fmt
.
Sprintf
(
"%s AND "
,
res
[
i
]
.
ExpectedResult
)
result
=
result
&&
res
[
i
]
.
testResult
result
=
result
&&
res
[
i
]
.
testResult
}
}
// Delete last iteration ' AND '
finalOutput
.
ExpectedResult
=
finalOutput
.
ExpectedResult
[
:
len
(
finalOutput
.
ExpectedResult
)
-
5
]
case
or
:
case
or
:
result
=
false
result
=
false
for
i
:=
range
res
{
for
i
:=
range
res
{
finalOutput
.
ExpectedResult
+=
fmt
.
Sprintf
(
"%s OR "
,
res
[
i
]
.
ExpectedResult
)
result
=
result
||
res
[
i
]
.
testResult
result
=
result
||
res
[
i
]
.
testResult
}
}
// Delete last iteration ' OR '
finalOutput
.
ExpectedResult
=
finalOutput
.
ExpectedResult
[
:
len
(
finalOutput
.
ExpectedResult
)
-
4
]
}
}
finalOutput
.
testResult
=
result
finalOutput
.
testResult
=
result
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment