blob: 832390da785f553699065dcfc3ab155156f42fb7 [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
37 <!--Check with check logs-->
Jon Hallda9fd4a2017-02-16 14:23:38 -080038 <step name="Distributed-Primitive-Leader.Check-Log-Exceptions"
39 requires="Distributed-Primitive-Leader.Test-No-Leader-After-Withdraw"
Madan Jampani9e1a8c12016-06-27 11:19:10 -070040 exec="onos-check-logs ${OCI}"/>
41
Madan Jampani9e1a8c12016-06-27 11:19:10 -070042 </group>
43</scenario>
44