9ae7a01218fce0fc9f1009998d4984698dc350c1
[aaf/authz.git] / auth / auth-oauth / src / test / java / org / onap / aaf / auth / oauth / JU_OACodeTest.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
22 package org.onap.aaf.auth.oauth;
23
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotSame;
26 import static org.junit.Assert.assertTrue;
27 import static org.mockito.MockitoAnnotations.initMocks;
28
29 import javax.servlet.http.HttpServletRequest;
30 import javax.servlet.http.HttpServletResponse;
31
32 import org.junit.Before;
33 import org.junit.Test;
34 import org.mockito.Mock;
35 import org.onap.aaf.auth.env.AuthzTrans;
36 import org.onap.aaf.auth.oauth.facade.OAFacade;
37
38 import aafoauth.v2_0.Introspect;
39
40 public class JU_OACodeTest {
41
42         @Mock
43         private OAFacade<Introspect> facade;
44
45         @Mock
46         private OAFacade<Introspect> facade1;
47
48         @Before
49         public void setup() {
50                 initMocks(this);
51         }
52
53         @Test
54         public void testOACodeDefaultMethod() throws Exception {
55                 OACode code = new OACode(facade, "Original Description", true, "role1") {
56
57                         @Override
58                         public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception {
59                                 // Blank implementation to test abstract OACode class.
60                         }
61                 };
62
63                 OACode clone = code.clone(facade1, false);
64
65                 assertNotSame(code, clone);
66
67                 assertTrue(code.useJSON);
68                 assertFalse(clone.useJSON);
69
70         }
71 }