blob: eb927d045a6fa962ca0c6a29915715050644c1f4 [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-value-test"
Madan Jampani9e1a8c12016-06-27 11:19:10 -070018 description="ONOS AtomicValue distributed primitive Test">
19 <group name="Distributed-Primitive-Value">
20
Jon Hallda9fd4a2017-02-16 14:23:38 -080021 <step name="Distributed-Primitive-Value.Test-Value-Initial-Value"
22 requires="Distributed-Primitives-Setup"
Madan Jampani145623d2016-07-22 14:55:57 -070023 exec="onos-cluster-execute-expect value-test test-value get --expect null"/>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070024
Jon Hallda9fd4a2017-02-16 14:23:38 -080025 <step name="Distributed-Primitive-Value.Test-Value-Set"
26 requires="Distributed-Primitive-Value.Test-Value-Initial-Value"
Madan Jampani9e1a8c12016-06-27 11:19:10 -070027 exec="onos ${OCI} value-test test-value set v0"/>
28
Jon Hallda9fd4a2017-02-16 14:23:38 -080029 <step name="Distributed-Primitive-Value.Test-Value-Get"
30 requires="Distributed-Primitive-Value.Test-Value-Set"
Madan Jampani145623d2016-07-22 14:55:57 -070031 exec="onos-cluster-execute-expect value-test test-value get --expect v0"/>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070032
Jon Hallda9fd4a2017-02-16 14:23:38 -080033 <step name="Distributed-Primitive-Value.Test-Value-CompareAndSet-False"
34 requires="Distributed-Primitive-Value.Test-Value-Get"
Madan Jampani9e1a8c12016-06-27 11:19:10 -070035 exec="onos-execute-expect ${OCI} value-test test-value compareAndSet v1 v2 --expect false"/>
36
Jon Hallda9fd4a2017-02-16 14:23:38 -080037 <step name="Distributed-Primitive-Value.Test-Value-Not-Updated-After-CAS"
38 requires="Distributed-Primitive-Value.Test-Value-CompareAndSet-False"
Madan Jampani145623d2016-07-22 14:55:57 -070039 exec="onos-cluster-execute-expect value-test test-value get --expect v0"/>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070040
Jon Hallda9fd4a2017-02-16 14:23:38 -080041 <step name="Distributed-Primitive-Value.Test-Value-CompareAndSet-True"
42 requires="Distributed-Primitive-Value.Test-Value-Not-Updated-After-CAS"
Madan Jampani9e1a8c12016-06-27 11:19:10 -070043 exec="onos-execute-expect ${OCI} value-test test-value compareAndSet v0 v1 --expect true"/>
44
Jon Hallda9fd4a2017-02-16 14:23:38 -080045 <step name="Distributed-Primitive-Value.Test-Value-Updated-After-CAS"
46 requires="Distributed-Primitive-Value.Test-Value-CompareAndSet-True"
Madan Jampani145623d2016-07-22 14:55:57 -070047 exec="onos-cluster-execute-expect value-test test-value get --expect v1"/>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070048
Jon Hallda9fd4a2017-02-16 14:23:38 -080049 <step name="Distributed-Primitive-Value.Destroy-Value"
50 requires="Distributed-Primitive-Value.Test-Value-Updated-After-CAS"
Ray Milkey685e34d2016-09-01 12:01:09 -070051 exec="onos ${OCI} value-test test-value set null"/>
52
Jon Halle4a61002017-02-16 18:37:02 -080053 <group name="Distributed-Primitive-Value.Check-Log-Exceptions"
54 requires="Distributed-Primitive-Value.Destroy-Value">
55 <parallel var="${OC#}">
56 <step name="Distributed-Primitive-Value.Check-Log-Exceptions-${#}"
57 exec="onos-check-logs ${OC#}"/>
58 </parallel>
59 </group>
Madan Jampani9e1a8c12016-06-27 11:19:10 -070060
Madan Jampani9e1a8c12016-06-27 11:19:10 -070061 </group>
62</scenario>
63