blob: 41d73542f8a2bca41b9e1294976540e33d36d5e0 [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-pingall" description="Network pingall test">
17 <!-- TODO: parametrize this via recipes -->
18 <group name="Net-Pingall">
Thomas Vachuskaa02fc812015-07-21 18:37:58 -070019 <step name="Install-Apps"
20 exec="onos ${OC1} app activate org.onosproject.openflow org.onosproject.proxyarp org.onosproject.fwd"/>
21
22 <step name="Check-Apps" requires="Install-Apps"
23 exec="onos-check-apps ${OC1} drivers,openflow,proxyarp,fwd"/>
24
25 <step name="Ping-All-And-Verify" requires="Check-Apps"
26 exec="onos-mininet sendAndExpect py net.pingAll(1) --expect Results: .% dropped"/>
Thomas Vachuskae76f6532015-07-08 09:40:53 -070027
28 <step name="Check-Summary-For-Hosts" requires="~Ping-All-And-Verify"
Thomas Vachuska2527a0f2015-07-14 11:38:21 -070029 exec="onos-check-summary ${OC1} [0-9]* 25 140 25"/>
Thomas Vachuskae76f6532015-07-08 09:40:53 -070030
31 <step name="Config-Topo" requires="Check-Summary-For-Hosts"
32 exec="onos-topo-cfg ${OC1} ${ONOS_ROOT}/tools/test/topos/attmpls.json"/>
33 </group>
34</scenario>