blob: c60e85ec92a51a56128c1de75a63c0691c9c0ced [file] [log] [blame]
Ray Milkeyc6987732015-08-25 11:05:28 -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-point-intent" description="Network point to point intent connectivity test">
17 <!-- TODO: parametrize this via recipes -->
18 <group name="Point-To-Point-Intent-Connectivity">
19 <step name="P2P-Uninstall-Reactive-Forwarding"
20 exec="onos ${OC1} app deactivate org.onosproject.fwd org.onosproject.ifwd"/>
21
22 <step name="P2P-Find-Host-1" requires="^"
23 exec="onos-mininet sendAndExpect h1 ping -c1 h4 --expect ."/>
24 <step name="P2PFind-Host-2" requires="^"
25 exec="onos-mininet sendAndExpect h4 ping -c1 h1 --expect ."/>
26
27 <step name="P2P-Create-Intent-1-To-4" requires="^"
28 exec="onos ${OC1} add-point-intent of:0000000000000001/1 of:0000000000000004/1"/>
29 <step name="P2P-Create-Intent-4-To-1" requires="^"
30 exec="onos ${OC1} add-point-intent of:0000000000000004/1 of:0000000000000001/1"/>
31 <step name="P2P-Validate-Point-Intents-Installed" exec="onos-check-intent ${OC1} INSTALLED"
32 requires="P2P-Create-Intent-4-To-1" />
33
34 <import file="${ONOS_SCENARIOS}/net-link-down-up.xml" namespace="Point-To-Point-Intent"/>
35 <dependency name="Point-To-Point-Intent.Net-Link-Down-Up" requires="P2P-Validate-Point-Intents-Installed"/>
36 <step name="P2P-Validate-Intent-Installed-Still" exec="onos-check-intent ${OC1} INSTALLED"
37 requires="Point-To-Point-Intent.Link-1-Down" />
38
39 <step name="P2P-Validate-Intent-Failed" exec="onos-check-intent ${OC1} FAILED"
40 requires="Point-To-Point-Intent.Link-2-Down" />
41
42 <step name="P2P-Validate-Intent-Installed-Again" exec="onos-check-intent ${OC1} INSTALLED"
43 requires="Point-To-Point-Intent.Link-1-Up" />
44 <dependency name="Point-To-Point-Intent.Ping-4" requires="P2P-Validate-Intent-Installed-Again" />
45
46 <step name="P2P-Remove-Intent" requires="~Point-To-Point-Intent.Net-Link-Down-Up"
47 exec="onos ${OC1} remove-intent -p"/>
48
49
50
51 </group>
52</scenario>