Migrate to tech.pantheon.TrieMap
[yangtools.git] / third-party / triemap / src / test / java / org / opendaylight / yangtools / triemap / TestMultiThreadInserts.java
1 /*
2  * (C) Copyright 2016 Pantheon Technologies, s.r.o. and others.
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 package org.opendaylight.yangtools.triemap;
17
18 import static org.junit.Assert.assertEquals;
19
20 import java.util.concurrent.ExecutorService;
21 import java.util.concurrent.Executors;
22 import java.util.concurrent.TimeUnit;
23 import org.junit.Test;
24
25 @Deprecated
26 public class TestMultiThreadInserts {
27     @Test
28     public void testMultiThreadInserts() throws InterruptedException {
29         final int nThreads = 2;
30         final ExecutorService es = Executors.newFixedThreadPool(nThreads);
31         final TrieMap<Object, Object> bt = TrieMap.create();
32         for (int i = 0; i < nThreads; i++) {
33             final int threadNo = i;
34             es.execute(() -> {
35                 for (int j = 0; j < 500 * 1000; j++) {
36                     if (j % nThreads == threadNo) {
37                         bt.put(Integer.valueOf(j), Integer.valueOf(j));
38                     }
39                 }
40             });
41         }
42
43         es.shutdown();
44         es.awaitTermination(5, TimeUnit.MINUTES);
45
46         for (int j = 0; j < 500 * 1000; j++) {
47             final Object lookup = bt.get(Integer.valueOf(j));
48             assertEquals(Integer.valueOf(j), lookup);
49         }
50     }
51 }