mirror of https://github.com/sipwise/ngcpcfg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.9 KiB
69 lines
1.9 KiB
#!/usr/bin/env py.test-3
|
|
|
|
import filecmp
|
|
import os
|
|
import pytest
|
|
import re
|
|
|
|
msg = r"Generating {}/etc/kamailio/lb/db/dispatcher: OK"
|
|
|
|
|
|
@pytest.mark.tt_76851
|
|
def test_all_ips(ngcpcfgcli):
|
|
out = ngcpcfgcli(
|
|
"build",
|
|
"--ignore-branch-check",
|
|
"/etc/kamailio/lb/db/dispatcher",
|
|
env={
|
|
"NGCPCFG": "fixtures/ngcpcfg.cfg",
|
|
},
|
|
)
|
|
assert re.search(msg.format(out.env["OUTPUT_DIRECTORY"]), out.stdout)
|
|
output_file = os.path.join(
|
|
out.env["OUTPUT_DIRECTORY"], "etc/kamailio/lb/db/dispatcher"
|
|
)
|
|
test_file = "fixtures/output/dispatcher"
|
|
assert os.path.exists(output_file)
|
|
assert os.path.exists(test_file)
|
|
assert filecmp.cmp(output_file, test_file)
|
|
|
|
|
|
@pytest.mark.tt_17653
|
|
def test_all_ips_pro(ngcpcfgcli):
|
|
out = ngcpcfgcli(
|
|
"build",
|
|
"--ignore-branch-check",
|
|
"/etc/kamailio/lb/db/dispatcher",
|
|
env={
|
|
"NGCPCFG": "fixtures/ngcpcfg_pro.cfg",
|
|
},
|
|
)
|
|
assert re.search(msg.format(out.env["OUTPUT_DIRECTORY"]), out.stdout)
|
|
output_file = os.path.join(
|
|
out.env["OUTPUT_DIRECTORY"], "etc/kamailio/lb/db/dispatcher"
|
|
)
|
|
test_file = "fixtures/output/dispatcher_pro"
|
|
assert os.path.exists(output_file)
|
|
assert os.path.exists(test_file)
|
|
assert filecmp.cmp(output_file, test_file)
|
|
|
|
|
|
@pytest.mark.tt_16316
|
|
def test_all_ips_carrier(ngcpcfgcli):
|
|
out = ngcpcfgcli(
|
|
"build",
|
|
"--ignore-branch-check",
|
|
"/etc/kamailio/lb/db/dispatcher",
|
|
env={
|
|
"NGCPCFG": "fixtures/ngcpcfg_carrier.cfg",
|
|
},
|
|
)
|
|
assert re.search(msg.format(out.env["OUTPUT_DIRECTORY"]), out.stdout)
|
|
output_file = os.path.join(
|
|
out.env["OUTPUT_DIRECTORY"], "etc/kamailio/lb/db/dispatcher"
|
|
)
|
|
test_file = "fixtures/output/dispatcher_carrier"
|
|
assert os.path.exists(output_file)
|
|
assert os.path.exists(test_file)
|
|
assert filecmp.cmp(output_file, test_file)
|