blob: 121eb67bb64672889529c30d4ab1eecde612a7b6 [file] [log] [blame]
Jeremyfc567ca2016-02-16 15:08:25 -08001"""
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -07002Copyright 2016 Open Networking Foundation ( ONF )
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07003
4Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
5the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
6or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
7
8 TestON is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070011 ( at your option ) any later version.
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -070012
13 TestON is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with TestON. If not, see <http://www.gnu.org/licenses/>.
20
21
Jeremyfc567ca2016-02-16 15:08:25 -080022 Wrapper functions for FUNCnetconf
23 This functions include Onosclidriver and Mininetclidriver driver functions
24 Author: Jeremy Songster, jeremy@onlab.us
25"""
26import time
27import json
Jon Hall53c5e662016-04-13 16:06:56 -070028import os
Jeremyfc567ca2016-02-16 15:08:25 -080029
Jon Hall0c3f46f2017-05-24 16:34:46 -070030
Jeremyfc567ca2016-02-16 15:08:25 -080031def __init__( self ):
32 self.default = ''
33
Jon Hall0c3f46f2017-05-24 16:34:46 -070034
Jeremyfc567ca2016-02-16 15:08:25 -080035def startApp( main ):
36 """
37 This function starts the netconf app in all onos nodes and ensures that
38 the OF-Config server is running on the node to be configured
39 """
Jeremyfc567ca2016-02-16 15:08:25 -080040 startResult = main.FALSE
Devin Lim142b5342017-07-20 15:22:39 -070041 startResult = main.Cluster.active( 0 ).REST.activateApp( appName="org.onosproject.netconf" )
Jeremyfc567ca2016-02-16 15:08:25 -080042 return startResult
43
Jon Hall0c3f46f2017-05-24 16:34:46 -070044
Jeremyfc567ca2016-02-16 15:08:25 -080045def startOFC( main ):
46 """
47 This function uses pexpect pxssh class to activate the ofc-server daemon on OC2
48 """
Jeremyfc567ca2016-02-16 15:08:25 -080049 startResult = main.FALSE
50 try:
Jeremy Ronquilloed3550d2018-04-11 12:23:59 -070051 main.configDeviceIp = main.ONOSbench.getIpAddr( iface=main.iface )
Jeremyfc567ca2016-02-16 15:08:25 -080052 main.log.info( "Device to be configured: " + str( main.configDeviceIp ) )
53 main.ONOSbench.handle.sendline( "sudo ofc-server" )
54 main.ONOSbench.handle.expect( "\$" )
55 startResult = main.TRUE
56 return startResult
57 except pexpect.ExceptionPexpect as e:
58 main.log.exception( self.name + ": Pexpect exception found: " )
59 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -070060 main.cleanAndExit()
Jon Hall0c3f46f2017-05-24 16:34:46 -070061
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070062
Jeremyfc567ca2016-02-16 15:08:25 -080063def createConfig( main ):
64 """
65 This function writes a configuration file that can later be sent to the
66 REST API to configure a device.
67 The controller device is assumed to be OC1
68 The device to be configured is assumed to be OC2
69 """
70 createCfgResult = main.FALSE
71 # TODO, add ability to set Manufacturer, Hardware and Software versions
Jeremy Ronquilloed3550d2018-04-11 12:23:59 -070072 main.cfgJson = '{' \
73 '"devices": {' \
74 '"netconf:' + main.configDeviceIp + ':' + main.configDevicePort + '": {' \
75 '"netconf": {' \
76 '"ip": "' + main.configDeviceIp + '",' \
77 '"port": ' + main.configPort + ',' \
78 '"username": ' + main.configName + ',' \
79 '"password": ' + main.configPass + \
80 '},' \
81 '"basic": {' \
82 '"driver": "' + main.configDriver + '"' \
83 '}' \
84 '}' \
85 '}' \
86 '}'
Jeremyfc567ca2016-02-16 15:08:25 -080087 try:
Jon Hall53c5e662016-04-13 16:06:56 -070088 file = open( os.path.dirname( main.testFile ) + "/dependencies/netconfConfig.json", 'w' )
Jeremye7580f32016-04-11 12:41:21 -070089 # These lines can cause errors during the configuration process because
90 # they cause the json string to turn into an unordered dictionary before
91 # sorting it alphabetically which can cause the driver type to not be
92 # configured.
93 # main.cfgJson = json.loads( main.cfgJson )
94 # main.cfgJson = json.dumps( main.cfgJson, sort_keys=True,
Jon Hall0c3f46f2017-05-24 16:34:46 -070095 # indent=4, separators=( ',', ': ' ) )
Jeremyfc567ca2016-02-16 15:08:25 -080096 print main.cfgJson
97 file.write( main.cfgJson )
98 if file:
99 createCfgResult = main.TRUE
100 file.close()
101 return createCfgResult
102 else:
Jon Hall0c3f46f2017-05-24 16:34:46 -0700103 main.log.error( "There was an error opening the file" )
Jeremyfc567ca2016-02-16 15:08:25 -0800104 return createCfgResult
105 except:
Jon Hall0c3f46f2017-05-24 16:34:46 -0700106 main.log.exception( "There was an error opening the file" )
Jeremyfc567ca2016-02-16 15:08:25 -0800107 return createCfgResult
108
Jon Hall0c3f46f2017-05-24 16:34:46 -0700109
Jeremyfc567ca2016-02-16 15:08:25 -0800110def sendConfig( main ):
111 """
112 This function prepares the command needed to upload the configuration
113 file to the REST API
114 """
Jeremyfc567ca2016-02-16 15:08:25 -0800115 url = "/network/configuration"
116 method = "POST"
117 data = main.cfgJson
118 configResult = main.FALSE
Devin Lim142b5342017-07-20 15:22:39 -0700119 sendResult = main.Cluster.active( 0 ).REST.send( url=url, method=method, data=data )
Jeremyfc567ca2016-02-16 15:08:25 -0800120 main.log.info( "Device configuration request response code: " + str( sendResult[ 0 ] ) )
Jon Hall0c3f46f2017-05-24 16:34:46 -0700121 if ( 200 <= sendResult[ 0 ] <= 299 ):
Jeremyfc567ca2016-02-16 15:08:25 -0800122 configResult = main.TRUE
123 else:
124 configResult = main.FALSE
125
126 return configResult
127
Jon Hall0c3f46f2017-05-24 16:34:46 -0700128
Jeremyfc567ca2016-02-16 15:08:25 -0800129def devices( main ):
130 """
131 This function get the list of devices from the REST API, the ONOS CLI, and
132 the device-controllers command and check to see that each recognizes the
133 device is configured according to the configuration uploaded above.
134 """
135 availResult = main.FALSE
136 typeResult = main.FALSE
137 addressResult = main.FALSE
138 driverResult = main.FALSE
139 try:
Devin Lim142b5342017-07-20 15:22:39 -0700140 apiResult = main.Cluster.active( 0 ).REST.devices()
141 cliResult = main.Cluster.active( 0 ).CLI.devices()
Jeremyfc567ca2016-02-16 15:08:25 -0800142
143 apiDict = json.loads( apiResult )
144 cliDict = json.loads( cliResult )
145 apiAnnotations = apiDict[ 0 ].get( "annotations" )
146 cliAnnotations = cliDict[ 0 ].get( "annotations" )
147
148 main.log.info( "API device availability result: " + str( apiDict[ 0 ].get( "available" ) ) )
149 main.log.info( "CLI device availability result: " + str( cliDict[ 0 ].get( "available" ) ) )
Jon Hall0c3f46f2017-05-24 16:34:46 -0700150 if apiDict[ 0 ].get( "available" ) and cliDict[ 0 ].get( "available" ):
Jeremyfc567ca2016-02-16 15:08:25 -0800151 availResult = main.TRUE
152 main.log.info( "API device type result: " + apiDict[ 0 ].get( "type" ) )
153 main.log.info( "CLI device type result: " + cliDict[ 0 ].get( "type" ) )
154 if apiDict[ 0 ].get( "type" ) == "SWITCH" and cliDict[ 0 ].get( "type" ) == "SWITCH":
155 typeResult = main.TRUE
156 main.log.info( "API device ipaddress: " + apiAnnotations.get( "ipaddress" ) )
157 main.log.info( "CLI device ipaddress: " + apiAnnotations.get( "ipaddress" ) )
158 if str( apiAnnotations.get( "ipaddress" ) ) == main.configDeviceIp and str( cliAnnotations.get( "ipaddress" ) ) == main.configDeviceIp:
159 addressResult = main.TRUE
160 main.log.info( "API device driver: " + apiAnnotations.get( "driver" ) )
161 main.log.info( "CLI device driver: " + cliAnnotations.get( "driver" ) )
162 if apiAnnotations.get( "driver" ) == main.configDriver and cliAnnotations.get( "driver" ) == main.configDriver:
163 driverResult = main.TRUE
164
165 return availResult and typeResult and addressResult and driverResult
166 except TypeError:
167 main.log.error( "Device was not configured correctly" )
Jon Hall53c5e662016-04-13 16:06:56 -0700168 return main.FALSE