blob: 49625b6eb3ab3e92176c598225281e6bfe199935 [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
18import static org.junit.Assert.*;
19
Madan Jampani9a624592016-06-03 10:14:38 -070020import org.junit.Ignore;
Madan Jampani5e5b3d62016-02-01 16:03:33 -080021import org.junit.Test;
22
23import io.atomix.Atomix;
24import io.atomix.resource.ResourceType;
25import io.atomix.variables.DistributedLong;
26
27/**
28 * Unit tests for {@link AtomixCounter}.
29 */
Madan Jampani9a624592016-06-03 10:14:38 -070030@Ignore
Madan Jampani5e5b3d62016-02-01 16:03:33 -080031public class AtomixLongTest extends AtomixTestBase {
32
33 @Override
34 protected ResourceType resourceType() {
35 return new ResourceType(DistributedLong.class);
36 }
37
38 @Test
39 public void testBasicOperations() throws Throwable {
Madan Jampani5e5b3d62016-02-01 16:03:33 -080040 basicOperationsTest(3);
Madan Jampani5e5b3d62016-02-01 16:03:33 -080041 }
42
43 protected void basicOperationsTest(int clusterSize) throws Throwable {
44 createCopycatServers(clusterSize);
45 Atomix atomix = createAtomixClient();
46 AtomixCounter along = new AtomixCounter("test-long", atomix.getLong("test-long").join());
47 assertEquals(0, along.get().join().longValue());
48 assertEquals(1, along.incrementAndGet().join().longValue());
49 along.set(100).join();
50 assertEquals(100, along.get().join().longValue());
51 assertEquals(100, along.getAndAdd(10).join().longValue());
52 assertEquals(110, along.get().join().longValue());
53 assertFalse(along.compareAndSet(109, 111).join());
54 assertTrue(along.compareAndSet(110, 111).join());
55 assertEquals(100, along.addAndGet(-11).join().longValue());
56 assertEquals(100, along.getAndIncrement().join().longValue());
57 assertEquals(101, along.get().join().longValue());
58 }
59}