Skip to content
Snippets Groups Projects
Commit bc64d7c7 authored by Erik Reid's avatar Erik Reid
Browse files

updated module & file names

parent 101548c8
No related branches found
No related tags found
No related merge requests found
......@@ -23,5 +23,5 @@ if __name__ == "__main__":
OUTPUT_DIRNAME = os.path.dirname(__file__)
schema_doc = load_config_schema(hostname, params['ssh'])
with open(os.path.join(OUTPUT_DIRNAME, 'netconf-config-schema.xml'), 'w') as f:
with open(os.path.join(OUTPUT_DIRNAME, 'juniper-netconf.xsd'), 'w') as f:
f.write(etree.tostring(schema_doc, pretty_print=True).decode('utf-8'))
\ No newline at end of file
......@@ -23,14 +23,13 @@ class MockedJunosDevice(object):
pass
def test_nr1(mocker, data_config):
def test_query_doc_and_validate(mocker, data_config):
mocker.patch(
'inventory_provider.pyez_test.Device',
# 'inventory_provider.pyez_test.jnpr.junos.Device',
'inventory_provider.netconf.Device',
MockedJunosDevice)
import json
etree.parse(SCHEMA_FILENAME)
for r in data_config['routers']:
print(r['hostname'])
x = netconf.load_interfaces(r['hostname'], data_config['ssh'])
print(json.dumps(list(x), indent=4))
doc = netconf.load_config(r['hostname'], data_config['ssh'])
......@@ -25,8 +25,7 @@ class MockedJunosDevice(object):
def test_nr1(mocker, data_config):
mocker.patch(
'inventory_provider.pyez_test.Device',
# 'inventory_provider.pyez_test.jnpr.junos.Device',
'inventory_provider.netconf.Device',
MockedJunosDevice)
import json
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment