blob: eb835cdb1d7df4547f6247cfc8a23919c1411899 [file] [log] [blame]
Madan Jampani5e5b3d62016-02-01 16:03:33 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Madan Jampani5e5b3d62016-02-01 16:03:33 -08003 *
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 */
16package org.onosproject.store.primitives.resources.impl;
17
Madan Jampani5e5b3d62016-02-01 16:03:33 -080018import io.atomix.Atomix;
19import io.atomix.resource.ResourceType;
20import io.atomix.variables.DistributedLong;
Aaron Kruglikovb5a41e52016-06-23 15:37:41 -070021import org.junit.AfterClass;
22import org.junit.BeforeClass;
Aaron Kruglikovc0c27c02016-06-07 16:05:00 -070023import org.junit.Test;
Madan Jampani5e5b3d62016-02-01 16:03:33 -080024
Aaron Kruglikovc0c27c02016-06-07 16:05:00 -070025import static org.junit.Assert.assertEquals;
26import static org.junit.Assert.assertFalse;
27import static org.junit.Assert.assertTrue;
28
29/**git s
Madan Jampani5e5b3d62016-02-01 16:03:33 -080030 * Unit tests for {@link AtomixCounter}.
31 */
Madan Jampani5e5b3d62016-02-01 16:03:33 -080032public class AtomixLongTest extends AtomixTestBase {
33
Aaron Kruglikovb5a41e52016-06-23 15:37:41 -070034 @BeforeClass
35 public static void preTestSetup() throws Throwable {
36 createCopycatServers(3);
37 }
38
39 @AfterClass
40 public static void postTestCleanup() throws Exception {
41 clearTests();
42 }
43
Madan Jampani5e5b3d62016-02-01 16:03:33 -080044 @Override
45 protected ResourceType resourceType() {
46 return new ResourceType(DistributedLong.class);
47 }
48
49 @Test
50 public void testBasicOperations() throws Throwable {
Aaron Kruglikovc38dc7f2016-07-19 10:00:11 -070051 basicOperationsTest();
Madan Jampani5e5b3d62016-02-01 16:03:33 -080052 }
53
Aaron Kruglikovc38dc7f2016-07-19 10:00:11 -070054 protected void basicOperationsTest() throws Throwable {
Madan Jampani5e5b3d62016-02-01 16:03:33 -080055 Atomix atomix = createAtomixClient();
Aaron Kruglikovb5a41e52016-06-23 15:37:41 -070056 AtomixCounter along = new AtomixCounter("test-long-basic-operations",
57 atomix.getLong("test-long").join());
Madan Jampani5e5b3d62016-02-01 16:03:33 -080058 assertEquals(0, along.get().join().longValue());
59 assertEquals(1, along.incrementAndGet().join().longValue());
60 along.set(100).join();
61 assertEquals(100, along.get().join().longValue());
62 assertEquals(100, along.getAndAdd(10).join().longValue());
63 assertEquals(110, along.get().join().longValue());
64 assertFalse(along.compareAndSet(109, 111).join());
65 assertTrue(along.compareAndSet(110, 111).join());
66 assertEquals(100, along.addAndGet(-11).join().longValue());
67 assertEquals(100, along.getAndIncrement().join().longValue());
68 assertEquals(101, along.get().join().longValue());
69 }
70}