Search in sources :

Example 1 with ProgressMonitor

use of org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor in project sonarlint-core by SonarSource.

the class ProjectListDownloaderTests method update_modules_with_org.

@Test
void update_modules_with_org(@TempDir Path tempDir) {
    var serverProjectsStore = new ServerProjectsStore(new StorageFolder.Default(tempDir));
    mockServer.addResponseFromResource("/api/components/search.protobuf?qualifiers=TRK&organization=myOrg&ps=500&p=1", "/update/searchmodulesp1.pb");
    var moduleListUpdate = new ProjectListDownloader(mockServer.serverApiHelper("myOrg"), serverProjectsStore);
    moduleListUpdate.fetch(new ProgressMonitor(null));
    var moduleList = ProtobufUtil.readFile(tempDir.resolve(ServerProjectsStore.PROJECT_LIST_PB), ProjectList.parser());
    assertThat(moduleList.getProjectsByKeyMap()).hasSize(282);
}
Also used : ProgressMonitor(org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor) ServerProjectsStore(org.sonarsource.sonarlint.core.container.storage.ServerProjectsStore) StorageFolder(org.sonarsource.sonarlint.core.container.storage.StorageFolder) Test(org.junit.jupiter.api.Test)

Example 2 with ProgressMonitor

use of org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor in project sonarlint-core by SonarSource.

the class ProjectListDownloaderTests method update_modules.

@Test
void update_modules(@TempDir Path tempDir) {
    var serverProjectsStore = new ServerProjectsStore(new StorageFolder.Default(tempDir));
    mockServer.addResponseFromResource("/api/components/search.protobuf?qualifiers=TRK&ps=500&p=1", "/update/searchmodulesp1.pb");
    var moduleListUpdate = new ProjectListDownloader(mockServer.serverApiHelper(), serverProjectsStore);
    moduleListUpdate.fetch(new ProgressMonitor(null));
    var moduleList = ProtobufUtil.readFile(tempDir.resolve(ServerProjectsStore.PROJECT_LIST_PB), ProjectList.parser());
    assertThat(moduleList.getProjectsByKeyMap()).hasSize(282);
}
Also used : ProgressMonitor(org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor) ServerProjectsStore(org.sonarsource.sonarlint.core.container.storage.ServerProjectsStore) StorageFolder(org.sonarsource.sonarlint.core.container.storage.StorageFolder) Test(org.junit.jupiter.api.Test)

Example 3 with ProgressMonitor

use of org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor in project sonarlint-core by SonarSource.

the class PluginsSynchronizerTests method should_not_synchronize_an_up_to_date_plugin.

@Test
void should_not_synchronize_an_up_to_date_plugin(@TempDir Path tmp) throws Exception {
    var dest = tmp.resolve("destDir");
    Files.createDirectory(dest);
    mockServer.addStringResponse("/api/plugins/installed", "{\"plugins\": [" + "{\"key\": \"java\", \"hash\": \"de5308f43260d357acc97712ce4c5475\", \"filename\": \"sonar-java-plugin-5.13.1.18282.jar\", \"sonarLintSupported\": true}" + "]}");
    mockServer.addStringResponse("/api/plugins/download?plugin=java", "content-java");
    underTest = new PluginsSynchronizer(Set.of(Language.JAVA), new PluginsStorage(dest), emptySet());
    underTest.synchronize(new ServerApi(mockServer.serverApiHelper()), new ProgressMonitor(null));
    mockServer.removeResponse("/api/plugins/download?plugin=java");
    var anyPluginUpdated = underTest.synchronize(new ServerApi(mockServer.serverApiHelper()), new ProgressMonitor(null));
    assertThat(anyPluginUpdated).isFalse();
}
Also used : ProgressMonitor(org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor) ServerApi(org.sonarsource.sonarlint.core.serverapi.ServerApi) Test(org.junit.jupiter.api.Test)

Example 4 with ProgressMonitor

use of org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor in project sonarlint-core by SonarSource.

the class PluginsSynchronizerTests method should_not_synchronize_plugins_that_do_not_support_sonarlint.

@Test
void should_not_synchronize_plugins_that_do_not_support_sonarlint(@TempDir Path dest) {
    mockServer.addStringResponse("/api/plugins/installed", "{\"plugins\": [" + "{\"key\": \"java\", \"hash\": \"de5308f43260d357acc97712ce4c5475\", \"filename\": \"sonar-java-plugin-5.13.1.18282.jar\", \"sonarLintSupported\": false}" + "]}");
    underTest = new PluginsSynchronizer(Set.of(Language.JAVA), new PluginsStorage(dest), Set.of());
    var anyPluginUpdated = underTest.synchronize(new ServerApi(mockServer.serverApiHelper()), new ProgressMonitor(null));
    assertThat(dest.resolve("plugin_references.pb")).doesNotExist();
    assertThat(dest.resolve("sonar-java-plugin-5.13.1.18282.jar")).doesNotExist();
    assertThat(anyPluginUpdated).isFalse();
}
Also used : ProgressMonitor(org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor) ServerApi(org.sonarsource.sonarlint.core.serverapi.ServerApi) Test(org.junit.jupiter.api.Test)

Example 5 with ProgressMonitor

use of org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor in project sonarlint-core by SonarSource.

the class PluginsSynchronizerTests method should_synchronize_unknown_plugins_for_custom_rules.

@Test
void should_synchronize_unknown_plugins_for_custom_rules(@TempDir Path tmp) {
    var dest = tmp.resolve("destDir");
    mockServer.addStringResponse("/api/plugins/installed", "{\"plugins\": [" + "{\"key\": \"java-custom\", \"hash\": \"de5308f43260d357acc97712ce4c5475\", \"filename\": \"java-custom-plugin-4.3.0.1456.jar\", \"sonarLintSupported\": true}" + "]}");
    mockServer.addStringResponse("/api/plugins/download?plugin=java-custom", "content-java-custom");
    underTest = new PluginsSynchronizer(Set.of(Language.JS), new PluginsStorage(dest), emptySet());
    var anyPluginUpdated = underTest.synchronize(new ServerApi(mockServer.serverApiHelper()), new ProgressMonitor(null));
    var references = ProtobufUtil.readFile(dest.resolve("plugin_references.pb"), PluginReferences.parser());
    assertThat(references.getPluginsByKeyMap().values()).extracting("key", "hash", "filename").containsOnly(tuple("java-custom", "de5308f43260d357acc97712ce4c5475", "java-custom-plugin-4.3.0.1456.jar"));
    assertThat(dest.resolve("java-custom-plugin-4.3.0.1456.jar")).hasContent("content-java-custom");
    assertThat(anyPluginUpdated).isTrue();
}
Also used : ProgressMonitor(org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor) ServerApi(org.sonarsource.sonarlint.core.serverapi.ServerApi) Test(org.junit.jupiter.api.Test)

Aggregations

ProgressMonitor (org.sonarsource.sonarlint.core.commons.progress.ProgressMonitor)20 Test (org.junit.jupiter.api.Test)14 ServerApi (org.sonarsource.sonarlint.core.serverapi.ServerApi)12 ClientProgressMonitor (org.sonarsource.sonarlint.core.commons.progress.ClientProgressMonitor)5 ServerApiHelper (org.sonarsource.sonarlint.core.serverapi.ServerApiHelper)4 AnalysisResults (org.sonarsource.sonarlint.core.analysis.api.AnalysisResults)2 AnalyzeCommand (org.sonarsource.sonarlint.core.analysis.command.AnalyzeCommand)2 SonarLintWrappedException (org.sonarsource.sonarlint.core.client.api.exceptions.SonarLintWrappedException)2 StorageException (org.sonarsource.sonarlint.core.client.api.exceptions.StorageException)2 ServerProjectsStore (org.sonarsource.sonarlint.core.container.storage.ServerProjectsStore)2 StorageFolder (org.sonarsource.sonarlint.core.container.storage.StorageFolder)2 Optional (java.util.Optional)1 CompletableFuture (java.util.concurrent.CompletableFuture)1 DefaultClientIssue (org.sonarsource.sonarlint.core.client.api.common.analysis.DefaultClientIssue)1 UpdateResult (org.sonarsource.sonarlint.core.client.api.connected.UpdateResult)1 DownloadException (org.sonarsource.sonarlint.core.client.api.exceptions.DownloadException)1 AuthenticationChecker (org.sonarsource.sonarlint.core.serverapi.authentication.AuthenticationChecker)1 ServerOrganization (org.sonarsource.sonarlint.core.serverapi.organization.ServerOrganization)1 DefaultValidationResult (org.sonarsource.sonarlint.core.serverapi.system.DefaultValidationResult)1 ServerVersionAndStatusChecker (org.sonarsource.sonarlint.core.serverapi.system.ServerVersionAndStatusChecker)1