blob: a83ea46aa4a4af8884c527ee161f5d8e5138421b [file] [log] [blame]
Madan Jampani9e1a8c12016-06-27 11:19:10 -07001<!--
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
Ray Milkey685e34d2016-09-01 12:01:09 -070017<scenario name="distributed-leader-elector-test"
Madan Jampani9e1a8c12016-06-27 11:19:10 -070018 description="ONOS LeaderElector distributed primitive Test">
Ray Milkey685e34d2016-09-01 12:01:09 -070019 <group name="Distributed-Primitive-Leader">
Madan Jampani9e1a8c12016-06-27 11:19:10 -070020
Jon Hallda9fd4a2017-02-16 14:23:38 -080021 <step name="Distributed-Primitive-Leader.Test-Initial-No-Leader"
22 requires="Distributed-Primitives-Setup"
Madan Jampani145623d2016-07-22 14:55:57 -070023 exec="onos-cluster-execute-expect leader-test test-elector show foo --expect leader=none#candidates=none"/>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070024
Jon Hallda9fd4a2017-02-16 14:23:38 -080025 <step name="Distributed-Primitive-Leader.Test-Leader-Run"
26 requires="Distributed-Primitive-Leader.Test-Initial-No-Leader"
Ray Milkey685e34d2016-09-01 12:01:09 -070027 exec="onos-execute-expect ${OCI} leader-test test-elector run foo --expect leader=${OCI}#term=[0-9][0-9]*#candidates=${OCI}"/>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070028
Jon Hallda9fd4a2017-02-16 14:23:38 -080029 <step name="Distributed-Primitive-Leader.Test-Leader-Withdraw"
30 requires="Distributed-Primitive-Leader.Test-Leader-Run"
Madan Jampani9e1a8c12016-06-27 11:19:10 -070031 exec="onos ${OCI} leader-test test-elector withdraw foo"/>
32
Jon Hallda9fd4a2017-02-16 14:23:38 -080033 <step name="Distributed-Primitive-Leader.Test-No-Leader-After-Withdraw"
34 requires="Distributed-Primitive-Leader.Test-Leader-Withdraw"
Madan Jampani145623d2016-07-22 14:55:57 -070035 exec="onos-cluster-execute-expect leader-test test-elector show foo --expect leader=none#candidates=none"/>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070036
Jon Halle4a61002017-02-16 18:37:02 -080037 <group name="Distributed-Primitive-Leader.Check-Log-Exceptions"
38 requires="Distributed-Primitive-Leader.Test-No-Leader-After-Withdraw">
39 <parallel var="${OC#}">
40 <step name="Distributed-Primitive-Leader.Check-Log-Exceptions-${#}"
41 exec="onos-check-logs ${OC#}"/>
42 </parallel>
43 </group>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070044
Madan Jampani9e1a8c12016-06-27 11:19:10 -070045 </group>
46</scenario>
47