blob: d256a58fb49418601ba21672f5a20673a4075d0e [file] [log] [blame]
Thomas Vachuska33937c42015-07-15 17:40:32 -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-host-intent" description="Network host intent connectivity test">
17 <!-- TODO: parametrize this via recipes -->
18 <group name="Host-Intent-Connectivity">
19 <step name="Uninstall-Reactive-Forwarding"
20 exec="onos ${OC1} app deactivate org.onosproject.fwd org.onosproject.ifwd"/>
21
22 <step name="Find-Host-1" requires="^"
23 exec="onos-mininet sendAndExpect h1 ping -c1 h4 --expect ."/>
24 <step name="Find-Host-2" requires="^"
25 exec="onos-mininet sendAndExpect h4 ping -c1 h1 --expect ."/>
26
27 <step name="Create-Intent" requires="^"
28 exec="onos ${OCI} add-host-intent 00:00:00:00:00:01/-1 00:00:00:00:00:04/-1"/>
29
30 <import file="${ONOS_SCENARIOS}/net-link-down-up.xml" namespace="Host-Intent"/>
31 <dependency name="Host-Intent.Net-Link-Down-Up" requires="Create-Intent"/>
32
33 <step name="Remove-Intent" requires="Host-Intent.Net-Link-Down-Up"
34 exec="onos ${OCI} remove-intent --purge"/>
35 </group>
36</scenario>