use of com.thoughtworks.go.matchers.RegexMatcher in project gocd by gocd.
the class GitCommandTest method shouldBombForResetWorkingDirWhenSubmoduleUpdateFails.
@Test
public void shouldBombForResetWorkingDirWhenSubmoduleUpdateFails() throws Exception {
GitSubmoduleRepos submoduleRepos = new GitSubmoduleRepos(temporaryFolder);
File submoduleFolder = submoduleRepos.addSubmodule(SUBMODULE, "sub1");
GitCommand gitWithSubmodule = new GitCommand(null, createTempWorkingDirectory(), GitMaterialConfig.DEFAULT_BRANCH, false, new HashMap<>(), null);
gitWithSubmodule.clone(inMemoryConsumer(), submoduleRepos.mainRepo().getUrl());
FileUtils.deleteDirectory(submoduleFolder);
assertThat(submoduleFolder.exists(), is(false));
try {
gitWithSubmodule.resetWorkingDir(new SysOutStreamConsumer(), new StringRevision("HEAD"));
fail("should have failed for non 0 return code");
} catch (Exception e) {
assertThat(e.getMessage(), new RegexMatcher(String.format("[Cc]lone of '%s' into submodule path '((.*)[\\/])?sub1' failed", Pattern.quote(submoduleFolder.getAbsolutePath()))));
}
}
use of com.thoughtworks.go.matchers.RegexMatcher in project gocd by gocd.
the class GitMaterialUpdaterTest method shouldBombForFetchAndResetWhenSubmoduleUpdateFails.
@Test
public void shouldBombForFetchAndResetWhenSubmoduleUpdateFails() throws Exception {
GitSubmoduleRepos submoduleRepos = new GitSubmoduleRepos(temporaryFolder);
File submoduleFolder = submoduleRepos.addSubmodule(SUBMODULE, "sub1");
GitMaterial material = new GitMaterial(submoduleRepos.projectRepositoryUrl(), true);
FileUtils.deleteDirectory(submoduleFolder);
assertThat(submoduleFolder.exists(), Matchers.is(false));
updateTo(material, new RevisionContext(new StringRevision("origin/HEAD")), JobResult.Failed);
assertThat(console.output(), // git on windows prints full submodule paths
new RegexMatcher(String.format("[Cc]lone of '%s' into submodule path '((.*)[\\/])?sub1' failed", Pattern.quote(submoduleFolder.getAbsolutePath()))));
}
Aggregations