mirror of
https://github.com/Telecominfraproject/oopt-gnpy.git
synced 2025-10-30 01:32:21 +00:00
...because it works on strings while doesn't work on byte arrays. Change-Id: I2bb3b5a0a3d6ad965321c58fb90a02341db66d0f
46 lines
1.9 KiB
Python
46 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from pathlib import Path
|
|
import os
|
|
import pytest
|
|
import subprocess
|
|
from gnpy.tools.cli_examples import transmission_main_example, path_requests_run
|
|
|
|
SRC_ROOT = Path(__file__).parent.parent
|
|
|
|
|
|
@pytest.mark.parametrize("output, handler, args", (
|
|
('transmission_main_example', transmission_main_example, []),
|
|
('path_requests_run', path_requests_run, []),
|
|
('transmission_main_example__raman', transmission_main_example,
|
|
['gnpy/example-data/raman_edfa_example_network.json', '--sim', 'gnpy/example-data/sim_params.json', '--show-channels', ]),
|
|
('openroadm-Stockholm-Gothenburg', transmission_main_example,
|
|
['-e', 'gnpy/example-data/eqpt_config_openroadm.json', 'gnpy/example-data/Sweden_OpenROADM_example_network.json', ]),
|
|
))
|
|
def test_example_invocation(capfdbinary, output, handler, args):
|
|
'''Make sure that our examples produce useful output'''
|
|
os.chdir(SRC_ROOT)
|
|
expected = open(SRC_ROOT / 'tests' / 'invocation' / output, mode='rb').read()
|
|
handler(args)
|
|
captured = capfdbinary.readouterr()
|
|
assert captured.out.decode('utf-8') == expected.decode('utf-8')
|
|
assert captured.err == b''
|
|
|
|
|
|
@pytest.mark.parametrize('program', ('gnpy-transmission-example', 'gnpy-path-request'))
|
|
def test_run_wrapper(program):
|
|
'''Ensure that our wrappers really, really work'''
|
|
proc = subprocess.run((program, '--help'), stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
|
check=True, universal_newlines=True)
|
|
assert proc.stderr == ''
|
|
assert 'https://github.com/telecominfraproject/oopt-gnpy' in proc.stdout.lower()
|
|
assert 'https://gnpy.readthedocs.io/' in proc.stdout.lower()
|
|
|
|
|
|
def test_conversion_xls():
|
|
proc = subprocess.run(
|
|
('gnpy-convert-xls', SRC_ROOT / 'tests' / 'data' / 'testTopology.xls', '--output', '/dev/null'),
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE, check=True, universal_newlines=True)
|
|
assert proc.stderr == ''
|
|
assert '/dev/null' in proc.stdout
|