ef8a1dc49f598de4d8cdf4f3a0ca23208f66470c
[aaf/authz.git] / auth / auth-locate / src / test / java / org / onap / aaf / auth / locate / api / JU_API_AAFTest.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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  */
21 package org.onap.aaf.auth.locate.api;
22
23 import static org.junit.Assert.fail;
24 import static org.mockito.MockitoAnnotations.initMocks;
25
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.Answers;
29 import org.mockito.Mock;
30 import org.onap.aaf.auth.locate.AAF_Locate;
31 import org.onap.aaf.auth.locate.facade.LocateFacade;
32
33 public class JU_API_AAFTest {
34
35         @Mock(answer = Answers.RETURNS_DEEP_STUBS)
36         private AAF_Locate gwAPI;
37         @Mock(answer = Answers.RETURNS_DEEP_STUBS)
38         private LocateFacade facade;
39
40         @Before
41         public void setUp() throws Exception {
42                 initMocks(this);
43         }
44
45         @Test
46         public void testAPI_AAFAccess() throws Exception {
47                 try {
48                         API_AAFAccess.init(gwAPI, facade);
49                 } catch (Exception e) {
50                         fail("There should be no exception as Mocks are used");
51                 }
52         }
53
54         @Test
55         public void testAPI_Find() throws Exception {
56                 try {
57                         API_Find.init(gwAPI, facade);
58                 } catch (Exception e) {
59                         fail("There should be no exception as Mocks are used");
60                 }
61         }
62
63         @Test
64         public void testAPI_API() throws Exception {
65                 try {
66                         API_Api.init(gwAPI, facade);
67                 } catch (Exception e) {
68                         fail("There should be no exception as Mocks are used");
69                 }
70         }
71 }