Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Foundation |
Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 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 | --> |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 16 | <scenario name="net-point-intent" |
| 17 | description="Network point to point intent connectivity test"> |
Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 18 | <!-- TODO: parametrize this via recipes --> |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 19 | <group name="P2P-Intent-Connectivity"> |
Ray Milkey | 955c4b8 | 2016-07-11 09:48:53 -0700 | [diff] [blame] | 20 | <step name="P2P-Intent.Find-Host-1" |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 21 | exec="onos-mininet sendAndExpect h1 ping -c1 -w1 h4 --expect ."/> |
| 22 | <step name="P2P-Intent.Find-Host-2" requires="^" |
| 23 | exec="onos-mininet sendAndExpect h4 ping -c1 -w1 h1 --expect ."/> |
Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 24 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 25 | <step name="P2P-Intent.Create-Intent-XY" requires="^" |
| 26 | exec="onos-create-intent ${OC1} xy point of:0000000000000001/1 of:0000000000000004/1"/> |
| 27 | <step name="P2P-Intent.Create-Intent-YX" requires="^" |
| 28 | exec="onos-create-intent ${OC1} yx point of:0000000000000004/1 of:0000000000000001/1"/> |
Ray Milkey | bba7138 | 2015-08-26 13:09:23 -0700 | [diff] [blame] | 29 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 30 | <step name="P2P-Intent.Validate-Intent-XY-Installed" requires="^" |
| 31 | exec="onos-check-intent ${OC1} yx INSTALLED"/> |
| 32 | <step name="P2P-Intent.Validate-Intent-YX-Installed" requires="^" |
| 33 | exec="onos-check-intent ${OC1} xy INSTALLED"/> |
Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 34 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 35 | <import file="${ONOS_SCENARIOS}/net-link-down-up.xml" namespace="P2P-Intent"/> |
Yuta HIGUCHI | df5eeb1 | 2017-05-05 21:19:02 -0700 | [diff] [blame] | 36 | <import file="${ONOS_SCENARIOS}/log-mark.xml" namespace="P2P-Intent"/> |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 37 | <dependency name="P2P-Intent.Net-Link-Down-Up" |
| 38 | requires="P2P-Intent.Validate-Intent-XY-Installed, |
| 39 | P2P-Intent.Validate-Intent-YX-Installed"/> |
Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 40 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 41 | <step name="P2P-Intent.Validate-Intent-XY-Installed-Still" requires="P2P-Intent.Link-1-Down" |
| 42 | exec="onos-check-intent ${OC1} xy INSTALLED"/> |
| 43 | <step name="P2P-Intent.Validate-Intent-YX-Installed-Still" requires="P2P-Intent.Link-1-Down" |
| 44 | exec="onos-check-intent ${OC1} yx INSTALLED"/> |
Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 45 | |
Yuta HIGUCHI | df5eeb1 | 2017-05-05 21:19:02 -0700 | [diff] [blame] | 46 | <dependency name="P2P-Intent.ExpectExceptionMarkBegin" |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 47 | requires="~P2P-Intent.Validate-Intent-XY-Installed-Still, |
| 48 | ~P2P-Intent.Validate-Intent-YX-Installed-Still"/> |
Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 49 | |
Yuta HIGUCHI | df5eeb1 | 2017-05-05 21:19:02 -0700 | [diff] [blame] | 50 | <dependency name="P2P-Intent.Link-2-Down" |
| 51 | requires="P2P-Intent.ExpectExceptionMarkBegin"/> |
| 52 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 53 | <step name="P2P-Intent.Validate-Intent-XY-Failed" requires="P2P-Intent.Link-2-Down" |
| 54 | exec="onos-check-intent ${OC1} xy FAILED"/> |
| 55 | <step name="P2P-Intent.Validate-Intent-YX-Failed" requires="P2P-Intent.Link-2-Down" |
| 56 | exec="onos-check-intent ${OC1} yx FAILED"/> |
| 57 | |
Yuta HIGUCHI | df5eeb1 | 2017-05-05 21:19:02 -0700 | [diff] [blame] | 58 | <dependency name="P2P-Intent.Link-1-Up" |
Ray Milkey | 279c5ff | 2017-05-11 10:30:40 -0700 | [diff] [blame] | 59 | requires="~P2P-Intent.Validate-Intent-XY-Failed, ~P2P-Intent.Validate-Intent-YX-Failed" /> |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 60 | |
| 61 | <step name="P2P-Intent.Validate-Intent-XY-Installed-Again" requires="P2P-Intent.Link-1-Up" |
| 62 | exec="onos-check-intent ${OC1} xy INSTALLED"/> |
| 63 | <step name="P2P-Intent.Validate-Intent-YX-Installed-Again" requires="P2P-Intent.Link-1-Up" |
| 64 | exec="onos-check-intent ${OC1} yx INSTALLED"/> |
| 65 | |
Ray Milkey | 279c5ff | 2017-05-11 10:30:40 -0700 | [diff] [blame] | 66 | <dependency name="P2P-Intent.ExpectExceptionMarkEnd" |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 67 | requires="~P2P-Intent.Validate-Intent-XY-Installed-Again, |
| 68 | ~P2P-Intent.Validate-Intent-YX-Installed-Again"/> |
| 69 | |
Ray Milkey | 279c5ff | 2017-05-11 10:30:40 -0700 | [diff] [blame] | 70 | <dependency name="P2P-Intent.Ping-4" |
| 71 | requires="~P2P-Intent.ExpectExceptionMarkEnd"/> |
| 72 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 73 | <step name="P2P-Intent.Remove-Intent-XY" requires="~P2P-Intent.Net-Link-Down-Up" |
Ray Milkey | 481ec33 | 2018-03-09 13:47:23 -0800 | [diff] [blame] | 74 | exec="onos ${OC1} remove-intent -p org.onosproject.cli xy"/> |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 75 | <step name="P2P-Intent.Remove-Intent-YX" requires="~P2P-Intent.Net-Link-Down-Up" |
Ray Milkey | 481ec33 | 2018-03-09 13:47:23 -0800 | [diff] [blame] | 76 | exec="onos ${OC1} remove-intent -p org.onosproject.cli yx"/> |
Ray Milkey | c698773 | 2015-08-25 11:05:28 -0700 | [diff] [blame] | 77 | </group> |
| 78 | </scenario> |