summaryrefslogtreecommitdiffstats
path: root/java/com/google/gerrit/acceptance/LightweightPluginDaemonTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/gerrit/acceptance/LightweightPluginDaemonTest.java')
-rw-r--r--java/com/google/gerrit/acceptance/LightweightPluginDaemonTest.java74
1 files changed, 74 insertions, 0 deletions
diff --git a/java/com/google/gerrit/acceptance/LightweightPluginDaemonTest.java b/java/com/google/gerrit/acceptance/LightweightPluginDaemonTest.java
new file mode 100644
index 0000000000..7e50b83b4f
--- /dev/null
+++ b/java/com/google/gerrit/acceptance/LightweightPluginDaemonTest.java
@@ -0,0 +1,74 @@
+// Copyright (C) 2016 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 com.google.gerrit.server.PluginUser;
+import com.google.gerrit.server.plugins.PluginGuiceEnvironment;
+import com.google.gerrit.server.plugins.TestServerPlugin;
+import com.google.inject.Inject;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.rules.TemporaryFolder;
+
+public class LightweightPluginDaemonTest extends AbstractDaemonTest {
+ @Inject private PluginGuiceEnvironment env;
+
+ @Inject private PluginUser.Factory pluginUserFactory;
+
+ @Rule public TemporaryFolder tempDataDir = new TemporaryFolder();
+
+ protected TestServerPlugin plugin;
+
+ @Before
+ public void setUpTestPlugin() throws Exception {
+ TestPlugin testPlugin = getTestPlugin(getClass());
+ String name = testPlugin.name();
+ plugin =
+ new TestServerPlugin(
+ name,
+ canonicalWebUrl.get() + "plugins/" + name,
+ pluginUserFactory.create(name),
+ getClass().getClassLoader(),
+ testPlugin.sysModule(),
+ testPlugin.httpModule(),
+ testPlugin.sshModule(),
+ tempDataDir.getRoot().toPath());
+
+ plugin.start(env);
+ env.onStartPlugin(plugin);
+ }
+
+ @After
+ public void tearDownTestPlugin() {
+ if (plugin != null) {
+ // plugin will be null if the plugin test requires ssh, but the command
+ // line flag says we are running tests without ssh as the assume()
+ // statement in AbstractDaemonTest will prevent the execution of setUp()
+ // in this class
+ plugin.stop(env);
+ env.onStopPlugin(plugin);
+ }
+ }
+
+ private static TestPlugin getTestPlugin(Class<?> clazz) {
+ for (; clazz != null; clazz = clazz.getSuperclass()) {
+ if (clazz.getAnnotation(TestPlugin.class) != null) {
+ return clazz.getAnnotation(TestPlugin.class);
+ }
+ }
+ throw new IllegalStateException("TestPlugin annotation missing");
+ }
+}