AT&T 2.0.19 Code drop, stage 2
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / test / taf / JU_NullTafRespTest.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 2017 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.cadi.test.taf;
23
24 import static org.junit.Assert.*;
25
26 import java.io.IOException;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.onap.aaf.cadi.Access;
31 import org.onap.aaf.cadi.taf.TafResp;
32 import org.onap.aaf.cadi.taf.TafResp.RESP;
33
34 public class JU_NullTafRespTest {
35
36 //      @Before
37 //      public void setUp() throws Exception {
38 //      }
39
40 //      @Test
41 //      public void test() throws IOException {
42 //              TafResp singleton = NullTafResp.singleton();
43 //              TafResp singleton1 = NullTafResp.singleton();
44                 
45 //              assertEquals(singleton, singleton1);
46                 
47 //              assertFalse(singleton.isValid());
48                 
49 //              assertEquals(singleton.isAuthenticated(), RESP.NO_FURTHER_PROCESSING);
50                 
51 //              assertEquals(singleton.desc(), "All Authentication denied");
52                 
53 //              assertEquals(singleton.authenticate(), RESP.NO_FURTHER_PROCESSING);
54                 
55 //              assertNull(singleton.getPrincipal());
56                 
57 //              assertEquals(singleton.getAccess(), Access.NULL);
58                 
59 //              assertEquals(singleton.isFailedAttempt(), true);
60 //      }
61
62 }