blob: b11f663b2aa674a96f6a08a43032dc9cf02af868 [file] [log] [blame]
Thomas Vachuska33937c42015-07-15 17:40:32 -07001<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 ~ Copyright 2015-present Open Networking Foundation
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
Yuta HIGUCHIdf5eeb12017-05-05 21:19:02 -070037 <import file="${ONOS_SCENARIOS}/log-mark.xml" namespace="Host-Intent"/>
38 <dependency name="Host-Intent.ExpectExceptionMarkBegin"
39 requires="~Host-Intent.Validate-Intent-Installed-Still"/>
40
Thomas Vachuska1c152872015-08-26 18:41:10 -070041 <dependency name="Host-Intent.Link-2-Down"
Yuta HIGUCHIdf5eeb12017-05-05 21:19:02 -070042 requires="Host-Intent.ExpectExceptionMarkBegin" />
Ray Milkeyc3456632015-08-24 17:06:29 -070043
Thomas Vachuska1c152872015-08-26 18:41:10 -070044 <step name="Host-Intent.Validate-Intent-Failed" requires="Host-Intent.Link-2-Down"
45 exec="onos-check-intent ${OC1} h2h FAILED"/>
Ray Milkeyc3456632015-08-24 17:06:29 -070046
Thomas Vachuska1c152872015-08-26 18:41:10 -070047 <dependency name="Host-Intent.Link-1-Up"
Ray Milkey279c5ff2017-05-11 10:30:40 -070048 requires="~Host-Intent.Validate-Intent-Failed" />
Ray Milkeyc3456632015-08-24 17:06:29 -070049
Thomas Vachuska1c152872015-08-26 18:41:10 -070050 <step name="Host-Intent.Validate-Intent-Installed-Again" requires="Host-Intent.Link-1-Up"
51 exec="onos-check-intent ${OC1} h2h INSTALLED"/>
Ray Milkeyc3456632015-08-24 17:06:29 -070052
Ray Milkey279c5ff2017-05-11 10:30:40 -070053 <dependency name="Host-Intent.ExpectExceptionMarkEnd"
54 requires="~Host-Intent.Validate-Intent-Installed-Again"/>
55
Thomas Vachuska1c152872015-08-26 18:41:10 -070056 <dependency name="Host-Intent.Ping-4"
57 requires="~Host-Intent.Validate-Intent-Installed-Again" />
58
59 <step name="Host-Intent.Remove-Intent" requires="~Host-Intent.Net-Link-Down-Up"
Jonathan Hart381f8d82016-08-31 10:24:12 -070060 exec="onos -f ${OC1} remove-intent -p org.onosproject.cli h2h"/>
Thomas Vachuska33937c42015-07-15 17:40:32 -070061 </group>
Ray Milkeyc3456632015-08-24 17:06:29 -070062</scenario>