aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/mass-pnf-sim/test_cli.py
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-05-25 03:10:39 -0700
committerMorgan Richomme <morgan.richomme@orange.com>2020-05-25 14:06:11 +0000
commit5196e3367b316faeb8b6b7d5204333e55e4ea61d (patch)
tree4bf5f7d6a970fd87d5684d39aa65ed4dc762556d /test/mocks/mass-pnf-sim/test_cli.py
parent5ca49c964c385b8277c7e9bf0f344f8cbc3c2602 (diff)
Add tests for 'trigger_custom' subcommand
Change-Id: I7a2811618adcaaa698a702d264ef2a93bc899704 Issue-ID: INT-1577 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'test/mocks/mass-pnf-sim/test_cli.py')
-rw-r--r--test/mocks/mass-pnf-sim/test_cli.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/mocks/mass-pnf-sim/test_cli.py b/test/mocks/mass-pnf-sim/test_cli.py
index bc4d276ed..f574a725d 100644
--- a/test/mocks/mass-pnf-sim/test_cli.py
+++ b/test/mocks/mass-pnf-sim/test_cli.py
@@ -1,4 +1,6 @@
import pytest
+from MassPnfSim import MassPnfSim
+from test_settings import SIM_INSTANCES
@pytest.mark.parametrize(('expect_string, cli_opts'), [
("bootstrap: error: the following arguments are required: --urlves, --ipfileserver, --typefileserver, --ipstart",
@@ -19,6 +21,16 @@ def test_subcommands(parser, capsys, expect_string, cli_opts):
pass
assert expect_string in capsys.readouterr().err
+def test_validate_trigger_custom(parser, caplog):
+ args = parser.parse_args(['trigger_custom', '--triggerstart', '0',
+ '--triggerend', str(SIM_INSTANCES)])
+ try:
+ MassPnfSim(args).trigger_custom()
+ except SystemExit as e:
+ assert e.code == 1
+ assert "--triggerend value greater than existing instance count" in caplog.text
+ caplog.clear()
+
@pytest.mark.parametrize(("subcommand"), [
'bootstrap',
'start',