Add Apache license header per file
[externalapi/nbi.git] / src / test / java / org / onap / nbi / apis / ServiceOrderRepositoryTest.java
1 /**
2  *
3  *     Copyright (c) 2017 Orange.  All rights reserved.
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  *
11  *     Unless required by applicable law or agreed to in writing, software
12  *     distributed under the License is distributed on an "AS IS" BASIS,
13  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *     See the License for the specific language governing permissions and
15  *     limitations under the License.
16  */
17 package org.onap.nbi.apis;
18
19
20 import static org.junit.Assert.assertFalse;
21 import static org.junit.Assert.assertNotNull;
22 import java.util.List;
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.junit.runner.RunWith;
26 import org.onap.nbi.apis.serviceorder.model.ServiceOrder;
27 import org.onap.nbi.apis.serviceorder.model.StateType;
28 import org.onap.nbi.apis.serviceorder.repositories.ServiceOrderRepository;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.boot.test.context.SpringBootTest;
31 import org.springframework.test.context.junit4.SpringRunner;
32
33 @RunWith(SpringRunner.class)
34 @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
35 public class ServiceOrderRepositoryTest {
36
37     @Autowired
38     ServiceOrderRepository serviceOrderRepository;
39
40
41     @Before
42     public void setUp() {
43         ServiceOrder serviceOrder = new ServiceOrder();
44         serviceOrder.setId("test");
45         serviceOrder.setState(StateType.INPROGRESS);
46         serviceOrderRepository.save(serviceOrder);
47     }
48
49     @Test
50     public void findById() {
51         ServiceOrder result = serviceOrderRepository.findOne("test");
52         assertNotNull(result);
53     }
54
55     @Test
56     public void findByState() {
57         List<ServiceOrder> result = serviceOrderRepository.findByState(StateType.INPROGRESS);
58         assertFalse(result.isEmpty());
59     }
60
61 }