Browse Source

SONAR-22159 Modify the way the creation date is set in junit test

pull/3361/head
Matteo Mara 1 month ago
parent
commit
ff98ac8245

+ 11
- 0
sonar-scanner-engine/src/test/java/org/sonar/scanner/bootstrap/GlobalTempFolderProviderTest.java View File

@@ -67,6 +67,7 @@ class GlobalTempFolderProviderTest {
Path tmp = workingDir.resolve(".sonartmp_" + i);
Files.createDirectories(tmp);
setFileCreationDate(tmp, creationTime);
assumeCorrectFileCreationDate(tmp, creationTime);
}

underTest.provide(
@@ -76,6 +77,16 @@ class GlobalTempFolderProviderTest {
assertThat(workingDir.toFile().list()).hasSize(1);
}

// See SONAR-22159, the test started failing due to issues in setting the correct creation time on Cirrus, skipping the test if the problem
// happens
private void assumeCorrectFileCreationDate(Path tmp, long creationTime) throws IOException {
FileTime fileCreationTimeSet = Files.getFileAttributeView(tmp, BasicFileAttributeView.class).readAttributes().creationTime();
FileTime expectedCreationTime = FileTime.fromMillis(creationTime);

assumeTrue(expectedCreationTime.compareTo(fileCreationTimeSet) >= 0,
String.format("Incorrect creation date set on temporary file %s: %s set instead of %s", tmp.toAbsolutePath(), fileCreationTimeSet, expectedCreationTime));
}

@Test
void createTempFolderFromSonarHome(@TempDir Path sonarUserHomePath) throws Exception {
// with sonar home, it will be in {sonar.home}/.sonartmp

Loading…
Cancel
Save