Create test helper class, ChangesForTestUtil
Some methods necessary for the changes in CommentsTest were private to ChangeNotes, so in order to modularize, I factored those common methods out into a new testutil helper class, ChangesForTestUtil. This utility class helps to generate ChangeUpdates, Changes, and ChangeControls for testing purposes. Change-Id: Ic2456eab131d394881374db16503144c52118fb0
This commit is contained in:
parent
5616c8a1a4
commit
712022f675
@ -520,7 +520,7 @@ public class ChangeNotes extends VersionedMetaData {
|
|||||||
NoteMap noteMap;
|
NoteMap noteMap;
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
ChangeNotes(GitRepositoryManager repoManager, Change change) {
|
public ChangeNotes(GitRepositoryManager repoManager, Change change) {
|
||||||
this.repoManager = repoManager;
|
this.repoManager = repoManager;
|
||||||
this.change = new Change(change);
|
this.change = new Change(change);
|
||||||
}
|
}
|
||||||
|
@ -16,11 +16,11 @@ package com.google.gerrit.server.notedb;
|
|||||||
|
|
||||||
import static com.google.gerrit.server.notedb.ReviewerState.CC;
|
import static com.google.gerrit.server.notedb.ReviewerState.CC;
|
||||||
import static com.google.gerrit.server.notedb.ReviewerState.REVIEWER;
|
import static com.google.gerrit.server.notedb.ReviewerState.REVIEWER;
|
||||||
|
import static com.google.gerrit.testutil.TestChanges.incrementPatchSet;
|
||||||
import static com.google.inject.Scopes.SINGLETON;
|
import static com.google.inject.Scopes.SINGLETON;
|
||||||
import static java.nio.charset.StandardCharsets.UTF_8;
|
import static java.nio.charset.StandardCharsets.UTF_8;
|
||||||
import static java.util.concurrent.TimeUnit.MILLISECONDS;
|
import static java.util.concurrent.TimeUnit.MILLISECONDS;
|
||||||
import static java.util.concurrent.TimeUnit.SECONDS;
|
import static java.util.concurrent.TimeUnit.SECONDS;
|
||||||
import static org.easymock.EasyMock.expect;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
@ -31,10 +31,8 @@ import com.google.common.collect.LinkedListMultimap;
|
|||||||
import com.google.common.collect.ListMultimap;
|
import com.google.common.collect.ListMultimap;
|
||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
||||||
import com.google.common.collect.Multimap;
|
import com.google.common.collect.Multimap;
|
||||||
import com.google.common.collect.Ordering;
|
|
||||||
import com.google.gerrit.common.data.SubmitRecord;
|
import com.google.gerrit.common.data.SubmitRecord;
|
||||||
import com.google.gerrit.reviewdb.client.Account;
|
import com.google.gerrit.reviewdb.client.Account;
|
||||||
import com.google.gerrit.reviewdb.client.Branch;
|
|
||||||
import com.google.gerrit.reviewdb.client.Change;
|
import com.google.gerrit.reviewdb.client.Change;
|
||||||
import com.google.gerrit.reviewdb.client.ChangeMessage;
|
import com.google.gerrit.reviewdb.client.ChangeMessage;
|
||||||
import com.google.gerrit.reviewdb.client.CommentRange;
|
import com.google.gerrit.reviewdb.client.CommentRange;
|
||||||
@ -42,7 +40,6 @@ import com.google.gerrit.reviewdb.client.Patch;
|
|||||||
import com.google.gerrit.reviewdb.client.PatchLineComment;
|
import com.google.gerrit.reviewdb.client.PatchLineComment;
|
||||||
import com.google.gerrit.reviewdb.client.PatchSet;
|
import com.google.gerrit.reviewdb.client.PatchSet;
|
||||||
import com.google.gerrit.reviewdb.client.PatchSetApproval;
|
import com.google.gerrit.reviewdb.client.PatchSetApproval;
|
||||||
import com.google.gerrit.reviewdb.client.PatchSetInfo;
|
|
||||||
import com.google.gerrit.reviewdb.client.Project;
|
import com.google.gerrit.reviewdb.client.Project;
|
||||||
import com.google.gerrit.reviewdb.client.RevId;
|
import com.google.gerrit.reviewdb.client.RevId;
|
||||||
import com.google.gerrit.server.GerritPersonIdent;
|
import com.google.gerrit.server.GerritPersonIdent;
|
||||||
@ -62,9 +59,9 @@ import com.google.gerrit.server.git.GitRepositoryManager;
|
|||||||
import com.google.gerrit.server.git.VersionedMetaData.BatchMetaDataUpdate;
|
import com.google.gerrit.server.git.VersionedMetaData.BatchMetaDataUpdate;
|
||||||
import com.google.gerrit.server.group.SystemGroupBackend;
|
import com.google.gerrit.server.group.SystemGroupBackend;
|
||||||
import com.google.gerrit.server.notedb.CommentsInNotesUtil;
|
import com.google.gerrit.server.notedb.CommentsInNotesUtil;
|
||||||
import com.google.gerrit.server.project.ChangeControl;
|
|
||||||
import com.google.gerrit.server.project.ProjectCache;
|
import com.google.gerrit.server.project.ProjectCache;
|
||||||
import com.google.gerrit.server.util.TimeUtil;
|
import com.google.gerrit.server.util.TimeUtil;
|
||||||
|
import com.google.gerrit.testutil.TestChanges;
|
||||||
import com.google.gerrit.testutil.FakeAccountCache;
|
import com.google.gerrit.testutil.FakeAccountCache;
|
||||||
import com.google.gerrit.testutil.FakeRealm;
|
import com.google.gerrit.testutil.FakeRealm;
|
||||||
import com.google.gerrit.testutil.InMemoryRepositoryManager;
|
import com.google.gerrit.testutil.InMemoryRepositoryManager;
|
||||||
@ -75,7 +72,6 @@ import com.google.inject.Guice;
|
|||||||
import com.google.inject.Injector;
|
import com.google.inject.Injector;
|
||||||
import com.google.inject.util.Providers;
|
import com.google.inject.util.Providers;
|
||||||
|
|
||||||
import org.easymock.EasyMock;
|
|
||||||
import org.eclipse.jgit.internal.storage.dfs.InMemoryRepository;
|
import org.eclipse.jgit.internal.storage.dfs.InMemoryRepository;
|
||||||
import org.eclipse.jgit.lib.CommitBuilder;
|
import org.eclipse.jgit.lib.CommitBuilder;
|
||||||
import org.eclipse.jgit.lib.Config;
|
import org.eclipse.jgit.lib.Config;
|
||||||
@ -1169,15 +1165,7 @@ public class ChangeNotesTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private Change newChange() {
|
private Change newChange() {
|
||||||
Change.Id changeId = new Change.Id(1);
|
return TestChanges.newChange(project, changeOwner);
|
||||||
Change c = new Change(
|
|
||||||
new Change.Key("Iabcd1234abcd1234abcd1234abcd1234abcd1234"),
|
|
||||||
changeId,
|
|
||||||
changeOwner.getAccount().getId(),
|
|
||||||
new Branch.NameKey(project, "master"),
|
|
||||||
TimeUtil.nowTs());
|
|
||||||
incrementPatchSet(c);
|
|
||||||
return c;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private PatchLineComment newPatchLineComment(PatchSet.Id psId,
|
private PatchLineComment newPatchLineComment(PatchSet.Id psId,
|
||||||
@ -1195,31 +1183,15 @@ public class ChangeNotesTest {
|
|||||||
return comment;
|
return comment;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ChangeUpdate newUpdate(Change c, final IdentifiedUser user)
|
private ChangeUpdate newUpdate(Change c, IdentifiedUser user)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
return injector.createChildInjector(new FactoryModule() {
|
return TestChanges.newUpdate(injector, repoManager, c, user);
|
||||||
@Override
|
|
||||||
public void configure() {
|
|
||||||
factory(ChangeUpdate.Factory.class);
|
|
||||||
bind(IdentifiedUser.class).toInstance(user);
|
|
||||||
}
|
|
||||||
}).getInstance(ChangeUpdate.Factory.class).create(
|
|
||||||
stubChangeControl(c, user), TimeUtil.nowTs(),
|
|
||||||
Ordering.<String> natural());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private ChangeNotes newNotes(Change c) throws OrmException {
|
private ChangeNotes newNotes(Change c) throws OrmException {
|
||||||
return new ChangeNotes(repoManager, c).load();
|
return new ChangeNotes(repoManager, c).load();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void incrementPatchSet(Change change) {
|
|
||||||
PatchSet.Id curr = change.currentPatchSetId();
|
|
||||||
PatchSetInfo ps = new PatchSetInfo(new PatchSet.Id(
|
|
||||||
change.getId(), curr != null ? curr.get() + 1 : 1));
|
|
||||||
ps.setSubject("Change subject");
|
|
||||||
change.setCurrentPatchSet(ps);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static Timestamp truncate(Timestamp ts) {
|
private static Timestamp truncate(Timestamp ts) {
|
||||||
return new Timestamp((ts.getTime() / 1000) * 1000);
|
return new Timestamp((ts.getTime() / 1000) * 1000);
|
||||||
}
|
}
|
||||||
@ -1228,17 +1200,6 @@ public class ChangeNotesTest {
|
|||||||
return new Timestamp(c.getCreatedOn().getTime() + millis);
|
return new Timestamp(c.getCreatedOn().getTime() + millis);
|
||||||
}
|
}
|
||||||
|
|
||||||
private ChangeControl stubChangeControl(Change c, IdentifiedUser user) throws OrmException {
|
|
||||||
ChangeControl ctl = EasyMock.createNiceMock(ChangeControl.class);
|
|
||||||
expect(ctl.getChange()).andStubReturn(c);
|
|
||||||
expect(ctl.getCurrentUser()).andStubReturn(user);
|
|
||||||
ChangeNotes notes = new ChangeNotes(repoManager, c);
|
|
||||||
notes = notes.load();
|
|
||||||
expect(ctl.getNotes()).andStubReturn(notes);
|
|
||||||
EasyMock.replay(ctl);
|
|
||||||
return ctl;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static SubmitRecord submitRecord(String status,
|
private static SubmitRecord submitRecord(String status,
|
||||||
String errorMessage, SubmitRecord.Label... labels) {
|
String errorMessage, SubmitRecord.Label... labels) {
|
||||||
SubmitRecord rec = new SubmitRecord();
|
SubmitRecord rec = new SubmitRecord();
|
||||||
|
@ -0,0 +1,88 @@
|
|||||||
|
// Copyright (C) 2014 The Android Open Source Project
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package com.google.gerrit.testutil;
|
||||||
|
|
||||||
|
import static org.easymock.EasyMock.expect;
|
||||||
|
|
||||||
|
import com.google.common.collect.Ordering;
|
||||||
|
import com.google.gerrit.reviewdb.client.Branch;
|
||||||
|
import com.google.gerrit.reviewdb.client.Change;
|
||||||
|
import com.google.gerrit.reviewdb.client.PatchSet;
|
||||||
|
import com.google.gerrit.reviewdb.client.PatchSetInfo;
|
||||||
|
import com.google.gerrit.reviewdb.client.Project;
|
||||||
|
import com.google.gerrit.server.IdentifiedUser;
|
||||||
|
import com.google.gerrit.server.config.FactoryModule;
|
||||||
|
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||||
|
import com.google.gerrit.server.notedb.ChangeNotes;
|
||||||
|
import com.google.gerrit.server.notedb.ChangeUpdate;
|
||||||
|
import com.google.gerrit.server.project.ChangeControl;
|
||||||
|
import com.google.gerrit.server.util.TimeUtil;
|
||||||
|
import com.google.gwtorm.server.OrmException;
|
||||||
|
import com.google.inject.Injector;
|
||||||
|
|
||||||
|
import org.easymock.EasyMock;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Utility functions to create and manipulate Change, ChangeUpdate, and
|
||||||
|
* ChangeControl objects for testing.
|
||||||
|
*/
|
||||||
|
public class TestChanges {
|
||||||
|
public static Change newChange(Project.NameKey project, IdentifiedUser user) {
|
||||||
|
Change.Id changeId = new Change.Id(1);
|
||||||
|
Change c = new Change(
|
||||||
|
new Change.Key("Iabcd1234abcd1234abcd1234abcd1234abcd1234"),
|
||||||
|
changeId,
|
||||||
|
user.getAccount().getId(),
|
||||||
|
new Branch.NameKey(project, "master"),
|
||||||
|
TimeUtil.nowTs());
|
||||||
|
incrementPatchSet(c);
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ChangeUpdate newUpdate(Injector injector,
|
||||||
|
GitRepositoryManager repoManager, Change c, final IdentifiedUser user)
|
||||||
|
throws OrmException {
|
||||||
|
return injector.createChildInjector(new FactoryModule() {
|
||||||
|
@Override
|
||||||
|
public void configure() {
|
||||||
|
factory(ChangeUpdate.Factory.class);
|
||||||
|
bind(IdentifiedUser.class).toInstance(user);
|
||||||
|
}
|
||||||
|
}).getInstance(ChangeUpdate.Factory.class).create(
|
||||||
|
stubChangeControl(repoManager, c, user), TimeUtil.nowTs(),
|
||||||
|
Ordering.<String> natural());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ChangeControl stubChangeControl(
|
||||||
|
GitRepositoryManager repoManager, Change c, IdentifiedUser user)
|
||||||
|
throws OrmException {
|
||||||
|
ChangeControl ctl = EasyMock.createNiceMock(ChangeControl.class);
|
||||||
|
expect(ctl.getChange()).andStubReturn(c);
|
||||||
|
expect(ctl.getCurrentUser()).andStubReturn(user);
|
||||||
|
ChangeNotes notes = new ChangeNotes(repoManager, c);
|
||||||
|
notes = notes.load();
|
||||||
|
expect(ctl.getNotes()).andStubReturn(notes);
|
||||||
|
EasyMock.replay(ctl);
|
||||||
|
return ctl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void incrementPatchSet(Change change) {
|
||||||
|
PatchSet.Id curr = change.currentPatchSetId();
|
||||||
|
PatchSetInfo ps = new PatchSetInfo(new PatchSet.Id(
|
||||||
|
change.getId(), curr != null ? curr.get() + 1 : 1));
|
||||||
|
ps.setSubject("Change subject");
|
||||||
|
change.setCurrentPatchSet(ps);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user