Merge "fix netconf testtool portmapping"
authorGuillaume Lambert <guillaume.lambert@orange.com>
Thu, 13 Sep 2018 13:01:12 +0000 (13:01 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Thu, 13 Sep 2018 13:01:12 +0000 (13:01 +0000)
tests/transportpce_tests/test_portmapping.py

index c51744b14a3c545fb6c02e47fa0931dc9cf57011..2a0b81734ade9d0a0a8486568b1803879df707a9 100644 (file)
@@ -208,7 +208,7 @@ class TransportPCEPortMappingTesting(unittest.TestCase):
 
     def test_10_xpdr_portmapping_NETWORK1(self):
         url = ("{}/config/portmapping:network/"
-               "nodes/XPDRA/mapping/NETWORK1"
+               "nodes/XPDRA/mapping/XPDR1-NETWORK1"
                .format(self.restconf_baseurl))
         headers = {'content-type': 'application/json'}
         response = requests.request(
@@ -217,12 +217,12 @@ class TransportPCEPortMappingTesting(unittest.TestCase):
         res = response.json()
         self.assertIn(
             {'supporting-port': '1', 'supporting-circuit-pack-name': '1/0/1-PLUG-NET',
-             'logical-connection-point': 'NETWORK1'},
+             'logical-connection-point': 'XPDR1-NETWORK1'},
             res['mapping'])
 
     def test_11_xpdr_portmapping_CLIENT1(self):
         url = ("{}/config/portmapping:network/"
-               "nodes/XPDRA/mapping/CLIENT1"
+               "nodes/XPDRA/mapping/XPDR1-CLIENT1"
                .format(self.restconf_baseurl))
         headers = {'content-type': 'application/json'}
         response = requests.request(
@@ -232,7 +232,7 @@ class TransportPCEPortMappingTesting(unittest.TestCase):
         self.assertIn(
             {'supporting-port': '1',
              'supporting-circuit-pack-name': '1/0/2-PLUG-CLIENT',
-             'logical-connection-point': 'CLIENT1'},
+             'logical-connection-point': 'XPDR1-CLIENT1'},
             res['mapping'])
 
     def test_12_xpdr_device_disconnected(self):