Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 1 | <!-- |
| 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 Milkey | 685e34d | 2016-09-01 12:01:09 -0700 | [diff] [blame] | 17 | <scenario name="distributed-value-test" |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 18 | description="ONOS AtomicValue distributed primitive Test"> |
| 19 | <group name="Distributed-Primitive-Value"> |
| 20 | |
Jon Hall | da9fd4a | 2017-02-16 14:23:38 -0800 | [diff] [blame] | 21 | <step name="Distributed-Primitive-Value.Test-Value-Initial-Value" |
Madan Jampani | 145623d | 2016-07-22 14:55:57 -0700 | [diff] [blame] | 22 | exec="onos-cluster-execute-expect value-test test-value get --expect null"/> |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 23 | |
Jon Hall | da9fd4a | 2017-02-16 14:23:38 -0800 | [diff] [blame] | 24 | <step name="Distributed-Primitive-Value.Test-Value-Set" |
| 25 | requires="Distributed-Primitive-Value.Test-Value-Initial-Value" |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 26 | exec="onos ${OCI} value-test test-value set v0"/> |
| 27 | |
Jon Hall | da9fd4a | 2017-02-16 14:23:38 -0800 | [diff] [blame] | 28 | <step name="Distributed-Primitive-Value.Test-Value-Get" |
| 29 | requires="Distributed-Primitive-Value.Test-Value-Set" |
Madan Jampani | 145623d | 2016-07-22 14:55:57 -0700 | [diff] [blame] | 30 | exec="onos-cluster-execute-expect value-test test-value get --expect v0"/> |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 31 | |
Jon Hall | da9fd4a | 2017-02-16 14:23:38 -0800 | [diff] [blame] | 32 | <step name="Distributed-Primitive-Value.Test-Value-CompareAndSet-False" |
| 33 | requires="Distributed-Primitive-Value.Test-Value-Get" |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 34 | exec="onos-execute-expect ${OCI} value-test test-value compareAndSet v1 v2 --expect false"/> |
| 35 | |
Jon Hall | da9fd4a | 2017-02-16 14:23:38 -0800 | [diff] [blame] | 36 | <step name="Distributed-Primitive-Value.Test-Value-Not-Updated-After-CAS" |
| 37 | requires="Distributed-Primitive-Value.Test-Value-CompareAndSet-False" |
Madan Jampani | 145623d | 2016-07-22 14:55:57 -0700 | [diff] [blame] | 38 | exec="onos-cluster-execute-expect value-test test-value get --expect v0"/> |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 39 | |
Jon Hall | da9fd4a | 2017-02-16 14:23:38 -0800 | [diff] [blame] | 40 | <step name="Distributed-Primitive-Value.Test-Value-CompareAndSet-True" |
| 41 | requires="Distributed-Primitive-Value.Test-Value-Not-Updated-After-CAS" |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 42 | exec="onos-execute-expect ${OCI} value-test test-value compareAndSet v0 v1 --expect true"/> |
| 43 | |
Jon Hall | da9fd4a | 2017-02-16 14:23:38 -0800 | [diff] [blame] | 44 | <step name="Distributed-Primitive-Value.Test-Value-Updated-After-CAS" |
| 45 | requires="Distributed-Primitive-Value.Test-Value-CompareAndSet-True" |
Madan Jampani | 145623d | 2016-07-22 14:55:57 -0700 | [diff] [blame] | 46 | exec="onos-cluster-execute-expect value-test test-value get --expect v1"/> |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 47 | |
Jon Hall | da9fd4a | 2017-02-16 14:23:38 -0800 | [diff] [blame] | 48 | <step name="Distributed-Primitive-Value.Destroy-Value" |
| 49 | requires="Distributed-Primitive-Value.Test-Value-Updated-After-CAS" |
Ray Milkey | 685e34d | 2016-09-01 12:01:09 -0700 | [diff] [blame] | 50 | exec="onos ${OCI} value-test test-value set null"/> |
| 51 | |
Jon Hall | e4a6100 | 2017-02-16 18:37:02 -0800 | [diff] [blame] | 52 | <group name="Distributed-Primitive-Value.Check-Log-Exceptions" |
| 53 | requires="Distributed-Primitive-Value.Destroy-Value"> |
| 54 | <parallel var="${OC#}"> |
| 55 | <step name="Distributed-Primitive-Value.Check-Log-Exceptions-${#}" |
| 56 | exec="onos-check-logs ${OC#}"/> |
| 57 | </parallel> |
| 58 | </group> |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 59 | |
Madan Jampani | 9e1a8c1 | 2016-06-27 11:19:10 -0700 | [diff] [blame] | 60 | </group> |
| 61 | </scenario> |
| 62 | |