use of fr.inria.spirals.repairnator.process.inspectors.JobStatus in project repairnator by Spirals-Team.
the class TestInitRepoToPush method testInitRepoShouldRemoveNotificationInTravisYML.
@Test
public void testInitRepoShouldRemoveNotificationInTravisYML() throws IOException {
int buildId = 331637757;
RepairnatorConfig repairnatorConfig = RepairnatorConfig.getInstance();
repairnatorConfig.setClean(false);
repairnatorConfig.setPush(true);
Build build = BuildHelper.getBuildFromId(buildId, null);
assertThat(build, notNullValue());
assertThat(buildId, is(build.getId()));
Path tmpDirPath = Files.createTempDirectory("test_initRepoToPush");
File tmpDir = tmpDirPath.toFile();
tmpDir.deleteOnExit();
BuildToBeInspected toBeInspected = new BuildToBeInspected(build, null, ScannedBuildStatus.ONLY_FAIL, "");
ProjectInspector inspector = mock(ProjectInspector.class);
when(inspector.getWorkspace()).thenReturn(tmpDir.getAbsolutePath());
when(inspector.getRepoLocalPath()).thenReturn(tmpDir.getAbsolutePath() + "/repo");
when(inspector.getRepoToPushLocalPath()).thenReturn(tmpDir.getAbsolutePath() + "/repotopush");
when(inspector.getBuildToBeInspected()).thenReturn(toBeInspected);
when(inspector.getBuggyBuild()).thenReturn(build);
when(inspector.getGitHelper()).thenReturn(new GitHelper());
JobStatus jobStatus = new JobStatus(tmpDir.getAbsolutePath() + "/repo");
when(inspector.getJobStatus()).thenReturn(jobStatus);
CloneRepository cloneStep = new CloneRepository(inspector);
cloneStep.setNextStep(new CheckoutBuggyBuild(inspector)).setNextStep(new InitRepoToPush(inspector));
cloneStep.execute();
assertThat(jobStatus.getPushState(), is(PushState.REPO_INITIALIZED));
File bak = new File(tmpDir.getAbsolutePath() + "/repotopush/bak.travis.yml");
File travis = new File(tmpDir.getAbsolutePath() + "/repotopush/.travis.yml");
assertTrue(bak.exists());
assertTrue(travis.exists());
boolean detected = false;
List<String> lines = Files.readAllLines(travis.toPath());
for (String l : lines) {
if (l.contains("notification")) {
assertTrue(l.trim().startsWith("#"));
detected = true;
}
if (l.contains("script")) {
assertFalse(l.trim().startsWith("#"));
}
}
assertTrue(detected);
}
use of fr.inria.spirals.repairnator.process.inspectors.JobStatus in project repairnator by Spirals-Team.
the class TestInitRepoToPush method testInitRepoToPushSimpleCase.
@Test
public void testInitRepoToPushSimpleCase() throws IOException, GitAPIException, RepairnatorConfigException {
// surli/failingProject build
int buildId = 207924136;
RepairnatorConfig repairnatorConfig = RepairnatorConfig.getInstance();
repairnatorConfig.setClean(false);
repairnatorConfig.setPush(true);
Build build = BuildHelper.getBuildFromId(buildId, null);
assertThat(build, notNullValue());
assertThat(buildId, is(build.getId()));
Path tmpDirPath = Files.createTempDirectory("test_initRepoToPush");
File tmpDir = tmpDirPath.toFile();
tmpDir.deleteOnExit();
BuildToBeInspected toBeInspected = new BuildToBeInspected(build, null, ScannedBuildStatus.ONLY_FAIL, "");
ProjectInspector inspector = mock(ProjectInspector.class);
when(inspector.getWorkspace()).thenReturn(tmpDir.getAbsolutePath());
when(inspector.getRepoLocalPath()).thenReturn(tmpDir.getAbsolutePath() + "/repo");
when(inspector.getRepoToPushLocalPath()).thenReturn(tmpDir.getAbsolutePath() + "/repotopush");
when(inspector.getBuildToBeInspected()).thenReturn(toBeInspected);
when(inspector.getBuggyBuild()).thenReturn(build);
when(inspector.getGitHelper()).thenReturn(new GitHelper());
JobStatus jobStatus = new JobStatus(tmpDir.getAbsolutePath() + "/repo");
when(inspector.getJobStatus()).thenReturn(jobStatus);
CloneRepository cloneStep = new CloneRepository(inspector);
cloneStep.setNextStep(new CheckoutBuggyBuild(inspector)).setNextStep(new InitRepoToPush(inspector));
cloneStep.execute();
assertThat(jobStatus.getPushState(), is(PushState.REPO_INITIALIZED));
Git gitDir = Git.open(new File(tmpDir, "repotopush"));
Iterable<RevCommit> logs = gitDir.log().call();
Iterator<RevCommit> iterator = logs.iterator();
assertThat(iterator.hasNext(), is(true));
RevCommit commit = iterator.next();
assertThat(commit.getShortMessage(), containsString("End of the repairnator process"));
RevCommit firstCommit = iterator.next();
assertThat(firstCommit.getShortMessage(), containsString("Bug commit"));
assertThat(iterator.hasNext(), is(false));
}
use of fr.inria.spirals.repairnator.process.inspectors.JobStatus in project repairnator by Spirals-Team.
the class TestMavenFilterTestOutputHandler method testFilterLogWillWork.
@Test
public void testFilterLogWillWork() throws IOException {
String resourcePath = "./src/test/resources/build-logs/log-test-failures.txt";
List<String> lines = Files.readAllLines(new File(resourcePath).toPath());
ProjectInspector inspector = mock(ProjectInspector.class);
Path tmp = Files.createTempDirectory("test-filter");
when(inspector.getRepoLocalPath()).thenReturn(tmp.toAbsolutePath().toString());
JobStatus jobStatus = new JobStatus(tmp.toAbsolutePath().toString());
when(inspector.getJobStatus()).thenReturn(jobStatus);
MavenHelper mavenHelper = mock(MavenHelper.class);
when(mavenHelper.getInspector()).thenReturn(inspector);
when(mavenHelper.getName()).thenReturn("test");
MavenFilterTestOutputHandler filterTest = new MavenFilterTestOutputHandler(mavenHelper);
for (String s : lines) {
filterTest.consumeLine(s);
}
assertTrue(filterTest.isFailingWithTest());
assertEquals(40, filterTest.getRunningTests());
assertEquals(0, filterTest.getFailingTests());
assertEquals(9, filterTest.getErroringTests());
assertEquals(3, filterTest.getSkippingTests());
}
use of fr.inria.spirals.repairnator.process.inspectors.JobStatus in project repairnator by Spirals-Team.
the class TestMavenFilterTestOutputHandler method testFilterLogWillWork2.
@Test
public void testFilterLogWillWork2() throws IOException {
String resourcePath = "./src/test/resources/build-logs/log-test-druidio.txt";
List<String> lines = Files.readAllLines(new File(resourcePath).toPath());
ProjectInspector inspector = mock(ProjectInspector.class);
Path tmp = Files.createTempDirectory("test-filter");
when(inspector.getRepoLocalPath()).thenReturn(tmp.toAbsolutePath().toString());
JobStatus jobStatus = new JobStatus(tmp.toAbsolutePath().toString());
when(inspector.getJobStatus()).thenReturn(jobStatus);
MavenHelper mavenHelper = mock(MavenHelper.class);
when(mavenHelper.getInspector()).thenReturn(inspector);
when(mavenHelper.getName()).thenReturn("test");
MavenFilterTestOutputHandler filterTest = new MavenFilterTestOutputHandler(mavenHelper);
for (String s : lines) {
filterTest.consumeLine(s);
}
assertFalse(filterTest.isFailingWithTest());
assertEquals(77351 * 2, filterTest.getRunningTests());
assertEquals(0, filterTest.getFailingTests());
assertEquals(0, filterTest.getErroringTests());
assertEquals((52 + 6 + 1) * 2, filterTest.getSkippingTests());
}
use of fr.inria.spirals.repairnator.process.inspectors.JobStatus in project repairnator by Spirals-Team.
the class TestAbstractStep method testSetPropertiesWillGivePropertiesToOtherSteps.
@Test
public void testSetPropertiesWillGivePropertiesToOtherSteps() {
ProjectInspector mockInspector = mock(ProjectInspector.class);
JobStatus jobStatus = new JobStatus("");
when(mockInspector.getJobStatus()).thenReturn(jobStatus);
AbstractStep step1 = new AbstractStepNop(mockInspector);
AbstractStep step2 = new AbstractStepNop(mockInspector);
AbstractStep step3 = new AbstractStepNop(mockInspector);
Properties properties = new Properties();
properties.setProperty("testvalue", "toto");
properties.setProperty("anotherone", "foo");
step1.setNextStep(step2).setNextStep(step3);
step1.setProperties(properties);
assertThat(step3.getProperties(), is(properties));
}
Aggregations