X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=src%2Femuvim%2Ftest%2Funittests%2Ftest_restapi.py;h=5bc071a6b37caff2453abcd89a2cc5dbd3785e95;hp=144917fd0c5d1ada3cb14231de6c794ced6da3f9;hb=250741424c1f138ceeddcff90cb9bbbf223a9c52;hpb=1c621296c9a826159366fdaaa6d3d70bcc2767a0 diff --git a/src/emuvim/test/unittests/test_restapi.py b/src/emuvim/test/unittests/test_restapi.py index 144917f..5bc071a 100755 --- a/src/emuvim/test/unittests/test_restapi.py +++ b/src/emuvim/test/unittests/test_restapi.py @@ -1,3 +1,31 @@ +""" +Copyright (c) 2015 SONATA-NFV +ALL RIGHTS RESERVED. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION] +nor the names of its contributors may be used to endorse or promote +products derived from this software without specific prior written +permission. + +This work has been performed in the framework of the SONATA project, +funded by the European Commission under Grant number 671517 through +the Horizon 2020 and 5G-PPP programmes. The authors would like to +acknowledge the contributions of their colleagues of the SONATA +partner consortium (www.sonata-nfv.eu). +""" + """ Test suite to automatically test emulator REST API endpoints. """ @@ -9,13 +37,13 @@ import subprocess from emuvim.dcemulator.node import EmulatorCompute import ast -class testRestApi( SimpleTestTopology ): + +class testRestApi(SimpleTestTopology): """ Tests to check the REST API endpoints of the emulator. """ def testRestApi(self): - # create network self.createNet(nswitches=0, ndatacenter=2, nhosts=2, ndockers=0) @@ -64,14 +92,19 @@ class testRestApi( SimpleTestTopology ): print('network add vnf1 vnf2->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') print('->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') - subprocess.call("son-emu-cli network add -src vnf1 -dst vnf2 -b -c 10", shell=True) + output = subprocess.check_output("son-emu-cli network add -src vnf1 -dst vnf2 -b -c 10", shell=True) + self.assertTrue("add-flow" in output) + self.assertTrue("success" in output) + print('network remove vnf1 vnf2->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') print('->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') - subprocess.call("son-emu-cli network remove -src vnf1 -dst vnf2 -b", shell=True) + output = subprocess.check_output("son-emu-cli network remove -src vnf1 -dst vnf2 -b", shell=True) + self.assertTrue("del-flows" in output) + self.assertTrue("success" in output) print('>>>>> checking --> son-emu-cli compute stop -d datacenter0 -n vnf2 ->>>>>>') print('->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') - subprocess.call("son-emu-cli compute stop -d datacenter0 -n vnf2", shell=True) + output = subprocess.check_output("son-emu-cli compute stop -d datacenter0 -n vnf2", shell=True) # check number of running nodes self.assertTrue(len(self.getContainernetContainers()) == 2) @@ -83,7 +116,6 @@ class testRestApi( SimpleTestTopology ): print('>>>>> checking --> son-emu-cli compute list ->>>>>>>>>>>>>>>>>>>>>>>>>>>>>') print('->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') - subprocess.call("son-emu-cli compute list", shell=True) output = subprocess.check_output("son-emu-cli compute list", shell=True) # check datacenter list result @@ -91,9 +123,8 @@ class testRestApi( SimpleTestTopology ): print('>>>>> checking --> son-emu-cli compute status -d datacenter0 -n vnf1 ->>>>') print('->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') - subprocess.call("son-emu-cli compute status -d datacenter0 -n vnf1", shell=True) output = subprocess.check_output("son-emu-cli compute status -d datacenter0 -n vnf1", shell=True) - output= ast.literal_eval(output) + output = ast.literal_eval(output) # check compute status result self.assertTrue(output["name"] == "vnf1") @@ -101,21 +132,16 @@ class testRestApi( SimpleTestTopology ): print('>>>>> checking --> son-emu-cli datacenter list ->>>>>>>>>>>>>>>>>>>>>>>>>>') print('->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') - subprocess.call("son-emu-cli datacenter list", shell=True) output = subprocess.check_output("son-emu-cli datacenter list", shell=True) - # check datacenter list result - self.assertTrue("datacenter0" in output) print('->>>>> checking --> son-emu-cli datacenter status -d datacenter0 ->>>>>>>>') print('->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') - subprocess.call("son-emu-cli datacenter status -d datacenter0", shell=True) output = subprocess.check_output("son-emu-cli datacenter status -d datacenter0", shell=True) - # check datacenter status result self.assertTrue("datacenter0" in output) - + self.stopApi() self.stopNet()