Search in sources :

Example 1 with CherryPickOp

use of org.locationtech.geogig.api.porcelain.CherryPickOp in project GeoGig by boundlessgeo.

the class CherryPickOpTest method testCherryPickDirtyWorkTree.

@Test
public void testCherryPickDirtyWorkTree() throws Exception {
    insertAndAdd(points1);
    geogig.command(CommitOp.class).setMessage("commit for " + idP1).call();
    // create branch1 and checkout
    geogig.command(BranchCreateOp.class).setAutoCheckout(true).setName("branch1").call();
    insertAndAdd(points2);
    RevCommit c1 = geogig.command(CommitOp.class).setMessage("commit for " + idP2).call();
    // checkout master and insert some features
    geogig.command(CheckoutOp.class).setSource("master").call();
    insert(points3);
    CherryPickOp cherryPick = geogig.command(CherryPickOp.class);
    cherryPick.setCommit(Suppliers.ofInstance(c1.getId()));
    exception.expect(IllegalStateException.class);
    cherryPick.call();
}
Also used : CherryPickOp(org.locationtech.geogig.api.porcelain.CherryPickOp) BranchCreateOp(org.locationtech.geogig.api.porcelain.BranchCreateOp) RevCommit(org.locationtech.geogig.api.RevCommit) Test(org.junit.Test)

Example 2 with CherryPickOp

use of org.locationtech.geogig.api.porcelain.CherryPickOp in project GeoGig by boundlessgeo.

the class CherryPickOpTest method testCherryPickRootCommit.

@Ignore
// this test probably does not make sense with the current behaviour of cherry pick
@Test
public void testCherryPickRootCommit() throws Exception {
    insertAndAdd(points1);
    final RevCommit c1 = geogig.command(CommitOp.class).setMessage("commit for " + idP1).call();
    CherryPickOp cherryPick = geogig.command(CherryPickOp.class);
    cherryPick.setCommit(Suppliers.ofInstance(c1.getId()));
    cherryPick.call();
    Iterator<RevCommit> log = geogig.command(LogOp.class).call();
    // Commit 2
    RevCommit logC2 = log.next();
    assertEquals(c1.getMessage(), logC2.getMessage());
    assertEquals(c1.getAuthor(), logC2.getAuthor());
    assertEquals(c1.getCommitter().getName(), logC2.getCommitter().getName());
    assertEquals(c1.getCommitter().getEmail(), logC2.getCommitter().getEmail());
    assertFalse(c1.getCommitter().getTimestamp() == logC2.getCommitter().getTimestamp());
    assertEquals(c1.getTreeId(), logC2.getTreeId());
    // Commit 1
    RevCommit logC1 = log.next();
    assertEquals(c1, logC1);
    assertFalse(log.hasNext());
}
Also used : CherryPickOp(org.locationtech.geogig.api.porcelain.CherryPickOp) LogOp(org.locationtech.geogig.api.porcelain.LogOp) RevCommit(org.locationtech.geogig.api.RevCommit) Ignore(org.junit.Ignore) Test(org.junit.Test)

Example 3 with CherryPickOp

use of org.locationtech.geogig.api.porcelain.CherryPickOp in project GeoGig by boundlessgeo.

the class CherryPickOpTest method testCherryPickExistingCommit.

@Test
public void testCherryPickExistingCommit() throws Exception {
    insertAndAdd(points1);
    final RevCommit c1 = geogig.command(CommitOp.class).setMessage("commit for " + idP1).call();
    CherryPickOp cherryPick = geogig.command(CherryPickOp.class);
    cherryPick.setCommit(Suppliers.ofInstance(c1.getId()));
    exception.expect(NothingToCommitException.class);
    cherryPick.call();
}
Also used : CherryPickOp(org.locationtech.geogig.api.porcelain.CherryPickOp) RevCommit(org.locationtech.geogig.api.RevCommit) Test(org.junit.Test)

Example 4 with CherryPickOp

use of org.locationtech.geogig.api.porcelain.CherryPickOp in project GeoGig by boundlessgeo.

the class CherryPick method runInternal.

@Override
public void runInternal(GeogigCLI cli) {
    final GeoGIG geogig = cli.getGeogig();
    checkParameter(commits.size() > 0, "No commits specified.");
    checkParameter(commits.size() < 2, "Too many commits specified.");
    CherryPickOp cherryPick = geogig.command(CherryPickOp.class);
    Optional<ObjectId> commitId;
    commitId = geogig.command(RevParse.class).setRefSpec(commits.get(0)).call();
    checkParameter(commitId.isPresent(), "Commit not found '%s'", commits.get(0));
    cherryPick.setCommit(Suppliers.ofInstance(commitId.get()));
    cherryPick.call();
}
Also used : CherryPickOp(org.locationtech.geogig.api.porcelain.CherryPickOp) ObjectId(org.locationtech.geogig.api.ObjectId) RevParse(org.locationtech.geogig.api.plumbing.RevParse) GeoGIG(org.locationtech.geogig.api.GeoGIG)

Example 5 with CherryPickOp

use of org.locationtech.geogig.api.porcelain.CherryPickOp in project GeoGig by boundlessgeo.

the class CherryPickOpTest method testCherryPick.

@Test
public void testCherryPick() throws Exception {
    // Create the following revision graph
    // o
    // |
    // o - master - Points 1 added
    // .\
    // . o - Points 2 added
    // . |
    // . o - Points 3 added
    // . |
    // . o - Lines 1 added
    // . |
    // . o - branch1 - Lines 2 added
    insertAndAdd(points1);
    final RevCommit c1 = geogig.command(CommitOp.class).setMessage("commit for " + idP1).call();
    // create branch1 and checkout
    geogig.command(BranchCreateOp.class).setAutoCheckout(true).setName("branch1").call();
    insertAndAdd(points2);
    final RevCommit c2 = geogig.command(CommitOp.class).setMessage("commit for " + idP2).call();
    insertAndAdd(points3);
    final RevCommit c3 = geogig.command(CommitOp.class).setMessage("commit for " + idP3).call();
    insertAndAdd(lines1);
    final RevCommit c4 = geogig.command(CommitOp.class).setMessage("commit for " + idL1).call();
    insertAndAdd(lines2);
    final RevCommit c5 = geogig.command(CommitOp.class).setMessage("commit for " + idL2).call();
    // Cherry pick several commits to create the following revision graph
    // o
    // |
    // o - Points 1 added
    // |
    // o - Lines 2 added
    // |
    // o - Points 3 added
    // |
    // o - master - Points 2 added
    // switch back to master
    geogig.command(CheckoutOp.class).setSource("master").call();
    CherryPickOp cherryPick = geogig.command(CherryPickOp.class);
    cherryPick.setCommit(Suppliers.ofInstance(c5.getId()));
    RevCommit commit2 = cherryPick.call();
    assertEquals(c5.getAuthor(), commit2.getAuthor());
    assertEquals(c5.getCommitter().getName(), commit2.getCommitter().getName());
    assertEquals(c5.getMessage(), commit2.getMessage());
    assertFalse(c5.getCommitter().getTimestamp() == commit2.getCommitter().getTimestamp());
    assertFalse(c5.getTreeId().equals(commit2.getTreeId()));
    cherryPick.setCommit(Suppliers.ofInstance(c3.getId()));
    RevCommit commit3 = cherryPick.call();
    assertEquals(c3.getAuthor(), commit3.getAuthor());
    assertEquals(c3.getCommitter().getName(), commit3.getCommitter().getName());
    assertEquals(c3.getMessage(), commit3.getMessage());
    assertFalse(c3.getCommitter().getTimestamp() == commit3.getCommitter().getTimestamp());
    assertFalse(c3.getTreeId().equals(commit3.getTreeId()));
    cherryPick.setCommit(Suppliers.ofInstance(c2.getId()));
    RevCommit commit4 = cherryPick.call();
    assertEquals(c2.getAuthor(), commit4.getAuthor());
    assertEquals(c2.getCommitter().getName(), commit4.getCommitter().getName());
    assertEquals(c2.getCommitter().getEmail(), commit4.getCommitter().getEmail());
    assertEquals(c2.getMessage(), commit4.getMessage());
    assertFalse(c2.getCommitter().getTimestamp() == commit4.getCommitter().getTimestamp());
    assertFalse(c2.getTreeId().equals(commit4.getTreeId()));
    // cherryPick.setCommit(Suppliers.ofInstance(c4.getId()));
    // RevCommit commit5 = cherryPick.call();
    //
    // assertEquals(c4.getMessage(), commit5.getMessage());
    // assertEquals(c4.getAuthor().getName(), commit5.getAuthor().getName());
    // assertEquals(c4.getAuthor().getEmail(), commit5.getAuthor().getEmail());
    // assertEquals(c4.getCommitter().getName(), commit5.getCommitter().getName());
    // assertFalse(c4.getCommitter().getTimestamp() == commit5.getCommitter().getTimestamp());
    // assertFalse(c4.getTreeId().equals(commit5.getTreeId()));
    Iterator<RevCommit> log = geogig.command(LogOp.class).call();
    // Commit 5
    // RevCommit logC5 = log.next();
    // assertEquals(commit5, logC5);
    // Commit 4
    RevCommit logC4 = log.next();
    assertEquals(commit4, logC4);
    // Commit 3
    RevCommit logC3 = log.next();
    assertEquals(commit3, logC3);
    // Commit 2
    RevCommit logC2 = log.next();
    assertEquals(commit2, logC2);
    // Commit 1
    RevCommit logC1 = log.next();
    assertEquals(c1, logC1);
    assertFalse(log.hasNext());
}
Also used : CherryPickOp(org.locationtech.geogig.api.porcelain.CherryPickOp) BranchCreateOp(org.locationtech.geogig.api.porcelain.BranchCreateOp) LogOp(org.locationtech.geogig.api.porcelain.LogOp) RevCommit(org.locationtech.geogig.api.RevCommit) Test(org.junit.Test)

Aggregations

CherryPickOp (org.locationtech.geogig.api.porcelain.CherryPickOp)7 Test (org.junit.Test)6 RevCommit (org.locationtech.geogig.api.RevCommit)5 BranchCreateOp (org.locationtech.geogig.api.porcelain.BranchCreateOp)3 LogOp (org.locationtech.geogig.api.porcelain.LogOp)2 Ignore (org.junit.Ignore)1 GeoGIG (org.locationtech.geogig.api.GeoGIG)1 ObjectId (org.locationtech.geogig.api.ObjectId)1 RevParse (org.locationtech.geogig.api.plumbing.RevParse)1