use of jetbrains.buildServer.buildTriggers.vcs.git.GitVcsSupport in project teamcity-git by JetBrains.
the class LatestAcceptedRevisionTest method test_search_by_path.
public void test_search_by_path() throws IOException, VcsException {
GitVcsSupport support = git();
VcsRoot root = vcsRoot().withFetchUrl(myRepo).build();
ensureFetchPerformed(support, root, "refs/heads/br1", "d5a9a3c51fd53b1aec5e3746f521dc78355d7c78");
String rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:src"), "d5a9a3c51fd53b1aec5e3746f521dc78355d7c78", Collections.emptySet());
then(rev).isEqualTo("a4bc5909156143a5590adadb2c20eaf71f2a3f8f");
rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:test"), "bb6ab65d23fa0ffbaa61d44c8241f127cf0f323f", Collections.emptySet());
then(rev).isEqualTo("b265fd1608fe17f912a031312e1efc758c4e8a35");
rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:src"), "b265fd1608fe17f912a031312e1efc758c4e8a35", Collections.singleton("d5a9a3c51fd53b1aec5e3746f521dc78355d7c78"));
then(rev).isNull();
rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:src"), "b265fd1608fe17f912a031312e1efc758c4e8a35", Collections.singleton("a4bc5909156143a5590adadb2c20eaf71f2a3f8f"));
then(rev).isEqualTo("a4bc5909156143a5590adadb2c20eaf71f2a3f8f");
}
use of jetbrains.buildServer.buildTriggers.vcs.git.GitVcsSupport in project teamcity-git by JetBrains.
the class LatestAcceptedRevisionTest method both_parents_of_merge_are_interesting_latest_parents_change_non_interesting_files.
public void both_parents_of_merge_are_interesting_latest_parents_change_non_interesting_files() throws IOException, VcsException {
GitVcsSupport support = git();
VcsRoot root = vcsRoot().withFetchUrl(myRepo).build();
ensureFetchPerformed(support, root, "refs/heads/br4", "ce92302a768ce0763e83aebf8c0e16e102c8d06b");
String rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:src"), "ce92302a768ce0763e83aebf8c0e16e102c8d06b", Collections.emptySet());
then(rev).isEqualTo("d036d012385a762568a474b57337b9cf398b96e0");
}
use of jetbrains.buildServer.buildTriggers.vcs.git.GitVcsSupport in project teamcity-git by JetBrains.
the class LatestAcceptedRevisionTest method test_start_and_stop_are_not_in_repository.
public void test_start_and_stop_are_not_in_repository() throws IOException, VcsException {
GitVcsSupport support = git();
VcsRoot root = vcsRoot().withFetchUrl(myRepo).build();
String rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:test"), "94f6d9029650d88a96e7785d9bc672408bb6e076", Collections.singleton("e45f42c7cdcc2d3433e4542cca8f0e2c46d06489"));
then(rev).isNull();
}
use of jetbrains.buildServer.buildTriggers.vcs.git.GitVcsSupport in project teamcity-git by JetBrains.
the class LatestAcceptedRevisionTest method master_merged_to_branch.
public void master_merged_to_branch() throws IOException, VcsException {
GitVcsSupport support = git();
VcsRoot root = vcsRoot().withFetchUrl(myRepo).build();
ensureFetchPerformed(support, root, "refs/heads/br2", "9c191865e2f2b05727e067aa4f918f3ed54f1f1a");
String rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:src"), "9c191865e2f2b05727e067aa4f918f3ed54f1f1a", Collections.emptySet());
then(rev).isEqualTo("338563d3115318d610ad54839cab287e94b18925");
}
use of jetbrains.buildServer.buildTriggers.vcs.git.GitVcsSupport in project teamcity-git by JetBrains.
the class LatestAcceptedRevisionTest method both_parents_of_merge_are_interesting.
public void both_parents_of_merge_are_interesting() throws IOException, VcsException {
GitVcsSupport support = git();
VcsRoot root = vcsRoot().withFetchUrl(myRepo).build();
ensureFetchPerformed(support, root, "refs/heads/master", "0ce2e3b06b628633f7b8f73ce634ece1cfe25534");
String rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:test"), "0ce2e3b06b628633f7b8f73ce634ece1cfe25534", Collections.emptySet());
then(rev).isEqualTo("a37f9e92344bd037787a98b1f7c8f80ade6d5b68");
rev = support.getCollectChangesPolicy().getLatestRevisionAcceptedByCheckoutRules(root, new CheckoutRules("+:test"), "a37f9e92344bd037787a98b1f7c8f80ade6d5b68", Collections.emptySet());
then(rev).isEqualTo("a37f9e92344bd037787a98b1f7c8f80ade6d5b68");
}
Aggregations