CadiAuthFilter-junits
[music.git] / music-rest / src / test / java / org / onap / music / unittests / authentication / CadiAuthFilterTest.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
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  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22 package org.onap.music.unittests.authentication;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.mockito.Mockito.mock;
26
27 import java.io.IOException;
28
29 import javax.servlet.FilterChain;
30 import javax.servlet.FilterConfig;
31 import javax.servlet.ServletException;
32 import javax.servlet.ServletRequest;
33 import javax.servlet.ServletResponse;
34
35 import org.junit.Test;
36 import org.mockito.Mockito;
37 import org.onap.aaf.cadi.PropAccess;
38 import org.onap.music.authentication.CadiAuthFilter;
39 import org.springframework.mock.web.MockFilterConfig;
40 import org.springframework.mock.web.MockHttpServletRequest;
41 import org.springframework.mock.web.MockHttpServletResponse;
42
43 import javax.servlet.FilterConfig;
44
45 public class CadiAuthFilterTest {
46
47         @Test
48         public void Test1() throws ServletException
49         {
50                 PropAccess props=new PropAccess();
51                 CadiAuthFilter c=new CadiAuthFilter(props);
52         }
53         
54         
55         @Test
56         public void Test2() throws ServletException
57         {
58                 CadiAuthFilter c=new CadiAuthFilter();
59         }
60                     
61   }
62         
63