AbstractDaemonTest: Allow changing GerritApi user
Change-Id: I82e0a459a6fc80fab3bbb595abcec5777c744b59
This commit is contained in:
@@ -21,6 +21,7 @@ import static org.junit.Assert.assertEquals;
|
|||||||
|
|
||||||
import com.google.common.base.Joiner;
|
import com.google.common.base.Joiner;
|
||||||
import com.google.common.primitives.Chars;
|
import com.google.common.primitives.Chars;
|
||||||
|
import com.google.gerrit.acceptance.AcceptanceTestRequestScope.Context;
|
||||||
import com.google.gerrit.extensions.api.GerritApi;
|
import com.google.gerrit.extensions.api.GerritApi;
|
||||||
import com.google.gerrit.extensions.api.changes.RevisionApi;
|
import com.google.gerrit.extensions.api.changes.RevisionApi;
|
||||||
import com.google.gerrit.extensions.common.ChangeInfo;
|
import com.google.gerrit.extensions.common.ChangeInfo;
|
||||||
@@ -128,9 +129,9 @@ public abstract class AbstractDaemonTest {
|
|||||||
userSession = new RestSession(server, user);
|
userSession = new RestSession(server, user);
|
||||||
initSsh(admin);
|
initSsh(admin);
|
||||||
db = reviewDbProvider.open();
|
db = reviewDbProvider.open();
|
||||||
atrScope.set(atrScope.newContext(reviewDbProvider, sshSession,
|
Context ctx = newRequestContext(admin);
|
||||||
identifiedUserFactory.create(Providers.of(db), admin.getId())));
|
atrScope.set(ctx);
|
||||||
sshSession = new SshSession(server, admin);
|
sshSession = ctx.getSession();
|
||||||
project = new Project.NameKey("p");
|
project = new Project.NameKey("p");
|
||||||
createProject(sshSession, project.get());
|
createProject(sshSession, project.get());
|
||||||
git = cloneProject(sshSession.getUrl() + "/" + project.get());
|
git = cloneProject(sshSession.getUrl() + "/" + project.get());
|
||||||
@@ -198,6 +199,15 @@ public abstract class AbstractDaemonTest {
|
|||||||
return gApi.changes().query(q).get();
|
return gApi.changes().query(q).get();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Context newRequestContext(TestAccount account) {
|
||||||
|
return atrScope.newContext(reviewDbProvider, new SshSession(server, admin),
|
||||||
|
identifiedUserFactory.create(Providers.of(db), account.getId()));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Context setApiUser(TestAccount account) {
|
||||||
|
return atrScope.set(newRequestContext(account));
|
||||||
|
}
|
||||||
|
|
||||||
protected static Gson newGson() {
|
protected static Gson newGson() {
|
||||||
return OutputFormat.JSON_COMPACT.newGson();
|
return OutputFormat.JSON_COMPACT.newGson();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -253,4 +253,13 @@ public class ChangeIT extends AbstractDaemonTest {
|
|||||||
assertEquals(r.getPatchSetId().get(), rev._number);
|
assertEquals(r.getPatchSetId().get(), rev._number);
|
||||||
assertFalse(rev.actions.isEmpty());
|
assertFalse(rev.actions.isEmpty());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void queryChangesOwnerWithDifferentUsers() throws Exception {
|
||||||
|
PushOneCommit.Result r = createChange();
|
||||||
|
assertEquals(r.getChangeId(),
|
||||||
|
Iterables.getOnlyElement(query("owner:self")).changeId);
|
||||||
|
setApiUser(user);
|
||||||
|
assertTrue(query("owner:self").isEmpty());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user