Update license date and text
[aai/champ.git] / champ-lib / champ-core / src / test / java / org / onap / aai / champcore / concurrency / ConcurrencyTest.java
1 /**
2  * ============LICENSE_START==========================================
3  * org.onap.aai
4  * ===================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ===================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *        http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  */
21 package org.onap.aai.champcore.concurrency;
22
23 import org.junit.Test;
24 import org.onap.aai.champcore.ChampAPI;
25 import org.onap.aai.champcore.ChampGraph;
26 import org.onap.aai.champcore.core.ChampObjectTest;
27 import org.onap.aai.champcore.core.ChampRelationshipTest;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 import java.util.concurrent.ExecutorService;
32 import java.util.concurrent.Executors;
33 import java.util.concurrent.TimeUnit;
34
35 public class ConcurrencyTest {
36
37   private static final Logger LOGGER = LoggerFactory.getLogger(ConcurrencyTest.class);
38
39   @Test
40   public void runInMemoryConcurrentTest() {
41     runConcurrentTest("IN_MEMORY");
42   }
43
44   public void runConcurrentTest(String apiType) {
45     final ChampAPI api = ChampAPI.Factory.newInstance(apiType);
46     runConcurrencyTest(api);
47     api.shutdown();
48   }
49
50   private void runConcurrencyTest(ChampAPI api) {
51     final int numThreads = 10;
52     final ExecutorService es = Executors.newFixedThreadPool(numThreads);
53
54     for (int i = 0; i < numThreads * 2; i++) {
55       es.submit(new Runnable() {
56         @Override
57         public void run() {
58           final ChampGraph graph = api.getGraph(ConcurrencyTest.class.getSimpleName());
59           ChampObjectTest.testChampObjectCrud(graph);
60           ChampRelationshipTest.testChampRelationshipCrud(graph);
61         }
62       });
63     }
64
65     try {
66       es.shutdown();
67       es.awaitTermination(60, TimeUnit.SECONDS);
68     } catch (InterruptedException e) {
69       LOGGER.warn("Interrupted while waiting for concurrency test to finish", e);
70       return;
71     }
72   }
73 }