blob: c29f46ebc653cff24075c356d49304cffbe06211 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.groovy.util.concurrentlinkedhashmap;
import org.apache.groovy.util.concurrent.concurrentlinkedhashmap.ConcurrentLinkedHashMap;
import org.junit.Test;
import java.util.TreeSet;
import java.util.concurrent.CountDownLatch;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
public class ConcurrentLinkedHashMapTest {
@Test
public void computeIfAbsent() {
org.apache.groovy.util.concurrent.concurrentlinkedhashmap.ConcurrentLinkedHashMap m = new org.apache.groovy.util.concurrent.concurrentlinkedhashmap.ConcurrentLinkedHashMap.Builder<>()
.maximumWeightedCapacity(3)
.build();
assertEquals(1, m.computeIfAbsent("a", k -> 1));
assertEquals(1, m.computeIfAbsent("a", k -> 2));
assertEquals(1, m.get("a"));
assertEquals(3, m.computeIfAbsent("b", k -> 3));
assertEquals(4, m.computeIfAbsent("c", k -> 4));
assertEquals(5, m.computeIfAbsent("d", k -> 5));
assertEquals(5, m.computeIfAbsent("d", k -> 6));
assertArrayEquals(new String[] {"b", "c", "d"}, m.keySet().toArray(new String[0]));
assertArrayEquals(new Integer[] {3, 4, 5}, m.values().toArray(new Integer[0]));
}
@Test
public void computeIfAbsentConcurrently() throws InterruptedException {
final org.apache.groovy.util.concurrent.concurrentlinkedhashmap.ConcurrentLinkedHashMap m = new ConcurrentLinkedHashMap.Builder<>()
.maximumWeightedCapacity(3)
.build();
final int threadNum = 20;
final CountDownLatch countDownLatch = new CountDownLatch(1);
final CountDownLatch countDownLatch2 = new CountDownLatch(threadNum);
for (int i = 0; i < threadNum; i++) {
final int num = i;
new Thread(() -> {
try {
countDownLatch.await();
m.computeIfAbsent(num % 3, k -> num);
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
countDownLatch2.countDown();
}
}).start();
}
countDownLatch.countDown();
countDownLatch2.await();
m.computeIfAbsent(0, k -> 100);
assertArrayEquals(new Integer[] {0, 1, 2}, new TreeSet(m.keySet()).toArray(new Integer[0]));
assertNotEquals(100, m.get(0));
assertEquals(0, (Integer) m.get(0) % 3);
assertEquals(1, (Integer) m.get(1) % 3);
assertEquals(2, (Integer) m.get(2) % 3);
}
}