How to use validateStarted method of org.testingisdocumenting.webtau.server.WebTauJettyServer class

Best Webtau code snippet using org.testingisdocumenting.webtau.server.WebTauJettyServer.validateStarted

Source:WebTauJettyServer.java Github

copy

Full Screen

...53 return serverId;54 }55 @Override56 public int getPort() {57 validateStarted();58 return server.getURI().getPort();59 }60 @Override61 public String getBaseUrl() {62 validateStarted();63 return UrlUtils.removeTrailingSlash(server.getURI().toASCIIString());64 }65 @Override66 public boolean isRunning() {67 return isRunning;68 }69 @Override70 public void start() {71 Map<String, Object> input = new LinkedHashMap<>(provideStepInput());72 input.put("passed port", passedPort == 0 ? "random" : passedPort);73 WebTauStep.createAndExecuteStep(74 tokenizedMessage(action("starting"), classifier(getType()), id(serverId)),75 stepInput(input),76 () -> tokenizedMessage(action("started"), classifier(getType()), id(serverId)),77 () -> isRunning() ? stepOutput("running port", getPort()) : WebTauStepOutput.EMPTY,78 this::startStep);79 }80 @Override81 public void stop() {82 WebTauStep.createAndExecuteStep(83 tokenizedMessage(action("stopping"), classifier("server"), id(serverId)),84 () -> tokenizedMessage(action("stopped"), classifier("server"), id(serverId)),85 this::stopStep);86 }87 @Override88 public void setAsBaseUrl() {89 WebTauServer.super.setAsBaseUrl();90 }91 @Override92 public void addOverride(WebTauServerOverride override) {93 WebTauServerGlobalOverrides.addContentOverride(serverId, override);94 }95 @Override96 public void markUnresponsive() {97 WebTauServerGlobalOverrides.addStateOverride(serverId, new WebTauServerOverrideNoResponse(serverId));98 }99 @Override100 public void markBroken() {101 WebTauServerGlobalOverrides.addStateOverride(serverId, new WebTauServerOverrideFailedResponse());102 }103 @Override104 public void fix() {105 WebTauServerGlobalOverrides.removeStateOverride(serverId, WebTauServerOverrideNoResponse.OVERRIDE_ID);106 WebTauServerGlobalOverrides.removeStateOverride(serverId, WebTauServerOverrideFailedResponse.OVERRIDE_ID);107 ServerResponseWaitLocks.releaseLock(serverId);108 }109 @Override110 public void removeOverride(String overrideId) {111 WebTauServerGlobalOverrides.removeOverride(serverId, overrideId);112 }113 abstract protected Map<String, Object> provideStepInput();114 abstract protected void validateParams();115 abstract protected Handler createJettyHandler();116 private void startStep() {117 validateId(serverId);118 validateParams();119 server = new Server();120 ServerConnector connector = new ServerConnector(server);121 connector.setPort(passedPort);122 connector.setHost("127.0.0.1");123 server.addConnector(connector);124 Handler jettyHandler = createJettyHandler();125 server.setHandler(autoAddToJournal() ?126 new WebTauServerJournalJettyHandler(journal, jettyHandler):127 jettyHandler);128 try {129 server.start();130 WebTauServersRegistry.register(this);131 isStarted = true;132 isRunning = true;133 } catch (Exception e) {134 throw new RuntimeException(e);135 }136 }137 private void stopStep() {138 try {139 ServerResponseWaitLocks.releaseLock(serverId);140 server.stop();141 isRunning = false;142 } catch (Exception e) {143 throw new RuntimeException(e);144 }145 }146 private void validateStarted() {147 if (!isRunning()) {148 throw new IllegalStateException("server is not started");149 }150 }151}...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Webtau automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful