blob: f421227d364a66f21ef65abdc1684e110085f7c5 [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-link-up-down" description="Network link up-down test">
17 <!-- TODO: parametrize this via recipes -->
18 <group name="Net-Link-Up-Down">
19 <step name="Ping-1"
20 exec="onos-mininet sendAndExpect h1 ping -c1 h4 --expect \ 0% packet loss"/>
21 <step name="Link-1-Down" requires="Ping-1"
22 exec="onos-mininet sendAndExpect link s4 s5 down --expect ."/>
23 <step name="Ping-2" requires="Link-1-Down"
24 exec="onos-mininet sendAndExpect h1 ping -c1 h4 --expect \ 0% packet loss"/>
25 <step name="Link-2-Down" requires="Ping-2"
26 exec="onos-mininet sendAndExpect link s4 s7 down --expect ."/>
27 <step name="Ping-3" requires="Link-2-Down"
28 exec="onos-mininet sendAndExpect h1 ping -c1 h4 --expect 100% packet loss"/>
29 <step name="Link-1-Up" requires="Ping-3"
30 exec="onos-mininet sendAndExpect link s4 s7 up --expect ."/>
31 <step name="Ping-4" requires="Link-1-Up"
32 exec="onos-mininet sendAndExpect h1 ping -c1 h4 --expect \ 0% packet loss"/>
33 <step name="Link-2-Up" requires="Ping-4"
34 exec="onos-mininet sendAndExpect link s4 s5 up --expect ."/>
35 <step name="Ping-5" requires="Link-2-Up"
36 exec="onos-mininet sendAndExpect h1 ping -c1 h4 --expect \ 0% packet loss"/>
37 </group>
38</scenario>