forked from bridgecrewio/checkov
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(kubernetes): Handle non-sting params in command (bridgecrewio#6768)
* handle a case where we have a non-sting in the command * fix mypy * fixed mypy * fixed test
- Loading branch information
Showing
2 changed files
with
19 additions
and
2 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,17 @@ | ||
from checkov.kubernetes.checks.resource.k8s.k8s_check_utils import extract_commands | ||
|
||
|
||
def test_non_int_extract_commands() -> None: | ||
conf = {'command': ['kube-apiserver', '--encryption-provider-config=config.file']} | ||
|
||
keys, values = extract_commands(conf) | ||
assert keys == ['kube-apiserver', '--encryption-provider-config'] | ||
assert values == ['', 'config.file'] | ||
|
||
|
||
def test_int_extract_commands() -> None: | ||
conf = {'command': ['kube-apiserver', '--encryption-provider-config=config.file', '-p', 9082]} | ||
|
||
keys, values = extract_commands(conf) | ||
assert keys == ['kube-apiserver', '--encryption-provider-config', '-p', 9082] | ||
assert values == ['', 'config.file', '', ''] |