Merge "Workflow Recipe Lookup"
[so.git] / bpmn / so-bpmn-tasks / src / test / java / org / onap / so / BaseIntegrationTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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 package org.onap.so;
21
22 import java.io.IOException;
23 import java.io.InputStream;
24
25 import org.junit.Before;
26 import org.junit.runner.RunWith;
27 import org.onap.so.bpmn.buildingblock.SniroHomingV2;
28 import org.onap.so.bpmn.common.data.TestDataSetup;
29 import org.onap.so.client.appc.ApplicationControllerAction;
30 import org.onap.so.client.orchestration.SDNOHealthCheckResources;
31 import org.onap.so.client.sdnc.SDNCClient;
32 import org.onap.so.client.sniro.SniroClient;
33 import org.onap.so.db.catalog.client.CatalogDbClient;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.beans.factory.annotation.Value;
36 import org.springframework.boot.test.context.SpringBootTest;
37 import org.springframework.boot.test.mock.mockito.MockBean;
38 import org.springframework.boot.test.mock.mockito.SpyBean;
39 import org.springframework.cloud.contract.wiremock.AutoConfigureWireMock;
40 import org.springframework.test.context.ActiveProfiles;
41 import org.springframework.test.context.ContextConfiguration;
42 import org.springframework.test.context.junit4.SpringRunner;
43
44 import com.github.tomakehurst.wiremock.WireMockServer;
45
46 @RunWith(SpringRunner.class)
47 @SpringBootTest(classes = TestApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
48 @ActiveProfiles("test")
49 @ContextConfiguration
50 @AutoConfigureWireMock(port = 0)
51 public abstract class BaseIntegrationTest extends TestDataSetup {
52
53         @Value("${wiremock.server.port}")
54         protected String wireMockPort;
55
56         @SpyBean
57         protected SDNCClient SPY_sdncClient;
58
59         @SpyBean
60         protected SDNOHealthCheckResources MOCK_sdnoHealthCheckResources;
61
62         @SpyBean
63         protected SniroHomingV2 sniroHoming;
64
65         @SpyBean
66         protected SniroClient sniroClient;
67
68         @MockBean
69         protected ApplicationControllerAction appCClient;
70
71         @MockBean
72         protected CatalogDbClient catalogDbClient;
73         
74         @Autowired
75         protected WireMockServer wireMockServer;
76
77         @Before
78         public void baseTestBefore() {
79                 wireMockServer.resetAll();
80         }
81         public String readResourceFile(String fileName) {
82                 InputStream stream;
83                 try {
84                         stream = getResourceAsStream(fileName);
85                         byte[] bytes;
86                         bytes = new byte[stream.available()];
87                         if(stream.read(bytes) > 0) {
88                                 stream.close();
89                                 return new String(bytes);
90                         } else {
91                                 stream.close();
92                                 return "";
93                         }
94                 } catch (IOException e) {
95                         return "";
96                 }
97         }
98
99         private  InputStream getResourceAsStream(String resourceName) throws IOException {
100                 InputStream stream =
101                                 FileUtil.class.getClassLoader().getResourceAsStream(resourceName);
102                 if (stream == null) {
103                         throw new IOException("Can't access resource '" + resourceName + "'");
104                 }
105                 return stream;
106         }
107 }
108
109