* stable-3.0: ErrorProne: Enable and fix UnusedException check Update git submodules Update git submodules Also fix a few more instances of UnusedException. Change-Id: Ifaf0e8c8616723874241153c532e3a9f661520b3
238 lines
8.1 KiB
Java
238 lines
8.1 KiB
Java
// Copyright (C) 2017 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.acceptance;
|
|
|
|
import static com.google.common.truth.Truth.assertWithMessage;
|
|
import static java.nio.charset.StandardCharsets.UTF_8;
|
|
import static java.util.stream.Collectors.joining;
|
|
import static org.junit.Assert.fail;
|
|
|
|
import com.google.common.base.Joiner;
|
|
import com.google.common.collect.ImmutableList;
|
|
import com.google.common.collect.ImmutableMap;
|
|
import com.google.common.collect.Streams;
|
|
import com.google.common.io.ByteStreams;
|
|
import com.google.gerrit.common.Nullable;
|
|
import com.google.gerrit.extensions.api.GerritApi;
|
|
import com.google.gerrit.extensions.api.groups.GroupInput;
|
|
import com.google.gerrit.extensions.restapi.ResourceNotFoundException;
|
|
import com.google.gerrit.launcher.GerritLauncher;
|
|
import com.google.gerrit.server.CurrentUser;
|
|
import com.google.gerrit.server.config.SitePaths;
|
|
import com.google.gerrit.server.util.ManualRequestContext;
|
|
import com.google.gerrit.server.util.OneOffRequestContext;
|
|
import com.google.gerrit.server.util.RequestContext;
|
|
import com.google.gerrit.server.util.git.DelegateSystemReader;
|
|
import com.google.gerrit.testing.ConfigSuite;
|
|
import com.google.inject.Injector;
|
|
import com.google.inject.Module;
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.InterruptedIOException;
|
|
import java.util.Arrays;
|
|
import java.util.Collections;
|
|
import org.eclipse.jgit.lib.Config;
|
|
import org.eclipse.jgit.storage.file.FileBasedConfig;
|
|
import org.eclipse.jgit.util.FS;
|
|
import org.eclipse.jgit.util.SystemReader;
|
|
import org.junit.Rule;
|
|
import org.junit.rules.RuleChain;
|
|
import org.junit.rules.TemporaryFolder;
|
|
import org.junit.rules.TestRule;
|
|
import org.junit.runner.Description;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.model.Statement;
|
|
|
|
@RunWith(ConfigSuite.class)
|
|
@UseLocalDisk
|
|
public abstract class StandaloneSiteTest {
|
|
protected class ServerContext implements RequestContext, AutoCloseable {
|
|
private final GerritServer server;
|
|
private final ManualRequestContext ctx;
|
|
|
|
private ServerContext(GerritServer server) throws Exception {
|
|
this.server = server;
|
|
Injector i = server.getTestInjector();
|
|
if (admin == null) {
|
|
admin = i.getInstance(AccountCreator.class).admin();
|
|
}
|
|
ctx = i.getInstance(OneOffRequestContext.class).openAs(admin.id());
|
|
GerritApi gApi = i.getInstance(GerritApi.class);
|
|
|
|
try {
|
|
// ServerContext ctor is called multiple times but the group can be only created once
|
|
gApi.groups().id("Group");
|
|
} catch (ResourceNotFoundException e) {
|
|
GroupInput in = new GroupInput();
|
|
in.members = Collections.singletonList("admin");
|
|
in.name = "Group";
|
|
gApi.groups().create(in);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public CurrentUser getUser() {
|
|
return ctx.getUser();
|
|
}
|
|
|
|
public Injector getInjector() {
|
|
return server.getTestInjector();
|
|
}
|
|
|
|
@Override
|
|
public void close() throws Exception {
|
|
try {
|
|
ctx.close();
|
|
} finally {
|
|
server.close();
|
|
}
|
|
}
|
|
}
|
|
|
|
@ConfigSuite.Parameter public Config baseConfig;
|
|
@ConfigSuite.Name private String configName;
|
|
|
|
private final TemporaryFolder tempSiteDir = new TemporaryFolder();
|
|
|
|
private final TestRule testRunner =
|
|
(base, description) ->
|
|
new Statement() {
|
|
@Override
|
|
public void evaluate() throws Throwable {
|
|
try {
|
|
beforeTest(description);
|
|
base.evaluate();
|
|
} finally {
|
|
afterTest();
|
|
}
|
|
}
|
|
};
|
|
|
|
@Rule public RuleChain ruleChain = RuleChain.outerRule(tempSiteDir).around(testRunner);
|
|
|
|
protected SitePaths sitePaths;
|
|
protected TestAccount admin;
|
|
|
|
private GerritServer.Description serverDesc;
|
|
private SystemReader oldSystemReader;
|
|
|
|
private void beforeTest(Description description) throws Exception {
|
|
// SystemReader must be overridden before creating any repos, since they read the user/system
|
|
// configs at initialization time, and are then stored in the RepositoryCache forever.
|
|
oldSystemReader = setFakeSystemReader(tempSiteDir.getRoot());
|
|
|
|
serverDesc = GerritServer.Description.forTestMethod(description, configName);
|
|
sitePaths = new SitePaths(tempSiteDir.getRoot().toPath());
|
|
GerritServer.init(serverDesc, baseConfig, sitePaths.site_path);
|
|
}
|
|
|
|
private static SystemReader setFakeSystemReader(File tempDir) {
|
|
SystemReader oldSystemReader = SystemReader.getInstance();
|
|
SystemReader.setInstance(
|
|
new DelegateSystemReader(oldSystemReader) {
|
|
@Override
|
|
public FileBasedConfig openJGitConfig(Config parent, FS fs) {
|
|
return new FileBasedConfig(parent, new File(tempDir, "jgit.config"), FS.detect());
|
|
}
|
|
|
|
@Override
|
|
public FileBasedConfig openUserConfig(Config parent, FS fs) {
|
|
return new FileBasedConfig(parent, new File(tempDir, "user.config"), FS.detect());
|
|
}
|
|
|
|
@Override
|
|
public FileBasedConfig openSystemConfig(Config parent, FS fs) {
|
|
return new FileBasedConfig(parent, new File(tempDir, "system.config"), FS.detect());
|
|
}
|
|
});
|
|
return oldSystemReader;
|
|
}
|
|
|
|
private void afterTest() throws Exception {
|
|
SystemReader.setInstance(oldSystemReader);
|
|
oldSystemReader = null;
|
|
}
|
|
|
|
protected ServerContext startServer() throws Exception {
|
|
return startServer(null);
|
|
}
|
|
|
|
protected ServerContext startServer(@Nullable Module testSysModule, String... additionalArgs)
|
|
throws Exception {
|
|
return new ServerContext(startImpl(testSysModule, additionalArgs));
|
|
}
|
|
|
|
protected void assertServerStartupFails() throws Exception {
|
|
try (GerritServer server = startImpl(null)) {
|
|
fail("expected server startup to fail");
|
|
} catch (GerritServer.StartupException e) {
|
|
// Expected.
|
|
}
|
|
}
|
|
|
|
private GerritServer startImpl(@Nullable Module testSysModule, String... additionalArgs)
|
|
throws Exception {
|
|
return GerritServer.start(
|
|
serverDesc, baseConfig, sitePaths.site_path, testSysModule, null, additionalArgs);
|
|
}
|
|
|
|
protected static void runGerrit(String... args) throws Exception {
|
|
// Use invokeProgram with the current classloader, rather than mainImpl, which would create a
|
|
// new classloader. This is necessary so that static state, particularly the SystemReader, is
|
|
// shared with the test method.
|
|
assertWithMessage("gerrit.war " + Arrays.stream(args).collect(joining(" ")))
|
|
.that(GerritLauncher.invokeProgram(StandaloneSiteTest.class.getClassLoader(), args))
|
|
.isEqualTo(0);
|
|
}
|
|
|
|
@SafeVarargs
|
|
protected static void runGerrit(Iterable<String>... multiArgs) throws Exception {
|
|
runGerrit(Arrays.stream(multiArgs).flatMap(Streams::stream).toArray(String[]::new));
|
|
}
|
|
|
|
protected static String execute(
|
|
ImmutableList<String> cmd, File dir, ImmutableMap<String, String> env) throws IOException {
|
|
ProcessBuilder pb = new ProcessBuilder(cmd);
|
|
pb.directory(dir).redirectErrorStream(true);
|
|
pb.environment().putAll(env);
|
|
Process p = pb.start();
|
|
byte[] out;
|
|
try (InputStream in = p.getInputStream()) {
|
|
out = ByteStreams.toByteArray(in);
|
|
} finally {
|
|
p.getOutputStream().close();
|
|
}
|
|
|
|
int status;
|
|
try {
|
|
status = p.waitFor();
|
|
} catch (InterruptedException e) {
|
|
InterruptedIOException iioe =
|
|
new InterruptedIOException(
|
|
"interrupted waiting for: " + Joiner.on(' ').join(pb.command()));
|
|
iioe.initCause(e);
|
|
throw iioe;
|
|
}
|
|
|
|
String result = new String(out, UTF_8);
|
|
if (status != 0) {
|
|
throw new IOException(result);
|
|
}
|
|
|
|
return result.trim();
|
|
}
|
|
}
|