Class WinstoneDockerController
java.lang.Object
org.jenkinsci.test.acceptance.controller.JenkinsController
org.jenkinsci.test.acceptance.controller.LocalController
org.jenkinsci.test.acceptance.controller.WinstoneDockerController
- All Implemented Interfaces:
Closeable,AutoCloseable,IJenkinsController,AutoCleaned,LogListenable
Runs jenkins.war inside docker so that it gets a different IP address even though it's run on the same host.
For efficiency, the docker container gets the entire host file system bind-mounted on it, and we ssh into that box and start jenkins.
- Author:
- Kohsuke Kawaguchi
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.jenkinsci.test.acceptance.controller.LocalController
LocalController.LocalFactoryImpl -
Field Summary
Fields inherited from class org.jenkinsci.test.acceptance.controller.LocalController
jenkinsHome, logWatcher, process, time, warFields inherited from class org.jenkinsci.test.acceptance.controller.JenkinsController
isQuite, STARTUP_TIMEOUT, WORKSPACE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.jenkinsci.test.acceptance.docker.fixtures.JavaContainergetUrl()Gives URL where Jenkins is listening.voidsetDockerImage(String img) voidsetFixture(Class<? extends org.jenkinsci.test.acceptance.docker.fixtures.JavaContainer> fixtureType) org.jenkinsci.utils.process.ProcessInputStreamvoidstopNow()Synchronously shutdown Jenkins instance.Methods inherited from class org.jenkinsci.test.acceptance.controller.LocalController
addLogListener, commonLaunchEnv, diagnose, getJavaHome, getJenkinsHome, getSutHostName, isRunInstallWizard, onReady, populateJenkinsHome, postConstruct, removeLogListener, setRunInstallWizard, startNow, tearDownMethods inherited from class org.jenkinsci.test.acceptance.controller.JenkinsController
close, getInitialCredentials, getLogId, getLogPrinter, isRunning, restart, start, stop
-
Constructor Details
-
WinstoneDockerController
@Inject public WinstoneDockerController(com.google.inject.Injector i)
-
-
Method Details
-
setFixture
public void setFixture(Class<? extends org.jenkinsci.test.acceptance.docker.fixtures.JavaContainer> fixtureType) -
setDockerImage
-
startProcess
- Specified by:
startProcessin classLocalController- Throws:
IOException
-
stopNow
Description copied from class:JenkinsControllerSynchronously shutdown Jenkins instance.This method must leave JENKINS_HOME intact so that it can be started later. To really delete the data and clean up, see
JenkinsController.tearDown().- Overrides:
stopNowin classLocalController- Throws:
IOException
-
getContainer
public org.jenkinsci.test.acceptance.docker.fixtures.JavaContainer getContainer() -
getUrl
Description copied from class:JenkinsControllerGives URL where Jenkins is listening. Must end with "/"- Specified by:
getUrlin interfaceIJenkinsController- Specified by:
getUrlin classJenkinsController
-