]> source.dussan.org Git - sonarqube.git/blob
cf7fcca751019565b23367daed31d1691005420e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.scanner.mediumtest.log;
21
22 import java.util.Collections;
23 import java.util.Map;
24 import javax.annotation.Priority;
25 import org.junit.BeforeClass;
26 import org.junit.Test;
27 import org.sonar.api.utils.MessageException;
28 import org.sonar.batch.bootstrapper.Batch;
29 import org.sonar.batch.bootstrapper.EnvironmentInformation;
30 import org.sonar.scanner.repository.settings.GlobalSettingsLoader;
31 import org.springframework.beans.factory.UnsatisfiedDependencyException;
32
33 import static org.assertj.core.api.Assertions.assertThatThrownBy;
34
35 public class ExceptionHandlingMediumTest {
36
37   private Batch batch;
38   private static ErrorGlobalSettingsLoader loader;
39
40   @BeforeClass
41   public static void beforeClass() {
42     loader = new ErrorGlobalSettingsLoader();
43   }
44
45   public void setUp(boolean verbose) {
46     Batch.Builder builder = Batch.builder()
47       .setEnableLoggingConfiguration(true)
48       .addComponents(
49         loader,
50         new EnvironmentInformation("mediumTest", "1.0"));
51
52     if (verbose) {
53       builder.setBootstrapProperties(Collections.singletonMap("sonar.verbose", "true"));
54     }
55     batch = builder.build();
56   }
57
58   @Test
59   public void test() throws Exception {
60     setUp(false);
61     loader.withCause = false;
62
63     assertThatThrownBy(() -> batch.execute())
64       .isInstanceOf(MessageException.class)
65       .hasMessage("Error loading settings");
66   }
67
68   @Test
69   public void testWithCause() throws Exception {
70     setUp(false);
71     loader.withCause = true;
72
73     assertThatThrownBy(() -> batch.execute())
74       .isInstanceOf(MessageException.class)
75       .hasMessage("Error loading settings")
76       .hasCauseInstanceOf(Throwable.class)
77       .hasRootCauseMessage("Code 401");
78   }
79
80   @Test
81   public void testWithVerbose() {
82     setUp(true);
83     assertThatThrownBy(() -> batch.execute())
84       .isInstanceOf(UnsatisfiedDependencyException.class)
85       .hasMessageContaining("Error loading settings");
86   }
87
88   @Priority(1)
89   private static class ErrorGlobalSettingsLoader implements GlobalSettingsLoader {
90     boolean withCause = false;
91
92     @Override
93     public Map<String, String> loadGlobalSettings() {
94       if (withCause) {
95         IllegalStateException cause = new IllegalStateException("Code 401");
96         throw MessageException.of("Error loading settings", cause);
97       } else {
98         throw MessageException.of("Error loading settings");
99       }
100     }
101   }
102 }