blob: 13252d0fea5b154c5f0577b5272e6256a1362b98 [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
Ray Milkey5baa3da2015-09-16 15:20:22 -070021 <step name="Stop-Mininet-If-Needed" env="~" exec="onos-mininet stop"/>
22 <step name="Wipe-Out-Data-Before" exec="onos-wipe-out" requires="^"/>
Thomas Vachuskae76f6532015-07-08 09:40:53 -070023
24 <step name="Initial-Summary-Check" requires="~Wipe-Out-Data-Before"
25 exec="onos-check-summary ${OC1} [0-9]* 0 0 0"/>
26
27 <step name="Start-Mininet"
Thomas Vachuska0ec6ff42015-07-17 11:00:02 -070028 requires="Install-Apps,Initial-Summary-Check,Push-Topos,Stop-Mininet-If-Needed"
Thomas Vachuskae76f6532015-07-08 09:40:53 -070029 exec="onos-mininet start topos/topo att-onos.py ${ONOS_INSTANCES}"/>
30
31 <step name="Wait-For-Mininet" requires="Start-Mininet"
Thomas Vachuska1c152872015-08-26 18:41:10 -070032 exec="onos-mininet wait 10"/>
Thomas Vachuskae76f6532015-07-08 09:40:53 -070033
34 <step name="Check-Summary" requires="Wait-For-Mininet"
Thomas Vachuska2527a0f2015-07-14 11:38:21 -070035 exec="onos-check-summary ${OC1} [0-9]* 25 140 0"/>
Thomas Vachuskae76f6532015-07-08 09:40:53 -070036
Thomas Vachuskae827c0e2015-08-04 16:53:18 -070037 <step name="Balance-Masters" requires="~Check-Summary" if="${OC2}"
Thomas Vachuskae76f6532015-07-08 09:40:53 -070038 exec="onos ${OC1} balance-masters"/>
Thomas Vachuskaa02fc812015-07-21 18:37:58 -070039
Thomas Vachuskae827c0e2015-08-04 16:53:18 -070040 <step name="Pause-For-Masters" requires="Balance-Masters" if="${OC2}"
Thomas Vachuskaa02fc812015-07-21 18:37:58 -070041 exec="sleep 10"/>
Thomas Vachuska409b9cb2015-07-31 13:07:12 -070042
Thomas Vachuskae827c0e2015-08-04 16:53:18 -070043 <step name="Check-Flows" requires="~Pause-For-Masters,~Check-Summary"
Thomas Vachuska409b9cb2015-07-31 13:07:12 -070044 exec="onos-check-flows ${OC1}"/>
Thomas Vachuskae76f6532015-07-08 09:40:53 -070045 </group>
Ray Milkey5baa3da2015-09-16 15:20:22 -070046</scenario>