From e0202e205709f1b06b56f7f108b12476860412d4 Mon Sep 17 00:00:00 2001 From: Duarte Meneses Date: Tue, 2 May 2023 13:44:15 -0500 Subject: SONAR-19014 Don't rely on plugin APIs list of static resources --- .../org/sonar/api/impl/ws/StaticResources.java | 37 ++++++++++++++++++++++ .../org/sonar/api/impl/ws/StaticResourcesTest.java | 31 ++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 sonar-plugin-api-impl/src/main/java/org/sonar/api/impl/ws/StaticResources.java create mode 100644 sonar-plugin-api-impl/src/test/java/org/sonar/api/impl/ws/StaticResourcesTest.java (limited to 'sonar-plugin-api-impl') 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 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 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 -- cgit v1.2.3