blob: 95347f06922f41ea54941cfbdebbabac643b068e [file] [log] [blame]
Thomas Vachuskae76f6532015-07-08 09:40:53 -07001<!--
2 ~ Copyright 2015 Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16<scenario name="net-setup" description="Network setup steps">
17 <!-- TODO: parametrize this via recipes -->
18 <group name="Net-Setup">
19 <step name="Push-Topos" exec="onos-push-topos ${OCN}"/>
20
21 <step name="Install-Apps"
22 exec="onos ${OC1} app activate org.onosproject.openflow org.onosproject.proxyarp org.onosproject.fwd"/>
23
24 <step name="Check-Apps" requires="Install-Apps"
25 exec="onos-check-apps ${OC1} drivers,openflow,proxyarp,fwd"/>
26
27 <step name="Wipe-Out-Data-Before" requires="~Check-Apps" exec="onos-wipe-out"/>
28
29 <step name="Initial-Summary-Check" requires="~Wipe-Out-Data-Before"
30 exec="onos-check-summary ${OC1} [0-9]* 0 0 0"/>
31
32 <step name="Start-Mininet"
33 requires="Install-Apps,Initial-Summary-Check,Push-Topos"
34 exec="onos-mininet start topos/topo att-onos.py ${ONOS_INSTANCES}"/>
35
36 <step name="Wait-For-Mininet" requires="Start-Mininet"
37 exec="onos-mininet wait 15"/>
38
39 <step name="Check-Summary" requires="Wait-For-Mininet"
40 exec="onos-check-summary ${OC1} [0-9]* 25 112 0"/>
41
42 <step name="Balance-Masters" requires="Check-Summary"
43 exec="onos ${OC1} balance-masters"/>
44 </group>
45</scenario>