Merge "Support Multiple Realms for DefaultOrg"
[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.LocatorException;
36 import org.onap.aaf.misc.env.APIException;
37
38 import aaf.v2_0.Users;
39
40 import static org.mockito.Mockito.*;
41
42 import java.io.IOException;
43 import java.security.GeneralSecurityException;
44 import java.util.GregorianCalendar;
45
46 import javax.xml.datatype.DatatypeConfigurationException;
47 import javax.xml.datatype.DatatypeFactory;
48 import javax.xml.datatype.XMLGregorianCalendar;
49
50 import org.junit.Test;
51
52 public class JU_ListUsers {
53
54         AAFcli cli;
55         NS ns;
56         List list;
57         ListUsers lUsers;
58         
59         @Before
60         public void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException {
61                 cli = JU_AAFCli.getAAfCli();
62                 ns = new NS(cli);
63                 list = new List(ns);
64                 lUsers = new ListUsers(list);
65         }
66         
67         @Test
68         public void testReports() throws DatatypeConfigurationException {
69                 Users.User user = new Users.User();
70                 GregorianCalendar gcal = new GregorianCalendar();
71             XMLGregorianCalendar xgcal = DatatypeFactory.newInstance().newXMLGregorianCalendar(gcal);
72                 user.setExpires(xgcal);
73                 
74                 lUsers.report("header", "ns");
75                 lUsers.report("subHead");
76                 lUsers.report("prefix", user);
77         }
78
79 }