9f9be0243ae96620ddd49022866d1c2550db3a1f
[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 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.champcore.concurrency;
23
24 import org.junit.Test;
25 import org.onap.aai.champcore.ChampAPI;
26 import org.onap.aai.champcore.ChampGraph;
27 import org.onap.aai.champcore.core.ChampObjectTest;
28 import org.onap.aai.champcore.core.ChampRelationshipTest;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32 import java.util.concurrent.ExecutorService;
33 import java.util.concurrent.Executors;
34 import java.util.concurrent.TimeUnit;
35
36 public class ConcurrencyTest {
37
38   private static final Logger LOGGER = LoggerFactory.getLogger(ConcurrencyTest.class);
39
40   @Test
41   public void runInMemoryConcurrentTest() {
42     runConcurrentTest("IN_MEMORY");
43   }
44
45   public void runConcurrentTest(String apiType) {
46     final ChampAPI api = ChampAPI.Factory.newInstance(apiType);
47     runConcurrencyTest(api);
48     api.shutdown();
49   }
50
51   private void runConcurrencyTest(ChampAPI api) {
52     final int numThreads = 10;
53     final ExecutorService es = Executors.newFixedThreadPool(numThreads);
54
55     for (int i = 0; i < numThreads * 2; i++) {
56       es.submit(new Runnable() {
57         @Override
58         public void run() {
59           final ChampGraph graph = api.getGraph(ConcurrencyTest.class.getSimpleName());
60           ChampObjectTest.testChampObjectCrud(graph);
61           ChampRelationshipTest.testChampRelationshipCrud(graph);
62         }
63       });
64     }
65
66     try {
67       es.shutdown();
68       es.awaitTermination(60, TimeUnit.SECONDS);
69     } catch (InterruptedException e) {
70       LOGGER.warn("Interrupted while waiting for concurrency test to finish", e);
71       return;
72     }
73   }
74 }