85e0b7129f0766ecd60cb4cce7d4652686487bf8
[nepi.git] / test / resources / planetlab / plcapi.py
1 #!/usr/bin/env python
2 #
3 #    NEPI, a framework to manage network experiments
4 #    Copyright (C) 2013 INRIA
5 #
6 #    This program is free software: you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation, either version 3 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
20
21
22 from nepi.resources.planetlab.plcapi import PLCAPIFactory
23
24 import os
25 import unittest
26
27 class PlanetlabAPITestCase(unittest.TestCase):
28     def setUp(self):
29         self.slicename = 'inria_nepi'
30         self.host1 = 'nepi2.pl.sophia.inria.fr'
31         self.host2 = 'nepi5.pl.sophia.inria.fr'
32
33     def test_list_hosts(self):
34         slicename = os.environ.get('PL_USER')
35         pl_pass = os.environ.get('PL_PASS')
36         pl_url = "nepiplc.pl.sophia.inria.fr"
37
38         plapi =  PLCAPIFactory.get_api(slicename, pl_pass, pl_url)
39
40         plapi.test()
41
42         nodes = plapi.get_nodes()
43         self.assertTrue(len(nodes)>0)
44
45
46 if __name__ == '__main__':
47     unittest.main()
48