blob: 88b79bf3df0762550a5995b34ec21be0ca9468ff [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="^"
Ray Milkeybba71382015-08-26 13:09:23 -070028 exec="onos-create-intent ${OC1} hostToHost host 00:00:00:00:00:01/-1 00:00:00:00:00:04/-1"/>
29 <step name="Validate-Intent-Installed" exec="onos-check-intent ${OC1} ${hostToHostId} INSTALLED"
Ray Milkeyc3456632015-08-24 17:06:29 -070030 requires="Create-Intent" />
Thomas Vachuska33937c42015-07-15 17:40:32 -070031
32 <import file="${ONOS_SCENARIOS}/net-link-down-up.xml" namespace="Host-Intent"/>
Ray Milkeyc3456632015-08-24 17:06:29 -070033 <dependency name="Host-Intent.Net-Link-Down-Up" requires="Validate-Intent-Installed"/>
Ray Milkeybba71382015-08-26 13:09:23 -070034
35 <step name="Validate-Intent-Installed-Still" exec="onos-check-intent ${OC1} ${hostToHostId} INSTALLED"
Ray Milkeyc3456632015-08-24 17:06:29 -070036 requires="Host-Intent.Link-1-Down" />
Thomas Vachuska33937c42015-07-15 17:40:32 -070037
Ray Milkeybba71382015-08-26 13:09:23 -070038 <step name="Validate-Intent-Failed" exec="onos-check-intent ${OC1} ${hostToHostId} FAILED"
Ray Milkeyc3456632015-08-24 17:06:29 -070039 requires="Host-Intent.Link-2-Down" />
40
Ray Milkeybba71382015-08-26 13:09:23 -070041 <step name="Validate-Intent-Installed-Again" exec="onos-check-intent ${OC1} ${hostToHostId} INSTALLED"
Ray Milkeyc3456632015-08-24 17:06:29 -070042 requires="Host-Intent.Link-1-Up" />
43 <dependency name="Host-Intent.Ping-4" requires="Validate-Intent-Installed-Again" />
44
45 <step name="Remove-Intent" requires="~Host-Intent.Net-Link-Down-Up"
46 exec="onos ${OC1} remove-intent -p"/>
47
48
49
Thomas Vachuska33937c42015-07-15 17:40:32 -070050 </group>
Ray Milkeyc3456632015-08-24 17:06:29 -070051</scenario>