add a portmapping method in func tests
[transportpce.git] / tests / transportpce_tests / 1.2.1 / test_topoPortMapping.py
1 #!/usr/bin/env python
2
3 ##############################################################################
4 # Copyright (c) 2017 Orange, Inc. and others.  All rights reserved.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 import time
13 import unittest
14 import requests
15 from common import test_utils
16
17
18 class TransportPCEtesting(unittest.TestCase):
19
20     processes = None
21
22     @classmethod
23     def setUpClass(cls):
24         cls.processes = test_utils.start_tpce()
25         cls.processes = test_utils.start_sims(['xpdra', 'roadma'])
26
27     @classmethod
28     def tearDownClass(cls):
29         for process in cls.processes:
30             test_utils.shutdown_process(process)
31         print("all processes killed")
32
33     def setUp(self):
34         time.sleep(10)
35
36     # Connect the ROADMA
37     def test_01_connect_rdm(self):
38         response = test_utils.mount_device("ROADMA01", 'roadma')
39         self.assertEqual(response.status_code, requests.codes.created, test_utils.CODE_SHOULD_BE_201)
40
41     # Verify the termination points of the ROADMA
42     def test_02_compareOpenroadmTopologyPortMapping_rdm(self):
43         responseTopo = test_utils.get_ordm_topo_request("")
44         resTopo = responseTopo.json()
45         nbNode = len(resTopo['network'][0]['node'])
46         nbMapCumul = 0
47         nbMappings = 0
48         for i in range(0, nbNode):
49             nodeId = resTopo['network'][0]['node'][i]['node-id']
50             nodeMapId = nodeId.split("-")[0]
51             responseMapList = test_utils.portmapping_request(nodeMapId)
52             resMapList = responseMapList.json()
53             nbMappings = len(resMapList['nodes'][0]['mapping']) - nbMapCumul
54             nbTp = len(resTopo['network'][0]['node'][i]['ietf-network-topology:termination-point'])
55             nbMapCurrent = 0
56             for j in range(0, nbTp):
57                 tpId = resTopo['network'][0]['node'][i]['ietf-network-topology:termination-point'][j]['tp-id']
58                 if((not "CP" in tpId) and (not "CTP" in tpId)):
59                     responseMap = test_utils.portmapping_request(nodeMapId+"/mapping/"+tpId)
60
61     # Disconnect the ROADMA
62     def test_03_disconnect_rdm(self):
63         response = test_utils.unmount_device("ROADMA01")
64         self.assertEqual(response.status_code, requests.codes.ok, test_utils.CODE_SHOULD_BE_200)
65
66 #     #Connect the XPDRA
67     def test_04_connect_xpdr(self):
68         response = test_utils.mount_device("XPDRA01", 'xpdra')
69         self.assertEqual(response.status_code, requests.codes.created, test_utils.CODE_SHOULD_BE_201)
70
71 #     #Verify the termination points related to XPDR
72     def test_05_compareOpenroadmTopologyPortMapping_xpdr(self):
73         self.test_02_compareOpenroadmTopologyPortMapping_rdm()
74
75     # Disconnect the XPDRA
76     def test_06_disconnect_device(self):
77         response = test_utils.unmount_device("XPDRA01")
78         self.assertEqual(response.status_code, requests.codes.ok, test_utils.CODE_SHOULD_BE_200)
79
80
81 if __name__ == "__main__":
82     # logging.basicConfig(filename='./transportpce_tests/log/response.log',filemode='w',level=logging.DEBUG)
83     #logging.debug('I am there')
84     unittest.main(verbosity=2)