How to use typeContains method of com.intuit.karate.core.MockHandler class

Best Karate code snippet using com.intuit.karate.core.MockHandler.typeContains

Source:MockHandler.java Github

copy

Full Screen

...49 private static final String REQUEST_PARTS = "requestParts";50 private static final String RESPONSE_DELAY = "responseDelay";51 private static final String PATH_MATCHES = "pathMatches";52 private static final String METHOD_IS = "methodIs";53 private static final String TYPE_CONTAINS = "typeContains";54 private static final String ACCEPT_CONTAINS = "acceptContains";55 private static final String HEADER_CONTAINS = "headerContains";56 private static final String PARAM_VALUE = "paramValue";57 private static final String PARAM_EXISTS = "paramExists";58 private static final String PATH_PARAMS = "pathParams";59 private static final String BODY_PATH = "bodyPath";60 private final LinkedHashMap<Feature, ScenarioRuntime> features = new LinkedHashMap<>(); // feature + holds global config and vars61 private final Map<String, Variable> globals = new HashMap<>();62 private boolean corsEnabled;63 protected static final ThreadLocal<Request> LOCAL_REQUEST = new ThreadLocal<>();64 private String prefix = "";65 public MockHandler withPrefix(String prefix) {66 this.prefix = prefix;67 return this;68 }69 public MockHandler(Feature feature) {70 this(feature, null);71 }72 public MockHandler(Feature feature, Map<String, Object> args) {73 this(Collections.singletonList(feature), args);74 }75 public MockHandler(List<Feature> features) {76 this(features, null);77 }78 public MockHandler(List<Feature> features, Map<String, Object> args) {79 for (Feature feature : features) {80 FeatureRuntime featureRuntime = FeatureRuntime.of(Suite.forTempUse(), feature, args);81 FeatureSection section = new FeatureSection();82 section.setIndex(-1); // TODO util for creating dummy scenario83 Scenario dummy = new Scenario(feature, section, -1);84 section.setScenario(dummy);85 ScenarioRuntime runtime = new ScenarioRuntime(featureRuntime, dummy);86 initRuntime(runtime);87 if (feature.isBackgroundPresent()) {88 // if we are within a scenario already e.g. karate.start(), preserve context89 ScenarioEngine prevEngine = ScenarioEngine.get();90 try {91 ScenarioEngine.set(runtime.engine);92 for (Step step : feature.getBackground().getSteps()) {93 Result result = StepRuntime.execute(step, runtime.actions);94 if (result.isFailed()) {95 String message = "mock-server background failed - " + feature + ":" + step.getLine();96 runtime.logger.error(message);97 throw new KarateException(message, result.getError());98 }99 }100 } finally {101 ScenarioEngine.set(prevEngine);102 }103 }104 corsEnabled = corsEnabled || runtime.engine.getConfig().isCorsEnabled();105 globals.putAll(runtime.engine.detachVariables());106 runtime.logger.info("mock server initialized: {}", feature);107 this.features.put(feature, runtime);108 }109 }110 private void initRuntime(ScenarioRuntime runtime) {111 runtime.engine.setVariable(PATH_MATCHES, (Function<String, Boolean>) this::pathMatches);112 runtime.engine.setVariable(PARAM_EXISTS, (Function<String, Boolean>) this::paramExists);113 runtime.engine.setVariable(PARAM_VALUE, (Function<String, String>) this::paramValue);114 runtime.engine.setVariable(METHOD_IS, (Function<String, Boolean>) this::methodIs);115 runtime.engine.setVariable(TYPE_CONTAINS, (Function<String, Boolean>) this::typeContains);116 runtime.engine.setVariable(ACCEPT_CONTAINS, (Function<String, Boolean>) this::acceptContains);117 runtime.engine.setVariable(HEADER_CONTAINS, (BiFunction<String, String, Boolean>) this::headerContains);118 runtime.engine.setVariable(BODY_PATH, (Function<String, Object>) this::bodyPath);119 runtime.engine.init();120 }121 private static final Result PASSED = Result.passed(0);122 private static final String ALLOWED_METHODS = "GET, HEAD, POST, PUT, DELETE, PATCH";123 @Override124 public synchronized Response handle(Request req) { // note the [synchronized]125 if (corsEnabled && "OPTIONS".equals(req.getMethod())) {126 Response response = new Response(200);127 response.setHeader("Allow", ALLOWED_METHODS);128 response.setHeader("Access-Control-Allow-Origin", "*");129 response.setHeader("Access-Control-Allow-Methods", ALLOWED_METHODS);130 List<String> requestHeaders = req.getHeaderValues("Access-Control-Request-Headers");131 if (requestHeaders != null) {132 response.setHeader("Access-Control-Allow-Headers", requestHeaders);133 }134 return response;135 }136 String path = req.getPath();137 if (!path.isEmpty()) {138 req.setPath(path.substring(prefix.length()));139 }140 for (Map.Entry<Feature, ScenarioRuntime> entry : this.features.entrySet()) {141 Feature feature = entry.getKey();142 ScenarioRuntime runtime = entry.getValue();143 // important for graal to work properly144 Thread.currentThread().setContextClassLoader(runtime.featureRuntime.suite.classLoader);145 LOCAL_REQUEST.set(req);146 req.processBody();147 ScenarioEngine engine = createScenarioEngine(req, runtime);148 Map<String, List<Map<String, Object>>> parts = req.getMultiParts();149 if (parts != null) {150 engine.setHiddenVariable(REQUEST_PARTS, parts);151 }152 for (FeatureSection fs : feature.getSections()) {153 if (fs.isOutline()) {154 runtime.logger.warn("skipping scenario outline - {}:{}", feature, fs.getScenarioOutline().getLine());155 break;156 }157 Scenario scenario = fs.getScenario();158 if (isMatchingScenario(scenario, engine)) {159 Map<String, Object> configureHeaders;160 Variable response, responseStatus, responseHeaders, responseDelay;161 ScenarioActions actions = new ScenarioActions(engine);162 Result result = PASSED;163 result = executeScenarioSteps(feature, runtime, scenario, actions, result);164 engine.mockAfterScenario();165 configureHeaders = engine.mockConfigureHeaders();166 response = engine.vars.remove(ScenarioEngine.RESPONSE);167 responseStatus = engine.vars.remove(ScenarioEngine.RESPONSE_STATUS);168 responseHeaders = engine.vars.remove(ScenarioEngine.RESPONSE_HEADERS);169 responseDelay = engine.vars.remove(RESPONSE_DELAY);170 globals.putAll(engine.detachVariables());171 Response res = new Response(200);172 if (result.isFailed()) {173 response = new Variable(result.getError().getMessage());174 responseStatus = new Variable(500);175 } else {176 if (corsEnabled) {177 res.setHeader("Access-Control-Allow-Origin", "*");178 }179 res.setHeaders(configureHeaders);180 if (responseHeaders != null && responseHeaders.isMap()) {181 res.setHeaders(responseHeaders.getValue());182 }183 if (responseDelay != null) {184 res.setDelay(responseDelay.getAsInt());185 }186 }187 if (response != null && !response.isNull()) {188 res.setBody(response.getAsByteArray());189 if (res.getContentType() == null) {190 ResourceType rt = ResourceType.fromObject(response.getValue());191 if (rt != null) {192 res.setContentType(rt.contentType);193 }194 }195 }196 if (responseStatus != null) {197 res.setStatus(responseStatus.getAsInt());198 }199 return res;200 }201 }202 }203 logger.warn("no scenarios matched, returning 404: {}", req); // NOTE: not logging with engine.logger204 return new Response(404);205 }206 private Result executeScenarioSteps(Feature feature, ScenarioRuntime runtime, Scenario scenario, ScenarioActions actions, Result result) {207 for (Step step : scenario.getSteps()) {208 result = StepRuntime.execute(step, actions);209 if (result.isAborted()) {210 runtime.logger.debug("abort at {}:{}", feature, step.getLine());211 break;212 }213 if (result.isFailed()) {214 String message = "server-side scenario failed, " + feature + ":" + step.getLine()215 + "\n" + step.toString() + "\n" + result.getError().getMessage();216 runtime.logger.error(message);217 break;218 }219 }220 return result;221 }222 private ScenarioEngine createScenarioEngine(Request req, ScenarioRuntime runtime) {223 ScenarioEngine engine = new ScenarioEngine(runtime, new HashMap<>(globals));224 ScenarioEngine.set(engine);225 engine.init();226 engine.setVariable(ScenarioEngine.REQUEST_URL_BASE, req.getUrlBase());227 engine.setVariable(ScenarioEngine.REQUEST_URI, req.getPath());228 engine.setVariable(ScenarioEngine.REQUEST_METHOD, req.getMethod());229 engine.setVariable(ScenarioEngine.REQUEST_HEADERS, req.getHeaders());230 engine.setVariable(ScenarioEngine.REQUEST, req.getBodyConverted());231 engine.setVariable(REQUEST_PARAMS, req.getParams());232 engine.setVariable(REQUEST_BYTES, req.getBody());233 return engine;234 }235 private boolean isMatchingScenario(Scenario scenario, ScenarioEngine engine) {236 String expression = StringUtils.trimToNull(scenario.getName() + scenario.getDescription());237 if (expression == null) {238 engine.logger.debug("default scenario matched at line: {}", scenario.getLine());239 return true;240 }241 try {242 Variable v = engine.evalJs(expression);243 if (v.isTrue()) {244 engine.logger.debug("scenario matched at line {}: {}", scenario.getLine(), expression);245 return true;246 } else {247 engine.logger.trace("scenario skipped at line {}: {}", scenario.getLine(), expression);248 return false;249 }250 } catch (Exception e) {251 engine.logger.warn("scenario match evaluation failed at line {}: {} - {}", scenario.getLine(), expression, e + "");252 return false;253 }254 }255 public boolean pathMatches(String pattern) {256 String uri = LOCAL_REQUEST.get().getPath();257 Map<String, String> pathParams = HttpUtils.parseUriPattern(pattern, uri);258 if (pathParams == null) {259 return false;260 } else {261 ScenarioEngine.get().setVariable(PATH_PARAMS, pathParams);262 return true;263 }264 }265 public boolean paramExists(String name) {266 Map<String, List<String>> params = LOCAL_REQUEST.get().getParams();267 return params != null && params.containsKey(name);268 }269 public String paramValue(String name) {270 return LOCAL_REQUEST.get().getParam(name);271 }272 public boolean methodIs(String name) { // TODO no more supporting array arg273 return LOCAL_REQUEST.get().getMethod().equalsIgnoreCase(name);274 }275 public boolean typeContains(String text) {276 String contentType = LOCAL_REQUEST.get().getContentType();277 return contentType != null && contentType.contains(text);278 }279 public boolean acceptContains(String text) {280 String acceptHeader = LOCAL_REQUEST.get().getHeader("Accept");281 return acceptHeader != null && acceptHeader.contains(text);282 }283 public boolean headerContains(String name, String value) {284 List<String> values = LOCAL_REQUEST.get().getHeaderValues(name);285 if (values != null) {286 for (String v : values) {287 if (v.contains(value)) {288 return true;289 }...

Full Screen

Full Screen

typeContains

Using AI Code Generation

copy

Full Screen

1def response = call read('classpath:mock-handler-typeContains.feature')2response.typeContains('application/json')3response.typeContains('application/xml') == false4def response = call read('classpath:mock-handler-typeContains.feature')5response.typeContains('application/json')6response.typeContains('application/xml') == false7def response = call read('classpath:mock-handler-typeContains.feature')8response.typeContains('application/json')9response.typeContains('application/xml') == false10def response = call read('classpath:mock-handler-typeContains.feature')11response.typeContains('application/json')12response.typeContains('application/xml') == false13def response = call read('classpath:mock-handler-typeContains.feature')14response.typeContains('application/json')15response.typeContains('application/xml') == false16def response = call read('classpath:mock-handler-typeContains.feature')17response.typeContains('application/json')18response.typeContains('application/xml') == false19def response = call read('classpath:mock-handler-typeContains.feature')20response.typeContains('application/json')21response.typeContains('application/xml') == false22def response = call read('classpath:mock-handler-typeContains.feature')23response.typeContains('application/json')24response.typeContains('application/xml') == false25def response = call read('classpath:mock-handler-typeContains.feature')26response.typeContains('application/json')27response.typeContains('application/xml') == false

Full Screen

Full Screen

typeContains

Using AI Code Generation

copy

Full Screen

1assertThat(“mockHandler”, mockHandler, typeContains(“com.intuit.karate.core.MockHandler”))2assertThat(“mockHandler”, mockHandler, typeContains(“MockHandler”))3assertThat(“mockHandler”, mockHandler, typeContains(“Handler”))4assertThat(“mockHandler”, mockHandler, typeContains(“Mock”))5assertThat(“mockHandler”, mockHandler, typeContains(“mock”))6assertThat(“mockHandler”, mockHandler, typeContains(“mockHandler”))7assertThat(“mockHandler”, mockHandler, typeContains(“MockHandler”))8assertThat(“mockHandler”, mockHandler, typeContains(“mockHandler”))9assertThat(“mockHandler”, mockHandler, typeContains(“MockHandler”))10assertThat(“mockHandler”, mockHandler, typeContains(“mockHandler”))11assertThat(“mockHandler”, mockHandler, typeContains(“MockHandler”))12assertThat(“mockHandler”, mockHandler, typeContains(“mockHandler”))13assertThat(“mockHandler”, mockHandler, typeContains(“MockHandler”))14assertThat(“mockHandler”, mockHandler, typeContains(

Full Screen

Full Screen

typeContains

Using AI Code Generation

copy

Full Screen

1* def mockHandler = read('classpath:com/intuit/karate/mock/mock-handler.js')2* def response = { a: 1, b: 2, c: 3 }3* match mockHandler.typeContains(response, 'a')4* match mockHandler.typeContains(response, 'b')5* match mockHandler.typeContains(response, 'c')6* match !mockHandler.typeContains(response, 'd')7[INFO] --- karate-core:0.9.5.RC1:exec (default) @ karate-demo ---8[INFO] 17:31:02.059 [main] DEBUG com.intuit.karate - karate.options: {}

Full Screen

Full Screen

typeContains

Using AI Code Generation

copy

Full Screen

1 * def mockHandler = call read('classpath:com/intuit/karate/mock/typeContains.feature@mockHandler')2 * def response = mockHandler.typeContains(type)3 * def mockHandler = call read('classpath:com/intuit/karate/mock/typeContains.feature@mockHandler')4 * def response = mockHandler.typeContains(type)5 * def mockHandler = call read('classpath:com/intuit/karate/mock/typeContains.feature@mockHandler')6 * def response = mockHandler.typeContains(type)7 * def mockHandler = new com.intuit.karate.core.MockHandler()8 * def response = mockHandler.typeContains(type)9 * def response = mockHandler.typeContains(type)10 * def response = mockHandler.typeContains(type)11* def mockHandler = call read('classpath:com/intuit/karate/mock/typeContains.feature@mockHandler')12* def response = mockHandler.typeContains(type)13* def mockHandler = call read('classpath:com/intuit/karate/mock/typeContains.feature@mockHandler')14* def response = mockHandler.typeContains(type)15* def mockHandler = call read('classpath:com/intuit/karate

Full Screen

Full Screen

typeContains

Using AI Code Generation

copy

Full Screen

1* def mockHandler = com.intuit.karate.core.MockHandler.getInstance()2* def mockResponse = mockHandler.typeContains('application/json')3* match mockResponse == { "message": "Hello World!" }4* def mockHandler = com.intuit.karate.core.MockHandler.getInstance()5* def mockResponse = mockHandler.typeContains('application/xml')6* match mockResponse == { "message": "Hello World!" }7* def mockHandler = com.intuit.karate.core.MockHandler.getInstance()8* def mockResponse = mockHandler.typeContains('text/plain')9* match mockResponse == { "message": "Hello World!" }10* def mockHandler = com.intuit.karate.core.MockHandler.getInstance()11* def mockResponse = mockHandler.typeContains('text/html')12* match mockResponse == { "message": "Hello World!" }13* def mockHandler = com.intuit.karate.core.MockHandler.getInstance()14* def mockResponse = mockHandler.typeContains('text/xml')15* match mockResponse == { "message": "Hello World!" }16* def mockHandler = com.intuit.karate.core.MockHandler.getInstance()17* def mockResponse = mockHandler.typeContains('text/css')18* match mockResponse == { "message": "Hello World!" }

Full Screen

Full Screen

typeContains

Using AI Code Generation

copy

Full Screen

1def mock = mockHandler.getMock('mockName')2{3}4{5}6{7}8{9}10{11}12mock.when(request).thenReturn(response)13assert mockHandler.typeContains(mock, request) == true14assert mockHandler.typeContains(mock, requestWithDifferentType) == true15assert mockHandler.typeContains(mock, requestWithDifferentData) == false16assert mockHandler.typeContains(mock, requestWithDifferentStructure) == false17def mock = mockHandler.getMock('mockName')18{19}20{21}22{23}24{25}26{27}28mock.when(request).thenReturn(response)29assert mockHandler.typeContains(mock, request) == true30assert mockHandler.typeContains(mock, requestWithDifferentType) ==

Full Screen

Full Screen

typeContains

Using AI Code Generation

copy

Full Screen

1* def MockHandler = Java.type('com.intuit.karate.core.MockHandler')2* def handler = new MockHandler(null)3* def map = { foo: 'bar' }4* handler.typeContains(map, 'bar')5* handler.typeContains(map, 'baz')6* handler.typeContains(list, 'bar')7* handler.typeContains(list, 'baz')8* handler.typeContains(str, 'bar')9* handler.typeContains(str, 'baz')10* handler.typeContains(null, 'bar')11* handler.typeContains(null, 'baz')12* handler.typeContains(123, 'bar')13* handler.typeContains(123, 'baz')14* handler.typeContains(true, 'bar')15* handler.typeContains(true, 'baz')16* handler.typeContains(123.45, 'bar')17* handler.typeContains(123.45, 'baz')18* handler.typeContains(123.45, '123.45')19* handler.typeContains(123.45, '123.4')20* handler.typeContains(123.45, '123.45', 2)21* handler.typeContains(123.45, '123.4', 2)22* handler.typeContains(123.45, '123.45', 3)23* handler.typeContains(123.45, '123.4', 3)24* handler.typeContains(123.45, '123.45', 4)25* handler.typeContains(123.45, '123.4', 4)26* handler.typeContains(123.45, '123.45', 5)27* handler.typeContains(123.45, '123.4', 5)28* handler.typeContains(123.45, '123.45', 6)29* handler.typeContains(123.45, '123.4', 6)30* handler.typeContains(123.45, '123.45', 7)31* handler.typeContains(123.45, '123.4', 7)32* handler.typeContains(123.45, '123.45', 8)33* handler.typeContains(123.45, '123.4', 8)

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 Karate 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