Thomas Vachuska | 33937c4 | 2015-07-15 17:40:32 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | 33937c4 | 2015-07-15 17:40:32 -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 | --> |
| 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 Vachuska | 33937c4 | 2015-07-15 17:40:32 -0700 | [diff] [blame] | 19 | |
Ray Milkey | 955c4b8 | 2016-07-11 09:48:53 -0700 | [diff] [blame] | 20 | <step name="Host-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="Host-Intent.Find-Host-2" requires="^" |
| 23 | exec="onos-mininet sendAndExpect h4 ping -c1 -w1 h1 --expect ."/> |
Thomas Vachuska | 33937c4 | 2015-07-15 17:40:32 -0700 | [diff] [blame] | 24 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 25 | <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 Vachuska | 33937c4 | 2015-07-15 17:40:32 -0700 | [diff] [blame] | 29 | |
| 30 | <import file="${ONOS_SCENARIOS}/net-link-down-up.xml" namespace="Host-Intent"/> |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 31 | <dependency name="Host-Intent.Net-Link-Down-Up" |
| 32 | requires="Host-Intent.Validate-Intent-Installed"/> |
Ray Milkey | bba7138 | 2015-08-26 13:09:23 -0700 | [diff] [blame] | 33 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 34 | <step name="Host-Intent.Validate-Intent-Installed-Still" requires="Host-Intent.Link-1-Down" |
| 35 | exec="onos-check-intent ${OC1} h2h INSTALLED"/> |
Thomas Vachuska | 33937c4 | 2015-07-15 17:40:32 -0700 | [diff] [blame] | 36 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 37 | <dependency name="Host-Intent.Link-2-Down" |
| 38 | requires="~Host-Intent.Validate-Intent-Installed-Still" /> |
Ray Milkey | c345663 | 2015-08-24 17:06:29 -0700 | [diff] [blame] | 39 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 40 | <step name="Host-Intent.Validate-Intent-Failed" requires="Host-Intent.Link-2-Down" |
| 41 | exec="onos-check-intent ${OC1} h2h FAILED"/> |
Ray Milkey | c345663 | 2015-08-24 17:06:29 -0700 | [diff] [blame] | 42 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 43 | <dependency name="Host-Intent.Link-1-Up" |
| 44 | requires="~Host-Intent.Validate-Intent-Failed" /> |
Ray Milkey | c345663 | 2015-08-24 17:06:29 -0700 | [diff] [blame] | 45 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 46 | <step name="Host-Intent.Validate-Intent-Installed-Again" requires="Host-Intent.Link-1-Up" |
| 47 | exec="onos-check-intent ${OC1} h2h INSTALLED"/> |
Ray Milkey | c345663 | 2015-08-24 17:06:29 -0700 | [diff] [blame] | 48 | |
Thomas Vachuska | 1c15287 | 2015-08-26 18:41:10 -0700 | [diff] [blame] | 49 | <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 Hart | 381f8d8 | 2016-08-31 10:24:12 -0700 | [diff] [blame] | 53 | exec="onos -f ${OC1} remove-intent -p org.onosproject.cli h2h"/> |
Thomas Vachuska | 33937c4 | 2015-07-15 17:40:32 -0700 | [diff] [blame] | 54 | </group> |
Ray Milkey | c345663 | 2015-08-24 17:06:29 -0700 | [diff] [blame] | 55 | </scenario> |