forked from p15670423/monkey
UT: Remove tunnel from build_monkey_commandline
This commit is contained in:
parent
579616dd91
commit
4ad2c35c94
|
@ -12,8 +12,6 @@ def test_build_monkey_commandline_explicitly_arguments():
|
||||||
expected = [
|
expected = [
|
||||||
"-p",
|
"-p",
|
||||||
"101010",
|
"101010",
|
||||||
"-t",
|
|
||||||
"10.10.101.10",
|
|
||||||
"-s",
|
"-s",
|
||||||
"127.127.127.127:5000",
|
"127.127.127.127:5000",
|
||||||
"-d",
|
"-d",
|
||||||
|
@ -22,7 +20,7 @@ def test_build_monkey_commandline_explicitly_arguments():
|
||||||
"C:\\windows\\abc",
|
"C:\\windows\\abc",
|
||||||
]
|
]
|
||||||
actual = build_monkey_commandline_explicitly(
|
actual = build_monkey_commandline_explicitly(
|
||||||
"101010", "10.10.101.10", "127.127.127.127:5000", 0, "C:\\windows\\abc"
|
"101010", "127.127.127.127:5000", 0, "C:\\windows\\abc"
|
||||||
)
|
)
|
||||||
|
|
||||||
assert expected == actual
|
assert expected == actual
|
||||||
|
@ -46,16 +44,12 @@ def test_get_monkey_commandline_windows():
|
||||||
"m0nk3y",
|
"m0nk3y",
|
||||||
"-p",
|
"-p",
|
||||||
"101010",
|
"101010",
|
||||||
"-t",
|
|
||||||
"10.10.101.10",
|
|
||||||
]
|
]
|
||||||
actual = get_monkey_commandline_windows(
|
actual = get_monkey_commandline_windows(
|
||||||
"C:\\windows\\abc",
|
"C:\\windows\\abc",
|
||||||
[
|
[
|
||||||
"-p",
|
"-p",
|
||||||
"101010",
|
"101010",
|
||||||
"-t",
|
|
||||||
"10.10.101.10",
|
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -68,16 +62,12 @@ def test_get_monkey_commandline_linux():
|
||||||
"m0nk3y",
|
"m0nk3y",
|
||||||
"-p",
|
"-p",
|
||||||
"101010",
|
"101010",
|
||||||
"-t",
|
|
||||||
"10.10.101.10",
|
|
||||||
]
|
]
|
||||||
actual = get_monkey_commandline_linux(
|
actual = get_monkey_commandline_linux(
|
||||||
"/home/user/monkey-linux-64",
|
"/home/user/monkey-linux-64",
|
||||||
[
|
[
|
||||||
"-p",
|
"-p",
|
||||||
"101010",
|
"101010",
|
||||||
"-t",
|
|
||||||
"10.10.101.10",
|
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue