/* * SoapUI, Copyright (C) 2004-2016 SmartBear Software * * Licensed under the EUPL, Version 1.1 or - as soon as they will be approved by the European Commission - subsequent * versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * * http://ec.europa.eu/idabc/eupl * * Unless required by applicable law or agreed to in writing, software distributed under the Licence is * distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the Licence for the specific language governing permissions and limitations * under the Licence. */ package com.eviware.soapui.impl.wsdl.panels.support; import com.eviware.soapui.SoapUI; import com.eviware.soapui.model.testsuite.TestRunContext; import com.eviware.soapui.model.testsuite.TestRunnable; import com.eviware.soapui.model.testsuite.TestRunner; import org.apache.log4j.Logger; /** * Dummy TestRunner used when executing TestSteps one by one * * @author ole.matzura */ public abstract class AbstractMockTestRunner<T extends TestRunnable> implements TestRunner { private long startTime; private String reason; private final T modelItem; private final Logger logger; private Status status = Status.RUNNING; private TestRunContext context; public AbstractMockTestRunner(T modelItem, Logger logger) { this.modelItem = modelItem; this.logger = logger == null ? SoapUI.ensureGroovyLog() : logger; startTime = System.currentTimeMillis(); } public boolean isRunning() { return false; } public void setRunContext(TestRunContext context) { this.context = context; } public TestRunContext getRunContext() { return context; } public Logger getLog() { return logger; } public T getTestRunnable() { return modelItem; } public Status getStatus() { return status; } public void start(boolean async) { logger.info("Started with async [" + async + "]"); startTime = System.currentTimeMillis(); } public long getTimeTaken() { return System.currentTimeMillis() - startTime; } public Status waitUntilFinished() { status = Status.FINISHED; return status; } public void cancel(String reason) { this.reason = reason; status = Status.CANCELED; logger.info("Canceled with reason [" + reason + "]"); } public void fail(String reason) { this.reason = reason; status = Status.FAILED; logger.error("Failed with reason [" + reason + "]"); } public long getStartTime() { return startTime; } public String getReason() { return reason; } }