diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2023-05-02 13:44:15 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-05-03 20:02:58 +0000 |
commit | e0202e205709f1b06b56f7f108b12476860412d4 (patch) | |
tree | 97c1390c94211346e23ef8e1c479b8d8c5cbf84b /sonar-plugin-api-impl | |
parent | 0f7a9234de7d0601f17d48ca0b16c270f1da380c (diff) | |
download | sonarqube-e0202e205709f1b06b56f7f108b12476860412d4.tar.gz sonarqube-e0202e205709f1b06b56f7f108b12476860412d4.zip |
SONAR-19014 Don't rely on plugin APIs list of static resources
Diffstat (limited to 'sonar-plugin-api-impl')
-rw-r--r-- | sonar-plugin-api-impl/src/main/java/org/sonar/api/impl/ws/StaticResources.java | 37 | ||||
-rw-r--r-- | sonar-plugin-api-impl/src/test/java/org/sonar/api/impl/ws/StaticResourcesTest.java | 31 |
2 files changed, 68 insertions, 0 deletions
diff --git a/sonar-plugin-api-impl/src/main/java/org/sonar/api/impl/ws/StaticResources.java b/sonar-plugin-api-impl/src/main/java/org/sonar/api/impl/ws/StaticResources.java new file mode 100644 index 00000000000..30c98254bb9 --- /dev/null +++ b/sonar-plugin-api-impl/src/main/java/org/sonar/api/impl/ws/StaticResources.java @@ -0,0 +1,37 @@ +/* + * SonarQube + * Copyright (C) 2009-2023 SonarSource SA + * mailto:info AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +package org.sonar.api.impl.ws; + +import java.util.Collection; +import java.util.List; + +public class StaticResources { + private static final Collection<String> STATIC_RESOURCES = List.of("*.css", "*.css.map", "*.ico", "*.png", + "*.jpg", "*.jpeg", "*.gif", "*.svg", "*.js", "*.js.map", "*.pdf", "/json/*", "*.woff2", "/static/*", + "/robots.txt", "/favicon.ico", "/apple-touch-icon*", "/mstile*"); + + private StaticResources() { + // only static + } + + public static Collection<String> patterns() { + return STATIC_RESOURCES; + } +} diff --git a/sonar-plugin-api-impl/src/test/java/org/sonar/api/impl/ws/StaticResourcesTest.java b/sonar-plugin-api-impl/src/test/java/org/sonar/api/impl/ws/StaticResourcesTest.java new file mode 100644 index 00000000000..5a9e483b5ca --- /dev/null +++ b/sonar-plugin-api-impl/src/test/java/org/sonar/api/impl/ws/StaticResourcesTest.java @@ -0,0 +1,31 @@ +/* + * SonarQube + * Copyright (C) 2009-2023 SonarSource SA + * mailto:info AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +package org.sonar.api.impl.ws; + +import org.junit.Test; + +import static org.assertj.core.api.Assertions.assertThat; + +public class StaticResourcesTest { + @Test + public void patterns_shouldNotBeEmpty() { + assertThat(StaticResources.patterns()).isNotEmpty(); + } +}
\ No newline at end of file |