Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / test / java / org / onap / nbi / test / ServiceOrderRepositoryTest.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
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
17 package org.onap.nbi.test;
18
19 import static org.junit.Assert.assertFalse;
20 import static org.junit.Assert.assertNotNull;
21 import static org.junit.Assert.assertTrue;
22
23 import java.util.List;
24 import java.util.Optional;
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.junit.runner.RunWith;
28 import org.onap.nbi.apis.serviceorder.model.ServiceOrder;
29 import org.onap.nbi.apis.serviceorder.model.StateType;
30 import org.onap.nbi.apis.serviceorder.repositories.ServiceOrderRepository;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.boot.test.context.SpringBootTest;
33 import org.springframework.test.annotation.DirtiesContext;
34 import org.springframework.test.annotation.DirtiesContext.ClassMode;
35 import org.springframework.test.context.ActiveProfiles;
36 import org.springframework.test.context.junit4.SpringRunner;
37
38 @RunWith(SpringRunner.class)
39 @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
40 @DirtiesContext(classMode = ClassMode.AFTER_CLASS)
41 @ActiveProfiles("test")
42 public class ServiceOrderRepositoryTest {
43
44     @Autowired
45     ServiceOrderRepository serviceOrderRepository;
46
47     @Before
48     public void setUp() {
49         ServiceOrder serviceOrder = new ServiceOrder();
50         serviceOrder.setId("test");
51         serviceOrder.setState(StateType.INPROGRESS);
52         serviceOrderRepository.save(serviceOrder);
53     }
54
55     @Test
56     public void findById() {
57         Optional<ServiceOrder> optionalServiceOrderChecked = serviceOrderRepository.findById("test");
58         assertTrue(optionalServiceOrderChecked.isPresent());
59     }
60
61     @Test
62     public void findByState() {
63         List<ServiceOrder> result = serviceOrderRepository.findByState(StateType.INPROGRESS);
64         assertFalse(result.isEmpty());
65     }
66
67 }