change-merged: set correct newRev on submit by push
Bug: Issue 11083 Change-Id: I12acf29549c35c93219867348c3691a24415e28c
This commit is contained in:

committed by
Marco Miller

parent
0f6f21c916
commit
77df787ce5
@@ -112,7 +112,8 @@ patchSet:: link:json.html#patchSet[patchSet attribute]
|
|||||||
|
|
||||||
submitter:: link:json.html#account[account attribute]
|
submitter:: link:json.html#account[account attribute]
|
||||||
|
|
||||||
newRev:: The resulting revision of the merge.
|
newRev:: The state (revision) of the target branch after the operation that
|
||||||
|
closed the change was completed.
|
||||||
|
|
||||||
eventCreatedOn:: Time in seconds since the UNIX epoch when this event was
|
eventCreatedOn:: Time in seconds since the UNIX epoch when this event was
|
||||||
created.
|
created.
|
||||||
|
@@ -16,6 +16,7 @@ package com.google.gerrit.acceptance;
|
|||||||
|
|
||||||
import static com.google.common.truth.Truth.assertThat;
|
import static com.google.common.truth.Truth.assertThat;
|
||||||
|
|
||||||
|
import com.google.common.annotations.VisibleForTesting;
|
||||||
import com.google.common.collect.FluentIterable;
|
import com.google.common.collect.FluentIterable;
|
||||||
import com.google.common.collect.ImmutableList;
|
import com.google.common.collect.ImmutableList;
|
||||||
import com.google.common.collect.LinkedListMultimap;
|
import com.google.common.collect.LinkedListMultimap;
|
||||||
@@ -109,7 +110,8 @@ public class EventRecorder {
|
|||||||
return events;
|
return events;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ImmutableList<ChangeMergedEvent> getChangeMergedEvents(
|
@VisibleForTesting
|
||||||
|
public ImmutableList<ChangeMergedEvent> getChangeMergedEvents(
|
||||||
String project, String branch, int expectedSize) {
|
String project, String branch, int expectedSize) {
|
||||||
String key = refEventKey(ChangeMergedEvent.TYPE, project, branch);
|
String key = refEventKey(ChangeMergedEvent.TYPE, project, branch);
|
||||||
if (expectedSize == 0) {
|
if (expectedSize == 0) {
|
||||||
|
@@ -54,7 +54,10 @@ public class MergedByPushOp implements BatchUpdateOp {
|
|||||||
|
|
||||||
public interface Factory {
|
public interface Factory {
|
||||||
MergedByPushOp create(
|
MergedByPushOp create(
|
||||||
RequestScopePropagator requestScopePropagator, PatchSet.Id psId, String refName);
|
RequestScopePropagator requestScopePropagator,
|
||||||
|
PatchSet.Id psId,
|
||||||
|
@Assisted("refName") String refName,
|
||||||
|
@Assisted("mergeResultRevId") String mergeResultRevId);
|
||||||
}
|
}
|
||||||
|
|
||||||
private final RequestScopePropagator requestScopePropagator;
|
private final RequestScopePropagator requestScopePropagator;
|
||||||
@@ -67,6 +70,7 @@ public class MergedByPushOp implements BatchUpdateOp {
|
|||||||
|
|
||||||
private final PatchSet.Id psId;
|
private final PatchSet.Id psId;
|
||||||
private final String refName;
|
private final String refName;
|
||||||
|
private final String mergeResultRevId;
|
||||||
|
|
||||||
private Change change;
|
private Change change;
|
||||||
private boolean correctBranch;
|
private boolean correctBranch;
|
||||||
@@ -84,7 +88,8 @@ public class MergedByPushOp implements BatchUpdateOp {
|
|||||||
ChangeMerged changeMerged,
|
ChangeMerged changeMerged,
|
||||||
@Assisted RequestScopePropagator requestScopePropagator,
|
@Assisted RequestScopePropagator requestScopePropagator,
|
||||||
@Assisted PatchSet.Id psId,
|
@Assisted PatchSet.Id psId,
|
||||||
@Assisted String refName) {
|
@Assisted("refName") String refName,
|
||||||
|
@Assisted("mergeResultRevId") String mergeResultRevId) {
|
||||||
this.patchSetInfoFactory = patchSetInfoFactory;
|
this.patchSetInfoFactory = patchSetInfoFactory;
|
||||||
this.cmUtil = cmUtil;
|
this.cmUtil = cmUtil;
|
||||||
this.mergedSenderFactory = mergedSenderFactory;
|
this.mergedSenderFactory = mergedSenderFactory;
|
||||||
@@ -94,6 +99,7 @@ public class MergedByPushOp implements BatchUpdateOp {
|
|||||||
this.requestScopePropagator = requestScopePropagator;
|
this.requestScopePropagator = requestScopePropagator;
|
||||||
this.psId = psId;
|
this.psId = psId;
|
||||||
this.refName = refName;
|
this.refName = refName;
|
||||||
|
this.mergeResultRevId = mergeResultRevId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getMergedIntoRef() {
|
public String getMergedIntoRef() {
|
||||||
@@ -196,8 +202,7 @@ public class MergedByPushOp implements BatchUpdateOp {
|
|||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
changeMerged.fire(
|
changeMerged.fire(change, patchSet, ctx.getAccount(), mergeResultRevId, ctx.getWhen());
|
||||||
change, patchSet, ctx.getAccount(), patchSet.getRevision().get(), ctx.getWhen());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private PatchSetInfo getPatchSetInfo(ChangeContext ctx) throws IOException, OrmException {
|
private PatchSetInfo getPatchSetInfo(ChangeContext ctx) throws IOException, OrmException {
|
||||||
|
@@ -2818,6 +2818,7 @@ class ReceiveCommits {
|
|||||||
projectState,
|
projectState,
|
||||||
notes.getChange().getDest(),
|
notes.getChange().getDest(),
|
||||||
checkMergedInto,
|
checkMergedInto,
|
||||||
|
checkMergedInto ? inputCommand.getNewId().name() : null,
|
||||||
priorPatchSet,
|
priorPatchSet,
|
||||||
priorCommit,
|
priorCommit,
|
||||||
psId,
|
psId,
|
||||||
@@ -3117,7 +3118,8 @@ class ReceiveCommits {
|
|||||||
existingPatchSets++;
|
existingPatchSets++;
|
||||||
bu.addOp(
|
bu.addOp(
|
||||||
psId.getParentKey(),
|
psId.getParentKey(),
|
||||||
mergedByPushOpFactory.create(requestScopePropagator, psId, refName));
|
mergedByPushOpFactory.create(
|
||||||
|
requestScopePropagator, psId, refName, newTip.getId().getName()));
|
||||||
continue COMMIT;
|
continue COMMIT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3150,7 +3152,7 @@ class ReceiveCommits {
|
|||||||
bu.addOp(
|
bu.addOp(
|
||||||
id,
|
id,
|
||||||
mergedByPushOpFactory
|
mergedByPushOpFactory
|
||||||
.create(requestScopePropagator, req.psId, refName)
|
.create(requestScopePropagator, req.psId, refName, newTip.getId().getName())
|
||||||
.setPatchSetProvider(req.replaceOp::getPatchSet));
|
.setPatchSetProvider(req.replaceOp::getPatchSet));
|
||||||
bu.addOp(id, new ChangeProgressOp(progress));
|
bu.addOp(id, new ChangeProgressOp(progress));
|
||||||
ids.add(id);
|
ids.add(id);
|
||||||
|
@@ -103,6 +103,7 @@ public class ReplaceOp implements BatchUpdateOp {
|
|||||||
ProjectState projectState,
|
ProjectState projectState,
|
||||||
Branch.NameKey dest,
|
Branch.NameKey dest,
|
||||||
boolean checkMergedInto,
|
boolean checkMergedInto,
|
||||||
|
@Nullable String mergeResultRevId,
|
||||||
@Assisted("priorPatchSetId") PatchSet.Id priorPatchSetId,
|
@Assisted("priorPatchSetId") PatchSet.Id priorPatchSetId,
|
||||||
@Assisted("priorCommitId") ObjectId priorCommit,
|
@Assisted("priorCommitId") ObjectId priorCommit,
|
||||||
@Assisted("patchSetId") PatchSet.Id patchSetId,
|
@Assisted("patchSetId") PatchSet.Id patchSetId,
|
||||||
@@ -136,6 +137,7 @@ public class ReplaceOp implements BatchUpdateOp {
|
|||||||
private final ProjectState projectState;
|
private final ProjectState projectState;
|
||||||
private final Branch.NameKey dest;
|
private final Branch.NameKey dest;
|
||||||
private final boolean checkMergedInto;
|
private final boolean checkMergedInto;
|
||||||
|
private final String mergeResultRevId;
|
||||||
private final PatchSet.Id priorPatchSetId;
|
private final PatchSet.Id priorPatchSetId;
|
||||||
private final ObjectId priorCommitId;
|
private final ObjectId priorCommitId;
|
||||||
private final PatchSet.Id patchSetId;
|
private final PatchSet.Id patchSetId;
|
||||||
@@ -181,6 +183,7 @@ public class ReplaceOp implements BatchUpdateOp {
|
|||||||
@Assisted ProjectState projectState,
|
@Assisted ProjectState projectState,
|
||||||
@Assisted Branch.NameKey dest,
|
@Assisted Branch.NameKey dest,
|
||||||
@Assisted boolean checkMergedInto,
|
@Assisted boolean checkMergedInto,
|
||||||
|
@Assisted @Nullable String mergeResultRevId,
|
||||||
@Assisted("priorPatchSetId") PatchSet.Id priorPatchSetId,
|
@Assisted("priorPatchSetId") PatchSet.Id priorPatchSetId,
|
||||||
@Assisted("priorCommitId") ObjectId priorCommitId,
|
@Assisted("priorCommitId") ObjectId priorCommitId,
|
||||||
@Assisted("patchSetId") PatchSet.Id patchSetId,
|
@Assisted("patchSetId") PatchSet.Id patchSetId,
|
||||||
@@ -210,6 +213,7 @@ public class ReplaceOp implements BatchUpdateOp {
|
|||||||
this.projectState = projectState;
|
this.projectState = projectState;
|
||||||
this.dest = dest;
|
this.dest = dest;
|
||||||
this.checkMergedInto = checkMergedInto;
|
this.checkMergedInto = checkMergedInto;
|
||||||
|
this.mergeResultRevId = mergeResultRevId;
|
||||||
this.priorPatchSetId = priorPatchSetId;
|
this.priorPatchSetId = priorPatchSetId;
|
||||||
this.priorCommitId = priorCommitId.copy();
|
this.priorCommitId = priorCommitId.copy();
|
||||||
this.patchSetId = patchSetId;
|
this.patchSetId = patchSetId;
|
||||||
@@ -236,7 +240,8 @@ public class ReplaceOp implements BatchUpdateOp {
|
|||||||
String mergedInto = findMergedInto(ctx, dest.get(), commit);
|
String mergedInto = findMergedInto(ctx, dest.get(), commit);
|
||||||
if (mergedInto != null) {
|
if (mergedInto != null) {
|
||||||
mergedByPushOp =
|
mergedByPushOp =
|
||||||
mergedByPushOpFactory.create(requestScopePropagator, patchSetId, mergedInto);
|
mergedByPushOpFactory.create(
|
||||||
|
requestScopePropagator, patchSetId, mergedInto, mergeResultRevId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -30,9 +30,11 @@ import com.google.gerrit.reviewdb.client.PatchSetApproval;
|
|||||||
import com.google.gerrit.reviewdb.client.Project;
|
import com.google.gerrit.reviewdb.client.Project;
|
||||||
import com.google.gerrit.reviewdb.client.RefNames;
|
import com.google.gerrit.reviewdb.client.RefNames;
|
||||||
import com.google.gerrit.server.ApprovalsUtil;
|
import com.google.gerrit.server.ApprovalsUtil;
|
||||||
|
import com.google.gerrit.server.events.ChangeMergedEvent;
|
||||||
import com.google.gerrit.server.notedb.ChangeNotes;
|
import com.google.gerrit.server.notedb.ChangeNotes;
|
||||||
import com.google.gerrit.server.query.change.ChangeData;
|
import com.google.gerrit.server.query.change.ChangeData;
|
||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
|
import java.util.List;
|
||||||
import org.eclipse.jgit.api.errors.GitAPIException;
|
import org.eclipse.jgit.api.errors.GitAPIException;
|
||||||
import org.eclipse.jgit.api.errors.InvalidRemoteException;
|
import org.eclipse.jgit.api.errors.InvalidRemoteException;
|
||||||
import org.eclipse.jgit.api.errors.TransportException;
|
import org.eclipse.jgit.api.errors.TransportException;
|
||||||
@@ -167,6 +169,19 @@ public class SubmitOnPushIT extends AbstractDaemonTest {
|
|||||||
assertThat(cd.patchSet(psId).getRevision().get()).isEqualTo(c.name());
|
assertThat(cd.patchSet(psId).getRevision().get()).isEqualTo(c.name());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void correctNewRevOnMergeByPushToBranch() throws Exception {
|
||||||
|
grant(project, "refs/heads/master", Permission.PUSH);
|
||||||
|
push("refs/for/master", PushOneCommit.SUBJECT, "one.txt", "One");
|
||||||
|
PushOneCommit.Result r = push("refs/for/master", PushOneCommit.SUBJECT, "two.txt", "Two");
|
||||||
|
startEventRecorder();
|
||||||
|
git().push().setRefSpecs(new RefSpec(r.getCommit().name() + ":refs/heads/master")).call();
|
||||||
|
List<ChangeMergedEvent> changeMergedEvents =
|
||||||
|
eventRecorder.getChangeMergedEvents(project.get(), "refs/heads/master", 2);
|
||||||
|
assertThat(changeMergedEvents.get(0).newRev).isEqualTo(r.getPatchSet().getRevision().get());
|
||||||
|
assertThat(changeMergedEvents.get(1).newRev).isEqualTo(r.getPatchSet().getRevision().get());
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void mergeOnPushToBranchWithChangeMergedInOther() throws Exception {
|
public void mergeOnPushToBranchWithChangeMergedInOther() throws Exception {
|
||||||
enableCreateNewChangeForAllNotInTarget();
|
enableCreateNewChangeForAllNotInTarget();
|
||||||
|
Reference in New Issue
Block a user