7b452f0d35d546f8cc1f42522179142639a41037
[holmes/common.git] / holmes-actions / src / test / java / org / onap / holmes / common / utils / UserUtilTest.java
1 /**
2  * Copyright 2017-2022 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.holmes.common.utils;
18
19 import org.easymock.EasyMock;
20 import org.junit.After;
21 import org.junit.Before;
22 import org.junit.Test;
23 import org.powermock.api.easymock.PowerMock;
24
25 import javax.servlet.http.HttpServletRequest;
26
27 import static org.hamcrest.core.IsEqual.equalTo;
28 import static org.junit.Assert.assertThat;
29 public class UserUtilTest {
30
31     private HttpServletRequest request;
32
33     @Before
34     public void before() throws Exception {
35         request = PowerMock.createMock(HttpServletRequest.class);
36     }
37
38     @After
39     public void after() throws Exception {
40     }
41
42     @Test
43     public void getUserName_header_name_empty() {
44         EasyMock.expect(request.getHeader("username")).andReturn(null);
45
46         PowerMock.replayAll();
47
48         assertThat("admin", equalTo(UserUtil.getUserName(request)));
49
50         PowerMock.verifyAll();
51     }
52
53     @Test
54     public void getUserName_normal() {
55         EasyMock.expect(request.getHeader("username")).andReturn("Name").times(2);
56
57         PowerMock.replayAll();
58
59         assertThat("Name", equalTo(UserUtil.getUserName(request)));
60
61         PowerMock.verifyAll();
62     }
63
64