648c9887c261de4e8273da026448453fee0ccaae
[so.git] / bpmn / so-bpmn-infrastructure-flows / src / test / java / org / onap / so / BaseBPMNTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
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  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19 package org.onap.so;
20
21 import com.github.tomakehurst.wiremock.WireMockServer;
22 import java.util.HashMap;
23 import java.util.Map;
24 import org.camunda.bpm.engine.HistoryService;
25 import org.camunda.bpm.engine.RepositoryService;
26 import org.camunda.bpm.engine.RuntimeService;
27 import org.junit.After;
28 import org.junit.runner.RunWith;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.beans.factory.annotation.Value;
31 import org.springframework.boot.test.context.SpringBootTest;
32 import org.springframework.boot.web.server.LocalServerPort;
33 import org.springframework.cloud.contract.wiremock.AutoConfigureWireMock;
34 import org.springframework.test.context.ActiveProfiles;
35 import org.springframework.test.context.ContextConfiguration;
36 import org.springframework.test.context.junit4.SpringRunner;
37
38 @RunWith(SpringRunner.class)
39 @SpringBootTest(classes = TestApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
40 @ActiveProfiles("test")
41 @ContextConfiguration
42 @AutoConfigureWireMock(port = 0)
43 public abstract class BaseBPMNTest {
44
45     @Autowired
46     protected RuntimeService runtimeService;
47
48     @Autowired
49     protected RepositoryService repositoryService;
50
51     @Autowired
52     protected HistoryService historyService;
53
54     protected Map<String, Object> variables = new HashMap<>();
55
56     @LocalServerPort
57     protected int port;
58
59     @Autowired
60     protected WireMockServer wireMockServer;
61
62     @Value("${wiremock.server.port}")
63     protected int wireMockPort;
64
65     @After
66     public void shutDown(){
67         wireMockServer.resetAll();
68     }
69 }