]> source.dussan.org Git - sonarqube.git/blob
cb018de8258cd08af97a9d8169b3dd38595b64ff
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 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.scan.filesystem;
21
22 import java.io.IOException;
23 import org.junit.Before;
24 import org.junit.Rule;
25 import org.junit.Test;
26 import org.junit.rules.TemporaryFolder;
27 import org.sonar.api.batch.fs.InputFile;
28 import org.sonar.api.batch.fs.InputModule;
29 import org.sonar.api.batch.fs.internal.TestInputFileBuilder;
30 import org.sonar.api.scan.filesystem.PathResolver;
31 import org.sonar.scanner.sensor.SensorStrategy;
32
33 import static org.assertj.core.api.Assertions.assertThat;
34 import static org.mockito.Matchers.any;
35 import static org.mockito.Matchers.eq;
36 import static org.mockito.Mockito.mock;
37 import static org.mockito.Mockito.verify;
38
39 public class ModuleInputComponentStoreTest {
40   @Rule
41   public TemporaryFolder temp = new TemporaryFolder();
42
43   private InputComponentStore componentStore;
44
45   private final String moduleKey = "dummy key";
46
47   @Before
48   public void setUp() throws IOException {
49     componentStore = new InputComponentStore(new PathResolver());
50     componentStore.put(TestInputFileBuilder.newDefaultInputModule(moduleKey, temp.newFolder()));
51   }
52
53   @Test
54   public void should_cache_files_by_filename() throws IOException {
55     ModuleInputComponentStore store = newModuleInputComponentStore();
56
57     String filename = "some name";
58     InputFile inputFile1 = new TestInputFileBuilder(moduleKey, "some/path/" + filename).build();
59     store.doAdd(inputFile1);
60
61     InputFile inputFile2 = new TestInputFileBuilder(moduleKey, "other/path/" + filename).build();
62     store.doAdd(inputFile2);
63
64     InputFile dummyInputFile = new TestInputFileBuilder(moduleKey, "some/path/Dummy.java").build();
65     store.doAdd(dummyInputFile);
66
67     assertThat(store.getFilesByName(filename)).containsExactlyInAnyOrder(inputFile1, inputFile2);
68   }
69
70   @Test
71   public void should_cache_files_by_extension() throws IOException {
72     ModuleInputComponentStore store = newModuleInputComponentStore();
73
74     InputFile inputFile1 = new TestInputFileBuilder(moduleKey, "some/path/Program.java").build();
75     store.doAdd(inputFile1);
76
77     InputFile inputFile2 = new TestInputFileBuilder(moduleKey, "other/path/Utils.java").build();
78     store.doAdd(inputFile2);
79
80     InputFile dummyInputFile = new TestInputFileBuilder(moduleKey, "some/path/NotJava.cpp").build();
81     store.doAdd(dummyInputFile);
82
83     assertThat(store.getFilesByExtension("java")).containsExactlyInAnyOrder(inputFile1, inputFile2);
84   }
85
86   @Test
87   public void should_not_cache_duplicates() throws IOException {
88     ModuleInputComponentStore store = newModuleInputComponentStore();
89
90     String ext = "java";
91     String filename = "Program." + ext;
92     InputFile inputFile = new TestInputFileBuilder(moduleKey, "some/path/" + filename).build();
93     store.doAdd(inputFile);
94     store.doAdd(inputFile);
95     store.doAdd(inputFile);
96
97     assertThat(store.getFilesByName(filename)).containsExactly(inputFile);
98     assertThat(store.getFilesByExtension(ext)).containsExactly(inputFile);
99   }
100
101   @Test
102   public void should_get_empty_iterable_on_cache_miss() {
103     ModuleInputComponentStore store = newModuleInputComponentStore();
104
105     String ext = "java";
106     String filename = "Program." + ext;
107     InputFile inputFile = new TestInputFileBuilder(moduleKey, "some/path/" + filename).build();
108     store.doAdd(inputFile);
109
110     assertThat(store.getFilesByName("nonexistent")).isEmpty();
111     assertThat(store.getFilesByExtension("nonexistent")).isEmpty();
112   }
113
114   private ModuleInputComponentStore newModuleInputComponentStore() {
115     return new ModuleInputComponentStore(mock(InputModule.class), componentStore, mock(SensorStrategy.class));
116   }
117
118   @Test
119   public void should_find_module_components_with_non_global_strategy() {
120     InputComponentStore inputComponentStore = mock(InputComponentStore.class);
121     SensorStrategy strategy = new SensorStrategy();
122     ModuleInputComponentStore store = new ModuleInputComponentStore(mock(InputModule.class), inputComponentStore, strategy);
123
124     store.inputFiles();
125     verify(inputComponentStore).filesByModule(any(String.class));
126
127     String relativePath = "somepath";
128     store.inputFile(relativePath);
129     verify(inputComponentStore).getFile(any(String.class), eq(relativePath));
130
131     store.inputDir(relativePath);
132     verify(inputComponentStore).getDir(any(String.class), eq(relativePath));
133
134     store.languages();
135     verify(inputComponentStore).getLanguages(any(String.class));
136   }
137
138   @Test
139   public void should_find_all_components_with_global_strategy() {
140     InputComponentStore inputComponentStore = mock(InputComponentStore.class);
141     SensorStrategy strategy = new SensorStrategy();
142     ModuleInputComponentStore store = new ModuleInputComponentStore(mock(InputModule.class), inputComponentStore, strategy);
143
144     strategy.setGlobal(true);
145
146     store.inputFiles();
147     verify(inputComponentStore).allFiles();
148
149     String relativePath = "somepath";
150     store.inputFile(relativePath);
151     verify(inputComponentStore).getFile(relativePath);
152
153     store.inputDir(relativePath);
154     verify(inputComponentStore).getDir(relativePath);
155
156     store.languages();
157     verify(inputComponentStore).getLanguages();
158   }
159 }