Search in sources :

Example 1 with IssueStoreFactory

use of org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory in project sonarlint-core by SonarSource.

the class ModuleStorageUpdateExecutorTest method test_server_issues_are_downloaded_and_stored.

@Test
public void test_server_issues_are_downloaded_and_stored() throws IOException {
    WsClientTestUtils.addResponse(wsClient, getQualityProfileUrl(), newEmptyStream());
    when(storageReader.readQProfiles()).thenReturn(QProfiles.getDefaultInstance());
    when(storagePaths.getModuleStorageRoot(MODULE_KEY_WITH_BRANCH)).thenReturn(temp.newFolder().toPath());
    ScannerInput.ServerIssue fileIssue1 = ScannerInput.ServerIssue.newBuilder().setModuleKey("someModuleKey").setPath("some/path").setRuleKey("squid:x").build();
    ScannerInput.ServerIssue fileIssue2 = ScannerInput.ServerIssue.newBuilder().setModuleKey("someModuleKey").setPath("some/path").setRuleKey("squid:y").build();
    ScannerInput.ServerIssue anotherFileIssue = ScannerInput.ServerIssue.newBuilder().setModuleKey("someModuleKey").setPath("another/path").build();
    ScannerInput.ServerIssue notDownloadedIssue = ScannerInput.ServerIssue.newBuilder().setModuleKey("someModuleKey").setPath("yet/another/path").build();
    IssueDownloader issueDownloader = moduleKey -> Arrays.asList(fileIssue1, fileIssue2, anotherFileIssue);
    moduleUpdate = new ModuleStorageUpdateExecutor(storageReader, storagePaths, wsClient, issueDownloader, issueStoreFactory, tempFolder, moduleConfigurationDownloader);
    moduleUpdate.update(MODULE_KEY_WITH_BRANCH, new ProgressWrapper(null));
    assertThat(issueStore.load(createFileKey(fileIssue1))).containsOnly(fileIssue1, fileIssue2);
    assertThat(issueStore.load(createFileKey(anotherFileIssue))).containsOnly(anotherFileIssue);
    assertThat(issueStore.load(createFileKey(notDownloadedIssue))).isEmpty();
}
Also used : ScannerInput(org.sonar.scanner.protocol.input.ScannerInput) ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Arrays(java.util.Arrays) SonarLintWsClient(org.sonarsource.sonarlint.core.container.connected.SonarLintWsClient) ArgumentMatchers.eq(org.mockito.ArgumentMatchers.eq) IssueStoreFactory(org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) RunWith(org.junit.runner.RunWith) Parameters(org.junit.runners.Parameterized.Parameters) HashMap(java.util.HashMap) StoragePaths(org.sonarsource.sonarlint.core.container.storage.StoragePaths) Map(java.util.Map) QProfiles(org.sonarsource.sonarlint.core.proto.Sonarlint.QProfiles) Path(java.nio.file.Path) ExpectedException(org.junit.rules.ExpectedException) ModuleConfigurationDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleConfigurationDownloader) Nullable(javax.annotation.Nullable) Parameterized(org.junit.runners.Parameterized) TempFolder(org.sonar.api.utils.TempFolder) Before(org.junit.Before) IssueStore(org.sonarsource.sonarlint.core.container.connected.IssueStore) GlobalProperties(org.sonarsource.sonarlint.core.proto.Sonarlint.GlobalProperties) ProgressWrapper(org.sonarsource.sonarlint.core.util.ProgressWrapper) ModuleQualityProfilesDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleQualityProfilesDownloader) IssueDownloader(org.sonarsource.sonarlint.core.container.connected.update.IssueDownloader) SettingsDownloader(org.sonarsource.sonarlint.core.container.connected.update.SettingsDownloader) StorageReader(org.sonarsource.sonarlint.core.container.storage.StorageReader) ProtobufUtilTest.newEmptyStream(org.sonarsource.sonarlint.core.container.storage.ProtobufUtilTest.newEmptyStream) IOException(java.io.IOException) Test(org.junit.Test) WsClientTestUtils(org.sonarsource.sonarlint.core.WsClientTestUtils) ModuleConfiguration(org.sonarsource.sonarlint.core.proto.Sonarlint.ModuleConfiguration) Mockito.when(org.mockito.Mockito.when) ScannerInput(org.sonar.scanner.protocol.input.ScannerInput) Assertions.entry(org.assertj.core.api.Assertions.entry) File(java.io.File) InMemoryIssueStore(org.sonarsource.sonarlint.core.container.connected.InMemoryIssueStore) Rule(org.junit.Rule) StringUtils(org.sonarsource.sonarlint.core.util.StringUtils) ProtobufUtil(org.sonarsource.sonarlint.core.container.storage.ProtobufUtil) IssueUtils.createFileKey(org.sonarsource.sonarlint.core.container.connected.update.IssueUtils.createFileKey) ModuleHierarchyDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleHierarchyDownloader) ServerInfos(org.sonarsource.sonarlint.core.proto.Sonarlint.ServerInfos) Collections(java.util.Collections) TemporaryFolder(org.junit.rules.TemporaryFolder) Mockito.mock(org.mockito.Mockito.mock) ProgressWrapper(org.sonarsource.sonarlint.core.util.ProgressWrapper) IssueDownloader(org.sonarsource.sonarlint.core.container.connected.update.IssueDownloader) Test(org.junit.Test)

Example 2 with IssueStoreFactory

use of org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory in project sonarlint-core by SonarSource.

the class ModuleStorageUpdateExecutorTest method exception_ws_load_qps.

@Test
public void exception_ws_load_qps() throws IOException {
    when(wsClient.get(getQualityProfileUrl())).thenThrow(IOException.class);
    File destDir = temp.newFolder();
    QProfiles.Builder builder = QProfiles.newBuilder();
    builder.putQprofilesByKey("java-empty-74333", QProfiles.QProfile.newBuilder().build());
    when(storageReader.readQProfiles()).thenReturn(builder.build());
    when(storagePaths.getModuleStorageRoot(MODULE_KEY_WITH_BRANCH)).thenReturn(destDir.toPath());
    moduleUpdate = new ModuleStorageUpdateExecutor(storageReader, storagePaths, wsClient, (key) -> Collections.emptyList(), issueStoreFactory, tempFolder, moduleConfigurationDownloader);
    exception.expect(IllegalStateException.class);
    exception.expectMessage("Failed to load module quality profiles");
    moduleUpdate.update(MODULE_KEY_WITH_BRANCH, new ProgressWrapper(null));
}
Also used : ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Arrays(java.util.Arrays) SonarLintWsClient(org.sonarsource.sonarlint.core.container.connected.SonarLintWsClient) ArgumentMatchers.eq(org.mockito.ArgumentMatchers.eq) IssueStoreFactory(org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) RunWith(org.junit.runner.RunWith) Parameters(org.junit.runners.Parameterized.Parameters) HashMap(java.util.HashMap) StoragePaths(org.sonarsource.sonarlint.core.container.storage.StoragePaths) Map(java.util.Map) QProfiles(org.sonarsource.sonarlint.core.proto.Sonarlint.QProfiles) Path(java.nio.file.Path) ExpectedException(org.junit.rules.ExpectedException) ModuleConfigurationDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleConfigurationDownloader) Nullable(javax.annotation.Nullable) Parameterized(org.junit.runners.Parameterized) TempFolder(org.sonar.api.utils.TempFolder) Before(org.junit.Before) IssueStore(org.sonarsource.sonarlint.core.container.connected.IssueStore) GlobalProperties(org.sonarsource.sonarlint.core.proto.Sonarlint.GlobalProperties) ProgressWrapper(org.sonarsource.sonarlint.core.util.ProgressWrapper) ModuleQualityProfilesDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleQualityProfilesDownloader) IssueDownloader(org.sonarsource.sonarlint.core.container.connected.update.IssueDownloader) SettingsDownloader(org.sonarsource.sonarlint.core.container.connected.update.SettingsDownloader) StorageReader(org.sonarsource.sonarlint.core.container.storage.StorageReader) ProtobufUtilTest.newEmptyStream(org.sonarsource.sonarlint.core.container.storage.ProtobufUtilTest.newEmptyStream) IOException(java.io.IOException) Test(org.junit.Test) WsClientTestUtils(org.sonarsource.sonarlint.core.WsClientTestUtils) ModuleConfiguration(org.sonarsource.sonarlint.core.proto.Sonarlint.ModuleConfiguration) Mockito.when(org.mockito.Mockito.when) ScannerInput(org.sonar.scanner.protocol.input.ScannerInput) Assertions.entry(org.assertj.core.api.Assertions.entry) File(java.io.File) InMemoryIssueStore(org.sonarsource.sonarlint.core.container.connected.InMemoryIssueStore) Rule(org.junit.Rule) StringUtils(org.sonarsource.sonarlint.core.util.StringUtils) ProtobufUtil(org.sonarsource.sonarlint.core.container.storage.ProtobufUtil) IssueUtils.createFileKey(org.sonarsource.sonarlint.core.container.connected.update.IssueUtils.createFileKey) ModuleHierarchyDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleHierarchyDownloader) ServerInfos(org.sonarsource.sonarlint.core.proto.Sonarlint.ServerInfos) Collections(java.util.Collections) TemporaryFolder(org.junit.rules.TemporaryFolder) Mockito.mock(org.mockito.Mockito.mock) ProgressWrapper(org.sonarsource.sonarlint.core.util.ProgressWrapper) File(java.io.File) QProfiles(org.sonarsource.sonarlint.core.proto.Sonarlint.QProfiles) Test(org.junit.Test)

Example 3 with IssueStoreFactory

use of org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory in project sonarlint-core by SonarSource.

the class ModuleStorageUpdateExecutorTest method setUp.

@Before
public void setUp() throws IOException {
    wsClient = WsClientTestUtils.createMockWithStreamResponse(getQualityProfileUrl(), "/update/qualityprofiles_project.pb");
    when(wsClient.getOrganizationKey()).thenReturn(organizationKey);
    WsClientTestUtils.addResponse(wsClient, "/api/properties?format=json&resource=" + MODULE_KEY_WITH_BRANCH_URLENCODED, "[{\"key\":\"sonar.qualitygate\",\"value\":\"1\",\"values\": []}," + "{\"key\":\"sonar.core.version\",\"value\":\"5.5-SNAPSHOT\"}," + "{\"key\":\"sonar.java.someProp\",\"value\":\"foo\"}]");
    WsClientTestUtils.addResponse(wsClient, "/batch/issues?key=" + MODULE_KEY_WITH_BRANCH_URLENCODED, newEmptyStream());
    File tempDir = temp.newFolder();
    tempFolder = mock(TempFolder.class);
    when(tempFolder.newDir()).thenReturn(tempDir);
    storagePaths = mock(StoragePaths.class);
    storageReader = mock(StorageReader.class);
    org.sonarsource.sonarlint.core.proto.Sonarlint.GlobalProperties.Builder propBuilder = GlobalProperties.newBuilder();
    propBuilder.getMutableProperties().put("sonar.qualitygate", "2");
    propBuilder.getMutableProperties().put("sonar.core.version", "5.5-SNAPSHOT");
    when(storageReader.readGlobalProperties()).thenReturn(propBuilder.build());
    when(storageReader.readServerInfos()).thenReturn(ServerInfos.newBuilder().build());
    moduleHierarchy = mock(ModuleHierarchyDownloader.class);
    Map<String, String> modulesPath = new HashMap<>();
    modulesPath.put(MODULE_KEY_WITH_BRANCH, "");
    modulesPath.put(MODULE_KEY_WITH_BRANCH + "child1", "child 1");
    when(moduleHierarchy.fetchModuleHierarchy(eq(MODULE_KEY_WITH_BRANCH), any(ProgressWrapper.class))).thenReturn(modulesPath);
    issueStoreFactory = mock(IssueStoreFactory.class);
    issueStore = new InMemoryIssueStore();
    when(issueStoreFactory.apply(any(Path.class))).thenReturn(issueStore);
    moduleConfigurationDownloader = new ModuleConfigurationDownloader(moduleHierarchy, new ModuleQualityProfilesDownloader(wsClient), mock(SettingsDownloader.class));
}
Also used : StorageReader(org.sonarsource.sonarlint.core.container.storage.StorageReader) ProgressWrapper(org.sonarsource.sonarlint.core.util.ProgressWrapper) Path(java.nio.file.Path) HashMap(java.util.HashMap) InMemoryIssueStore(org.sonarsource.sonarlint.core.container.connected.InMemoryIssueStore) ModuleQualityProfilesDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleQualityProfilesDownloader) GlobalProperties(org.sonarsource.sonarlint.core.proto.Sonarlint.GlobalProperties) TempFolder(org.sonar.api.utils.TempFolder) ModuleConfigurationDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleConfigurationDownloader) File(java.io.File) StoragePaths(org.sonarsource.sonarlint.core.container.storage.StoragePaths) ModuleHierarchyDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleHierarchyDownloader) IssueStoreFactory(org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory) Before(org.junit.Before)

Example 4 with IssueStoreFactory

use of org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory in project sonarlint-core by SonarSource.

the class ModuleStorageUpdateExecutorTest method test_error_if_qp_doesnt_exist.

@Test
public void test_error_if_qp_doesnt_exist() throws IOException {
    File destDir = temp.newFolder();
    QProfiles.Builder builder = QProfiles.newBuilder();
    Map<String, QProfiles.QProfile> mutableQprofilesByKey = builder.getMutableQprofilesByKey();
    mutableQprofilesByKey.put("cs-sonar-way-58886", QProfiles.QProfile.newBuilder().build());
    mutableQprofilesByKey.put("java-empty-74333", QProfiles.QProfile.newBuilder().build());
    mutableQprofilesByKey.put("xoo2-basic-34035", QProfiles.QProfile.newBuilder().build());
    when(storageReader.readQProfiles()).thenReturn(builder.build());
    when(storagePaths.getModuleStorageRoot(MODULE_KEY_WITH_BRANCH)).thenReturn(destDir.toPath());
    moduleUpdate = new ModuleStorageUpdateExecutor(storageReader, storagePaths, wsClient, (key) -> Collections.emptyList(), issueStoreFactory, tempFolder, moduleConfigurationDownloader);
    exception.expect(IllegalStateException.class);
    exception.expectMessage("is associated to quality profile 'js-sonar-way-60746' that is not in the storage");
    moduleUpdate.update(MODULE_KEY_WITH_BRANCH, new ProgressWrapper(null));
}
Also used : ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Arrays(java.util.Arrays) SonarLintWsClient(org.sonarsource.sonarlint.core.container.connected.SonarLintWsClient) ArgumentMatchers.eq(org.mockito.ArgumentMatchers.eq) IssueStoreFactory(org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) RunWith(org.junit.runner.RunWith) Parameters(org.junit.runners.Parameterized.Parameters) HashMap(java.util.HashMap) StoragePaths(org.sonarsource.sonarlint.core.container.storage.StoragePaths) Map(java.util.Map) QProfiles(org.sonarsource.sonarlint.core.proto.Sonarlint.QProfiles) Path(java.nio.file.Path) ExpectedException(org.junit.rules.ExpectedException) ModuleConfigurationDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleConfigurationDownloader) Nullable(javax.annotation.Nullable) Parameterized(org.junit.runners.Parameterized) TempFolder(org.sonar.api.utils.TempFolder) Before(org.junit.Before) IssueStore(org.sonarsource.sonarlint.core.container.connected.IssueStore) GlobalProperties(org.sonarsource.sonarlint.core.proto.Sonarlint.GlobalProperties) ProgressWrapper(org.sonarsource.sonarlint.core.util.ProgressWrapper) ModuleQualityProfilesDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleQualityProfilesDownloader) IssueDownloader(org.sonarsource.sonarlint.core.container.connected.update.IssueDownloader) SettingsDownloader(org.sonarsource.sonarlint.core.container.connected.update.SettingsDownloader) StorageReader(org.sonarsource.sonarlint.core.container.storage.StorageReader) ProtobufUtilTest.newEmptyStream(org.sonarsource.sonarlint.core.container.storage.ProtobufUtilTest.newEmptyStream) IOException(java.io.IOException) Test(org.junit.Test) WsClientTestUtils(org.sonarsource.sonarlint.core.WsClientTestUtils) ModuleConfiguration(org.sonarsource.sonarlint.core.proto.Sonarlint.ModuleConfiguration) Mockito.when(org.mockito.Mockito.when) ScannerInput(org.sonar.scanner.protocol.input.ScannerInput) Assertions.entry(org.assertj.core.api.Assertions.entry) File(java.io.File) InMemoryIssueStore(org.sonarsource.sonarlint.core.container.connected.InMemoryIssueStore) Rule(org.junit.Rule) StringUtils(org.sonarsource.sonarlint.core.util.StringUtils) ProtobufUtil(org.sonarsource.sonarlint.core.container.storage.ProtobufUtil) IssueUtils.createFileKey(org.sonarsource.sonarlint.core.container.connected.update.IssueUtils.createFileKey) ModuleHierarchyDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleHierarchyDownloader) ServerInfos(org.sonarsource.sonarlint.core.proto.Sonarlint.ServerInfos) Collections(java.util.Collections) TemporaryFolder(org.junit.rules.TemporaryFolder) Mockito.mock(org.mockito.Mockito.mock) ProgressWrapper(org.sonarsource.sonarlint.core.util.ProgressWrapper) File(java.io.File) QProfiles(org.sonarsource.sonarlint.core.proto.Sonarlint.QProfiles) Test(org.junit.Test)

Example 5 with IssueStoreFactory

use of org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory in project sonarlint-core by SonarSource.

the class PartialUpdater method create.

public static PartialUpdater create(StorageReader storageReader, StoragePaths storagePaths, ServerConfiguration serverConfig, IssueStoreReader issueStoreReader) {
    SonarLintWsClient client = new SonarLintWsClient(serverConfig);
    IssueStoreFactory issueStoreFactory = new IssueStoreFactory();
    IssueDownloader downloader = new IssueDownloaderImpl(client);
    ModuleListDownloader moduleListDownloader = new ModuleListDownloader(client);
    return new PartialUpdater(issueStoreFactory, downloader, storageReader, storagePaths, issueStoreReader, moduleListDownloader);
}
Also used : IssueDownloader(org.sonarsource.sonarlint.core.container.connected.update.IssueDownloader) IssueDownloaderImpl(org.sonarsource.sonarlint.core.container.connected.update.IssueDownloaderImpl) ModuleListDownloader(org.sonarsource.sonarlint.core.container.connected.update.ModuleListDownloader) IssueStoreFactory(org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory) SonarLintWsClient(org.sonarsource.sonarlint.core.container.connected.SonarLintWsClient)

Aggregations

IssueStoreFactory (org.sonarsource.sonarlint.core.container.connected.IssueStoreFactory)7 Path (java.nio.file.Path)6 Before (org.junit.Before)6 InMemoryIssueStore (org.sonarsource.sonarlint.core.container.connected.InMemoryIssueStore)6 File (java.io.File)5 HashMap (java.util.HashMap)5 TempFolder (org.sonar.api.utils.TempFolder)5 SonarLintWsClient (org.sonarsource.sonarlint.core.container.connected.SonarLintWsClient)5 IssueDownloader (org.sonarsource.sonarlint.core.container.connected.update.IssueDownloader)5 ModuleConfigurationDownloader (org.sonarsource.sonarlint.core.container.connected.update.ModuleConfigurationDownloader)5 ModuleHierarchyDownloader (org.sonarsource.sonarlint.core.container.connected.update.ModuleHierarchyDownloader)5 ModuleQualityProfilesDownloader (org.sonarsource.sonarlint.core.container.connected.update.ModuleQualityProfilesDownloader)5 StoragePaths (org.sonarsource.sonarlint.core.container.storage.StoragePaths)5 IOException (java.io.IOException)4 Arrays (java.util.Arrays)4 Collections (java.util.Collections)4 Map (java.util.Map)4 Nullable (javax.annotation.Nullable)4 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)4 Assertions.entry (org.assertj.core.api.Assertions.entry)4