Improve unit test coverage of DcaeInventoryServices & clamp/clds/model
[clamp.git] / src / test / java / org / onap / clamp / clds / service / CldsInfoProviderTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2018 Nokia Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.clds.service;
25
26 import static org.assertj.core.api.Assertions.assertThat;
27 import static org.mockito.Matchers.any;
28 import static org.mockito.Mockito.mock;
29 import static org.mockito.Mockito.when;
30
31 import org.junit.Test;
32 import org.onap.clamp.clds.model.CldsInfo;
33
34
35 public class CldsInfoProviderTest {
36
37     private static final String TEST_USERNAME = "TEST_USERNAME";
38
39     @Test
40     public void shouldProvideCldsInfoFromContext() throws Exception {
41
42         // given
43         CldsService serviceBase = mock(CldsService.class);
44         when(serviceBase.getUserName()).thenReturn(TEST_USERNAME);
45         when(serviceBase.isAuthorizedNoException(any())).thenReturn(true);
46         CldsInfoProvider cldsInfoProvider = new CldsInfoProvider(serviceBase);
47
48         // when
49         CldsInfo cldsInfo = cldsInfoProvider.getCldsInfo();
50
51         // then
52         assertThat(cldsInfo.getUserName()).isEqualTo(TEST_USERNAME);
53         assertThat(cldsInfo.isPermissionReadCl()).isTrue();
54         assertThat(cldsInfo.isPermissionReadTemplate()).isTrue();
55         assertThat(cldsInfo.isPermissionUpdateCl()).isTrue();
56         assertThat(cldsInfo.isPermissionUpdateTemplate()).isTrue();
57         assertThat(cldsInfo.isPermissionReadTosca()).isTrue();
58         assertThat(cldsInfo.isPermissionUpdateTosca()).isTrue();
59     }
60 }