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