fix netconf testtool portmapping 68/75168/1
authorMartial COULIBALY <martial.coulibaly@gfi.fr>
Mon, 13 Aug 2018 13:32:39 +0000 (15:32 +0200)
committerMartial COULIBALY <martial.coulibaly@gfi.fr>
Mon, 13 Aug 2018 13:32:39 +0000 (15:32 +0200)
Change-Id: I0a1aa88e3488fd585ea85616210761799ba046ad
Signed-off-by: Martial COULIBALY <martial.coulibaly@gfi.fr>
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):