f400e16dc199e7988410977f2876c677d35f93c9
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / ns / JU_ListUsers.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.cmd.test.ns;
23
24 import static org.junit.Assert.*;
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.Mock;
29 import org.mockito.Mockito;
30 import org.onap.aaf.auth.cmd.AAFcli;
31 import org.onap.aaf.auth.cmd.ns.List;
32 import org.onap.aaf.auth.cmd.ns.ListUsers;
33 import org.onap.aaf.auth.cmd.ns.NS;
34 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
35 import org.onap.aaf.cadi.CadiException;
36 import org.onap.aaf.cadi.LocatorException;
37 import org.onap.aaf.misc.env.APIException;
38
39 import aaf.v2_0.Users;
40
41 import static org.mockito.Mockito.*;
42
43 import java.io.IOException;
44 import java.security.GeneralSecurityException;
45 import java.util.GregorianCalendar;
46
47 import javax.xml.datatype.DatatypeConfigurationException;
48 import javax.xml.datatype.DatatypeFactory;
49 import javax.xml.datatype.XMLGregorianCalendar;
50
51 import org.junit.Test;
52
53 public class JU_ListUsers {
54
55     AAFcli cli;
56     NS ns;
57     List list;
58     ListUsers lUsers;
59     
60     @Before
61     public void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException, CadiException {
62         cli = JU_AAFCli.getAAfCli();
63         ns = new NS(cli);
64         list = new List(ns);
65         lUsers = new ListUsers(list);
66     }
67     
68     @Test
69     public void testReports() throws DatatypeConfigurationException {
70         Users.User user = new Users.User();
71         GregorianCalendar gcal = new GregorianCalendar();
72         XMLGregorianCalendar xgcal = DatatypeFactory.newInstance().newXMLGregorianCalendar(gcal);
73         user.setExpires(xgcal);
74         
75         lUsers.report("header", "ns");
76         lUsers.report("subHead");
77         lUsers.report("prefix", user);
78     }
79
80 }