Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-deforg / src / test / java / org / onap / aaf / org / test / JU_DefaultOrgWarnings.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.org.test;
23
24 import static org.junit.Assert.assertEquals;
25
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.MockitoAnnotations;
30 import org.onap.aaf.org.DefaultOrgWarnings;
31 import org.powermock.api.mockito.PowerMockito;
32 import org.powermock.modules.junit4.PowerMockRunner;
33
34 @RunWith(PowerMockRunner.class)
35 public class JU_DefaultOrgWarnings {
36
37     private DefaultOrgWarnings defaultOrgWarningsMock;
38     private DefaultOrgWarnings defaultOrgWarnings;
39
40
41     @Before
42     public void setUp(){
43         MockitoAnnotations.initMocks(this);
44
45         defaultOrgWarningsMock = PowerMockito.mock(DefaultOrgWarnings.class);
46
47         defaultOrgWarnings = new DefaultOrgWarnings();
48     }
49
50
51     @Test
52     public void testApprEmailInterval() {
53
54         assertEquals(259200000, defaultOrgWarnings.apprEmailInterval() );
55     }
56
57     @Test
58     public void testCredEmailInterval() {
59         assertEquals(604800000, defaultOrgWarnings.credEmailInterval());
60
61     }
62
63     @Test
64     public void testCredExpirationWarning() {
65         assertEquals(2592000000L, defaultOrgWarnings.credExpirationWarning());
66     }
67
68     @Test
69     public void testEmailUrgentWarning() {
70         assertEquals(1209600000L, defaultOrgWarnings.emailUrgentWarning());
71     }
72
73     @Test
74     public void testRoleEmailInterval() {
75         assertEquals(604800000L, defaultOrgWarnings.roleEmailInterval());
76     }
77
78     @Test
79     public void testRoleExpirationWarning() {
80         assertEquals(2592000000L, defaultOrgWarnings.roleExpirationWarning());
81     }
82
83 }