Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / distribution / engine / ExecutorFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.components.distribution.engine;
22
23 import mockit.Deencapsulation;
24 import org.junit.Test;
25
26 import java.lang.Thread.UncaughtExceptionHandler;
27 import java.util.concurrent.ExecutorService;
28 import java.util.concurrent.ScheduledExecutorService;
29 import java.util.concurrent.ThreadFactory;
30
31 public class ExecutorFactoryTest {
32
33         private ExecutorFactory createTestSubject() {
34                 return new ExecutorFactory();
35         }
36
37         @Test
38         public void testCreate() throws Exception {
39                 ExecutorFactory testSubject;
40                 String name = "mock";
41                 UncaughtExceptionHandler exceptionHandler = new UncaughtExceptionHandlerMock();
42                 ExecutorService result;
43
44                 // default test
45                 testSubject = createTestSubject();
46                 result = testSubject.create(name, exceptionHandler);
47         }
48
49         @Test
50         public void testCreateScheduled() throws Exception {
51                 ExecutorFactory testSubject;
52                 String name = "";
53                 ScheduledExecutorService result;
54
55                 // default test
56                 testSubject = createTestSubject();
57                 result = testSubject.createScheduled(name);
58         }
59
60         @Test
61         public void testCreateThreadFactory() throws Exception {
62                 ExecutorFactory testSubject;
63                 String name = "mock";
64                 ThreadFactory result;
65
66                 // default test
67                 testSubject = createTestSubject();
68                 result = Deencapsulation.invoke(testSubject, "createThreadFactory",
69                                  name, new UncaughtExceptionHandlerMock());
70         }
71         
72         private class UncaughtExceptionHandlerMock implements UncaughtExceptionHandler {
73
74                 @Override
75                 public void uncaughtException(Thread t, Throwable e) {
76                         // TODO Auto-generated method stub
77                         
78                 }
79                 
80         }
81 }