blob: 4ee8fcb5219dfdb0f6041ea08af93025ddc5d3eb [file] [log] [blame]
Jeremyfc567ca2016-02-16 15:08:25 -08001"""
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07002Copyright 2016 Open Networking Foundation (ONF)
3
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
11 (at your option) any later version.
12
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 Lim58046fa2017-07-05 16:55:00 -070041 startResult = main.RESTs[ 0 ].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:
51 main.ONOSbench.handle.sendline( "" )
52 main.ONOSbench.handle.expect( "\$" )
53 main.ONOSbench.handle.sendline( "ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1 }'" )
54 main.ONOSbench.handle.expect( "\$1 }'" )
55 main.ONOSbench.handle.expect( "\$" )
56 main.configDeviceIp = main.ONOSbench.handle.before
57 main.configDeviceIp = main.configDeviceIp.split()
58 main.configDeviceIp = main.configDeviceIp[ 0 ]
59 main.log.info( "Device to be configured: " + str( main.configDeviceIp ) )
60 main.ONOSbench.handle.sendline( "sudo ofc-server" )
61 main.ONOSbench.handle.expect( "\$" )
62 startResult = main.TRUE
63 return startResult
64 except pexpect.ExceptionPexpect as e:
65 main.log.exception( self.name + ": Pexpect exception found: " )
66 main.log.error( self.name + ": " + self.handle.before )
67 main.cleanup()
68 main.exit()
69
Jon Hall0c3f46f2017-05-24 16:34:46 -070070
Jeremyfc567ca2016-02-16 15:08:25 -080071def createConfig( main ):
72 """
73 This function writes a configuration file that can later be sent to the
74 REST API to configure a device.
75 The controller device is assumed to be OC1
76 The device to be configured is assumed to be OC2
77 """
78 createCfgResult = main.FALSE
79 # TODO, add ability to set Manufacturer, Hardware and Software versions
Jon Hall0c3f46f2017-05-24 16:34:46 -070080 main.cfgJson = '{ "devices":{ "netconf:' + main.configDeviceIp + ":" +\
81 main.configDevicePort + '":' + '{ "basic":{ "driver":"' +\
Jeremyfc567ca2016-02-16 15:08:25 -080082 main.configDriver + '" } } }, "apps": { "' +\
Devin Limc87f1892017-06-19 16:52:57 -070083 main.configApps + '":{ "netconf_devices":[ { "username":' +\
Jeremyfc567ca2016-02-16 15:08:25 -080084 main.configName + ', "password":' + main.configPass +\
85 ', "ip":"' + main.configDeviceIp + '", "port":' +\
86 main.configPort + '} ] } } }'
87 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 Lim58046fa2017-07-05 16:55:00 -0700119 sendResult = main.RESTs[ 0 ].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 Lim58046fa2017-07-05 16:55:00 -0700140 apiResult = main.RESTs[ 0 ].devices()
141 cliResult = main.CLIs[ 0 ].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