blob: 6a1b70457d2cb002d5a7b01f726bb3e99f0b2937 [file] [log] [blame]
Thomas Vachuska33937c42015-07-15 17:40:32 -07001<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuska33937c42015-07-15 17:40:32 -07003 ~
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">
Thomas Vachuska33937c42015-07-15 17:40:32 -070019
Ray Milkey955c4b82016-07-11 09:48:53 -070020 <step name="Host-Intent.Find-Host-1"
Thomas Vachuska1c152872015-08-26 18:41:10 -070021 exec="onos-mininet sendAndExpect h1 ping -c1 -w1 h4 --expect ."/>
22 <step name="Host-Intent.Find-Host-2" requires="^"
23 exec="onos-mininet sendAndExpect h4 ping -c1 -w1 h1 --expect ."/>
Thomas Vachuska33937c42015-07-15 17:40:32 -070024
Thomas Vachuska1c152872015-08-26 18:41:10 -070025 <step name="Host-Intent.Create-Intent" requires="^"
26 exec="onos-create-intent ${OC1} h2h host 00:00:00:00:00:01/-1 00:00:00:00:00:04/-1"/>
27 <step name="Host-Intent.Validate-Intent-Installed" requires="Host-Intent.Create-Intent"
28 exec="onos-check-intent ${OC1} h2h INSTALLED"/>
Thomas Vachuska33937c42015-07-15 17:40:32 -070029
30 <import file="${ONOS_SCENARIOS}/net-link-down-up.xml" namespace="Host-Intent"/>
Thomas Vachuska1c152872015-08-26 18:41:10 -070031 <dependency name="Host-Intent.Net-Link-Down-Up"
32 requires="Host-Intent.Validate-Intent-Installed"/>
Ray Milkeybba71382015-08-26 13:09:23 -070033
Thomas Vachuska1c152872015-08-26 18:41:10 -070034 <step name="Host-Intent.Validate-Intent-Installed-Still" requires="Host-Intent.Link-1-Down"
35 exec="onos-check-intent ${OC1} h2h INSTALLED"/>
Thomas Vachuska33937c42015-07-15 17:40:32 -070036
Thomas Vachuska1c152872015-08-26 18:41:10 -070037 <dependency name="Host-Intent.Link-2-Down"
38 requires="~Host-Intent.Validate-Intent-Installed-Still" />
Ray Milkeyc3456632015-08-24 17:06:29 -070039
Thomas Vachuska1c152872015-08-26 18:41:10 -070040 <step name="Host-Intent.Validate-Intent-Failed" requires="Host-Intent.Link-2-Down"
41 exec="onos-check-intent ${OC1} h2h FAILED"/>
Ray Milkeyc3456632015-08-24 17:06:29 -070042
Thomas Vachuska1c152872015-08-26 18:41:10 -070043 <dependency name="Host-Intent.Link-1-Up"
44 requires="~Host-Intent.Validate-Intent-Failed" />
Ray Milkeyc3456632015-08-24 17:06:29 -070045
Thomas Vachuska1c152872015-08-26 18:41:10 -070046 <step name="Host-Intent.Validate-Intent-Installed-Again" requires="Host-Intent.Link-1-Up"
47 exec="onos-check-intent ${OC1} h2h INSTALLED"/>
Ray Milkeyc3456632015-08-24 17:06:29 -070048
Thomas Vachuska1c152872015-08-26 18:41:10 -070049 <dependency name="Host-Intent.Ping-4"
50 requires="~Host-Intent.Validate-Intent-Installed-Again" />
51
52 <step name="Host-Intent.Remove-Intent" requires="~Host-Intent.Net-Link-Down-Up"
Jonathan Hart381f8d82016-08-31 10:24:12 -070053 exec="onos -f ${OC1} remove-intent -p org.onosproject.cli h2h"/>
Thomas Vachuska33937c42015-07-15 17:40:32 -070054 </group>
Ray Milkeyc3456632015-08-24 17:06:29 -070055</scenario>