Simon Hunt | a855a40 | 2016-03-02 14:41:52 -0800 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2016-present Open Networking Laboratory |
Simon Hunt | a855a40 | 2016-03-02 14:41:52 -0800 | [diff] [blame] | 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-uk" description="Network setup steps"> |
| 17 | <!-- TODO: parametrize this via recipes --> |
| 18 | <!-- Customized for the UK topology --> |
| 19 | <group name="Net-Setup-UK"> |
| 20 | |
| 21 | <step name="Push-Topos" exec="onos-push-topos ${OCN}"/> |
| 22 | |
| 23 | <step name="Stop-Mininet-If-Needed" env="~" exec="onos-mininet stop"/> |
| 24 | <step name="Wipe-Out-Data-Before" exec="onos-wipe-out" requires="^"/> |
| 25 | |
| 26 | <step name="Initial-Summary-Check" requires="~Wipe-Out-Data-Before" |
| 27 | exec="onos-check-summary ${OC1} [0-9]* 0 0 0"/> |
| 28 | |
| 29 | <step name="Config-Topo" requires="~Initial-Summary-Check" |
| 30 | exec="onos-netcfg ${OC1} ${ONOS_ROOT}/tools/test/topos/uk-cfg.json"/> |
| 31 | |
| 32 | <step name="Start-Mininet" |
| 33 | requires="Install-Apps,Config-Topo,Push-Topos,Stop-Mininet-If-Needed" |
| 34 | exec="onos-mininet start topos/topo uk-onos.py ${ONOS_INSTANCES}"/> |
| 35 | |
| 36 | <step name="Wait-For-Mininet" requires="Start-Mininet" |
| 37 | exec="onos-mininet wait 10"/> |
| 38 | |
| 39 | <step name="Check-Summary" requires="~Wait-For-Mininet" |
| 40 | exec="onos-check-summary ${OC1} [0-9]* 12 46 12"/> |
| 41 | |
| 42 | <step name="Balance-Masters" requires="~Check-Summary" if="${OC2}" |
| 43 | exec="onos ${OC1} balance-masters"/> |
| 44 | |
| 45 | <step name="Check-Flows" requires="~Balance-Masters,~Check-Summary" delay="5" |
| 46 | exec="onos-check-flows ${OC1}"/> |
| 47 | </group> |
| 48 | </scenario> |