41b1fbeb53c1ed62ccde43b734e190a6cedc5e9f
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.clamp.controlloop.participant.kubernetes.helm;
23
24 import static org.assertj.core.api.Assertions.assertThat;
25 import static org.assertj.core.api.Assertions.assertThatThrownBy;
26 import static org.junit.Assert.assertNull;
27 import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
28 import static org.junit.jupiter.api.Assertions.assertNotNull;
29 import static org.mockito.ArgumentMatchers.any;
30 import static org.mockito.Mockito.doReturn;
31 import static org.mockito.Mockito.mockStatic;
32
33 import java.io.File;
34 import java.io.IOException;
35 import java.nio.file.Path;
36 import java.util.List;
37 import org.junit.jupiter.api.AfterAll;
38 import org.junit.jupiter.api.BeforeAll;
39 import org.junit.jupiter.api.Test;
40 import org.junit.jupiter.api.extension.ExtendWith;
41 import org.mockito.InjectMocks;
42 import org.mockito.Mock;
43 import org.mockito.MockedStatic;
44 import org.mockito.Mockito;
45 import org.mockito.Spy;
46 import org.onap.policy.clamp.controlloop.participant.kubernetes.exception.ServiceException;
47 import org.onap.policy.clamp.controlloop.participant.kubernetes.models.ChartInfo;
48 import org.onap.policy.clamp.controlloop.participant.kubernetes.models.ChartList;
49 import org.onap.policy.clamp.controlloop.participant.kubernetes.service.ChartStore;
50 import org.onap.policy.common.utils.coder.Coder;
51 import org.onap.policy.common.utils.coder.CoderException;
52 import org.onap.policy.common.utils.coder.StandardCoder;
53 import org.springframework.test.context.junit.jupiter.SpringExtension;
54 import org.springframework.util.FileSystemUtils;
55
56
57 @ExtendWith(SpringExtension.class)
58 class HelmClientTest {
59
60     private static final Coder CODER = new StandardCoder();
61     private static final String CHART_INFO_YAML = "src/test/resources/ChartList.json";
62     private static List<ChartInfo> charts;
63
64     @InjectMocks
65     @Spy
66     private HelmClient helmClient = new HelmClient();
67
68     @Mock
69     ChartStore chartStore;
70
71     private static MockedStatic<HelmClient> mockedClient;
72
73     @BeforeAll
74     static void init() throws CoderException {
75         charts = CODER.decode(new File(CHART_INFO_YAML), ChartList.class).getCharts();
76         //Mock static method for bash command execution
77         mockedClient = mockStatic(HelmClient.class);
78     }
79
80     @AfterAll
81     public static void close() throws IOException {
82         mockedClient.close();
83         FileSystemUtils.deleteRecursively(Path.of("target/tmp"));
84     }
85
86     @Test
87     void test_installChart() throws IOException {
88         mockedClient.when(() -> HelmClient.executeCommand(any()))
89             .thenReturn("success");
90         doReturn(new File("/target/tmp/override.yaml")).when(chartStore)
91             .getOverrideFile(any());
92         var chartinfo = charts.get(0);
93         assertDoesNotThrow(() -> helmClient.installChart(chartinfo));
94         chartinfo.setNamespace("");
95         assertDoesNotThrow(() -> helmClient.installChart(chartinfo));
96     }
97
98     @Test
99     void test_findChartRepository() throws IOException, ServiceException {
100         String tmpPath = "target/tmp/dummyChart/1.0/";
101         mockedClient.when(() -> HelmClient.executeCommand(Mockito.any()))
102             .thenReturn("nginx-stable/nginx-ingress\t0.9.3\t1.11.3"
103                 + " \tNGINX Ingress Controller");
104         String configuredRepo = helmClient.findChartRepository(charts.get(1));
105         assertThat(configuredRepo).isEqualTo("nginx-stable");
106
107         File tmpFile = new File(tmpPath + charts.get(1).getChartId().getName());
108         tmpFile.mkdirs();
109         doReturn(Path.of(tmpPath)).when(chartStore).getAppPath(charts.get(1).getChartId());
110
111         doReturn(null).when(helmClient).verifyConfiguredRepo(charts.get(1));
112
113         String localRepoName = helmClient.findChartRepository(charts.get(1));
114         assertNotNull(localRepoName);
115         assertThat(localRepoName).endsWith(charts.get(0).getChartId().getVersion());
116     }
117
118     @Test
119     void test_uninstallChart() throws ServiceException {
120         helmClient.uninstallChart(charts.get(0));
121         mockedClient.when(() -> HelmClient.executeCommand(any())).thenThrow(new ServiceException("error in execution"));
122
123         assertThatThrownBy(() -> helmClient.uninstallChart(charts.get(0)))
124             .isInstanceOf(ServiceException.class);
125     }
126
127     @Test
128     void test_verifyConfiguredRepoForInvalidChart() throws IOException, ServiceException {
129         mockedClient.when(() -> HelmClient.executeCommand(Mockito.any()))
130             .thenReturn("");
131         String configuredRepo = helmClient.verifyConfiguredRepo(charts.get(1));
132         assertNull(configuredRepo);
133     }
134
135 }