unit tests - openecomp-be
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / unique-type-rest / unique-type-rest-services / src / test / java / org / openecomp / sdcrests / uniquevalue / rest / services / UniqueTypesImplTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 Nokia. 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.openecomp.sdcrests.uniquevalue.rest.services;
21
22 import static org.junit.Assert.assertEquals;
23
24 import javax.ws.rs.core.Response;
25 import org.junit.Test;
26 import org.junit.runner.RunWith;
27 import org.mockito.Mock;
28 import org.mockito.junit.MockitoJUnitRunner;
29 import org.openecomp.core.util.UniqueValueUtil;
30
31 @RunWith(MockitoJUnitRunner.class)
32 public class UniqueTypesImplTest {
33
34     private static final String ANY = "ANY";
35
36     @Mock
37     private UniqueValueUtil uniqueValueUtil;
38
39     @Test
40     public void shouldListUniqueTypes() {
41         UniqueTypesImpl uniqueTypes = new UniqueTypesImpl();
42         uniqueTypes.setUniqueValueUtil(uniqueValueUtil);
43         Response response = uniqueTypes.listUniqueTypes(ANY);
44         assertEquals(response.getStatus(), 200);
45     }
46
47     @Test
48     public void shouldGetNotFoundOnNonExistentType() {
49         UniqueTypesImpl uniqueTypes = new UniqueTypesImpl();
50         uniqueTypes.setUniqueValueUtil(uniqueValueUtil);
51         Response response = uniqueTypes.getUniqueValue(ANY, ANY, ANY);
52         assertEquals(response.getStatus(), 404);
53     }
54 }