blob: 55207cc5f889e223977f03dc7a7490ee1d0fc660 [file] [log] [blame]
Claudine Chiu0005a4d2016-05-25 12:13:43 -04001<!--
2 ~ Copyright 2016-present 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-setup-vnets" description="Network (vnets) setup steps">
17 <group name="Net-Setup-Vnets">
18
19 <step name="Disable-FwdApp" if="echo $ONOS_APPS | grep -w fwd"
20 exec="onos ${OCI} onos:app deactivate org.onosproject.fwd"/>
21
22 <step name="Get-TenantId" requires="^" unless="${tenantId}"
23 exec="echo @stc tenantId=TestTenant"/>
24
25 <step name="Create-Tenant" requires="^"
26 exec="onos ${OCI} vnet-add-tenant ${tenantId}"/>
27
28 <step name="Query-Tenant" requires="^"
29 exec="onos-check-vnet ${OCI} checkTenant ${tenantId}"/>
30
31 <step name="Create-Vnet" requires="^"
32 exec="onos ${OCI} vnet-create ${tenantId}"/>
33
34 <step name="Query-Vnet" requires="^"
35 exec="onos-check-vnet ${OCI} getNetworkId ${tenantId}"/>
36
37 <step name="Create-Device-1" requires="^"
38 exec="onos ${OCI} vnet-create-device ${networkId} device1"/>
39
40 <step name="Create-Device-2" requires="^"
41 exec="onos ${OCI} vnet-create-device ${networkId} device2"/>
42
43 <step name="Create-Port-1" requires="^"
44 exec="onos ${OCI} vnet-create-port ${networkId} device1 1 of:0000000000000004 1"/>
45
46 <step name="Create-Port-2" requires="^"
47 exec="onos ${OCI} vnet-create-port ${networkId} device2 2 of:0000000000000009 1"/>
48
Claudine Chiub0d0ada2016-06-06 18:03:09 -040049 <step name="Create-Bidirectional-Link" requires="^"
50 exec="onos -f ${OCI} vnet-create-link --bidirectional ${networkId} device2 2 device1 1"/>
Claudine Chiu0005a4d2016-05-25 12:13:43 -040051
Claudine Chiub0d0ada2016-06-06 18:03:09 -040052 <step name="Check-intents-installed" requires="^"
53 exec="onos-check-intent ${OCI} networkId=${networkId} INSTALLED 2"/>
Claudine Chiu0005a4d2016-05-25 12:13:43 -040054
Claudine Chiub0d0ada2016-06-06 18:03:09 -040055 <step name="Ping-hosts-1" requires="^"
Claudine Chiu0005a4d2016-05-25 12:13:43 -040056 exec="onos-mininet sendAndExpect h4 ping -c1 h9 --expect \ 0% packet loss"/>
Claudine Chiu0005a4d2016-05-25 12:13:43 -040057
58 </group>
59</scenario>