How to use evalWith method of com.intuit.karate.http.ServerContext class

Best Karate code snippet using com.intuit.karate.http.ServerContext.evalWith

Source:ServerContext.java Github

copy

Full Screen

...56 private static final String READ = "read";57 private static final String RESOLVER = "resolver";58 private static final String READ_AS_STRING = "readAsString";59 private static final String EVAL = "eval";60 private static final String EVAL_WITH = "evalWith";61 private static final String GET = "get";62 private static final String UUID = "uuid";63 private static final String REMOVE = "remove";64 private static final String SWITCH = "switch";65 private static final String SWITCHED = "switched";66 private static final String AJAX = "ajax";67 private static final String HTTP = "http";68 private static final String RENDER = "render";69 private static final String TRIGGER = "trigger";70 private static final String REDIRECT = "redirect";71 private static final String AFTER_SETTLE = "afterSettle";72 private static final String TO_JSON = "toJson";73 private static final String TO_JSON_PRETTY = "toJsonPretty";74 private static final String FROM_JSON = "fromJson";75 private static final String[] KEYS = new String[]{76 READ, RESOLVER, READ_AS_STRING, EVAL, EVAL_WITH, GET, UUID, REMOVE, SWITCH, SWITCHED, AJAX, HTTP,77 RENDER, TRIGGER, REDIRECT, AFTER_SETTLE, TO_JSON, TO_JSON_PRETTY, FROM_JSON};78 private static final Set<String> KEY_SET = new HashSet(Arrays.asList(KEYS));79 private static final JsArray KEY_ARRAY = new JsArray(KEYS);80 private final ServerConfig config;81 private final Request request;82 private boolean stateless;83 private boolean api;84 private boolean lockNeeded;85 private Session session;86 private boolean switched;87 private List<Map<String, Object>> responseTriggers;88 private List<String> afterSettleScripts;89 private final Map<String, Object> variables;90 public ServerContext(ServerConfig config, Request request) {91 this(config, request, null);92 }93 public ServerContext(ServerConfig config, Request request, Map<String, Object> variables) {94 this.config = config;95 this.request = request;96 this.variables = variables;97 HTTP_FUNCTION = args -> {98 HttpClient client = config.getHttpClientFactory().apply(request);99 HttpRequestBuilder http = new HttpRequestBuilder(client);100 if (args.length > 0) {101 http.url((String) args[0]);102 }103 return http;104 };105 RENDER_FUNCTION = o -> {106 if (o instanceof String) {107 JsEngine je = RequestCycle.get().getEngine();108 return TemplateUtils.renderResourcePath((String) o, je, config.getResourceResolver());109 }110 Map<String, Object> map;111 if (o instanceof Map) {112 map = (Map) o;113 } else {114 logger.warn("invalid argument to render: {}", o);115 return null;116 }117 Map<String, Object> templateVars = (Map) map.get("variables");118 String path = (String) map.get("path");119 if (path != null) {120 JsEngine je;121 if (templateVars == null) {122 je = RequestCycle.get().getEngine();123 } else {124 je = JsEngine.local();125 je.putAll(templateVars);126 }127 return TemplateUtils.renderResourcePath(path, je, config.getResourceResolver());128 }129 String html = (String) map.get("html");130 if (html == null) {131 logger.warn("invalid argument to render, path or html needed: {}", map);132 return null;133 }134 JsEngine je;135 if (templateVars == null) {136 je = RequestCycle.get().getEngine();137 } else {138 je = JsEngine.local();139 je.putAll(templateVars);140 }141 return TemplateUtils.renderHtmlString(html, je, config.getResourceResolver());142 };143 }144 private static final String DOT_JS = ".js";145 public void prepare() {146 String path = request.getPath();147 if (request.getResourceType() == null) {148 request.setResourceType(ResourceType.fromFileExtension(path));149 }150 String resourcePath = request.getResourcePath();151 if (resourcePath == null) {152 if (api) {153 String pathParam = null;154 String jsPath = path + DOT_JS;155 resourcePath = jsPath;156 if (!config.getJsFiles().contains(jsPath)) {157 List<String> pathParams = new ArrayList();158 request.setPathParams(pathParams);159 String temp = path;160 do {161 int pos = temp.lastIndexOf('/');162 if (pos == -1) {163 logger.debug("failed to extract path params: {} - {}", temp, this);164 break;165 }166 String pp = temp.substring(pos + 1);167 if (pathParams.isEmpty()) {168 pathParam = pp;169 }170 pathParams.add(pp);171 jsPath = temp.substring(0, pos) + DOT_JS;172 temp = temp.substring(0, pos);173 } while (!config.getJsFiles().contains(jsPath));174 resourcePath = jsPath;175 }176 request.setPathParam(pathParam);177 } else { // static, note that HTML is resolved differently, by template resolver178 resourcePath = path;179 }180 request.setResourcePath(resourcePath);181 }182 }183 public String getSessionCookieValue() {184 List<String> values = request.getHeaderValues(HttpConstants.HDR_COOKIE);185 if (values == null) {186 return null;187 }188 for (String value : values) {189 Set<Cookie> cookies = ServerCookieDecoder.STRICT.decode(value);190 for (Cookie c : cookies) {191 if (config.getSessionCookieName().equals(c.name())) {192 return c.value();193 }194 }195 }196 return null;197 }198 public String readAsString(String resource) {199 InputStream is = config.getResourceResolver().resolve(resource).getStream();200 return FileUtils.toString(is);201 }202 public Object read(String resource) {203 String raw = readAsString(resource);204 ResourceType resourceType = ResourceType.fromFileExtension(resource);205 if (resourceType == ResourceType.JS) {206 return eval(raw);207 } else {208 return JsValue.fromString(raw, false, resourceType);209 }210 }211 public Object eval(String source) {212 return RequestCycle.get().getEngine().evalForValue(source);213 }214 public Object evalWith(Object o, String source) {215 Value value = Value.asValue(o);216 return RequestCycle.get().getEngine().evalWith(value, source, true);217 }218 public String toJson(Object o) {219 Value value = Value.asValue(o);220 return new JsValue(value).toJsonOrXmlString(false);221 }222 public String toJsonPretty(Object o) {223 Value value = Value.asValue(o);224 return new JsValue(value).toJsonOrXmlString(true);225 }226 public ServerConfig getConfig() {227 return config;228 }229 public Request getRequest() {230 return request;231 }232 public Map<String, Object> getVariables() {233 return variables;234 }235 public Session getSession() {236 return session;237 }238 public void setSession(Session session) {239 this.session = session;240 }241 public boolean isLockNeeded() {242 return lockNeeded;243 }244 public void setLockNeeded(boolean lockNeeded) {245 this.lockNeeded = lockNeeded;246 }247 public boolean isStateless() {248 return stateless;249 }250 public void setStateless(boolean stateless) {251 this.stateless = stateless;252 }253 public boolean isAjax() {254 return request.isAjax();255 }256 public boolean isApi() {257 return api;258 }259 public void setApi(boolean api) {260 this.api = api;261 }262 public List<String> getAfterSettleScripts() {263 return afterSettleScripts;264 }265 public List<Map<String, Object>> getResponseTriggers() {266 return responseTriggers;267 }268 public void trigger(Map<String, Object> trigger) {269 if (responseTriggers == null) {270 responseTriggers = new ArrayList();271 }272 responseTriggers.add(trigger);273 }274 public void afterSettle(String js) {275 if (afterSettleScripts == null) {276 afterSettleScripts = new ArrayList();277 }278 afterSettleScripts.add(js);279 }280 private final Methods.FunVar GET_FUNCTION = args -> {281 if (args.length == 0 || args[0] == null) {282 return null;283 }284 String name = args[0].toString();285 KarateEngineContext kec = KarateEngineContext.get();286 if (args.length == 1) {287 return kec.getVariable(name);288 }289 if (kec.containsVariable(name)) {290 return kec.getVariable(name);291 } else {292 return args[1];293 }294 };295 296 private static final Supplier<String> UUID_FUNCTION = () -> java.util.UUID.randomUUID().toString();297 private static final Function<String, Object> FROM_JSON_FUNCTION = s -> JsValue.fromString(s, false, null);298 private final Methods.FunVar HTTP_FUNCTION; // set in constructor299 private final Function<Object, String> RENDER_FUNCTION; // set in constructor300 private final Consumer<String> SWITCH_FUNCTION = s -> {301 if (switched) {302 logger.warn("context.switch() can be called only once during a request, ignoring: {}", s);303 } else {304 switched = true;305 RequestCycle.get().setSwitchTemplate(s);306 KarateEngineContext.get().setRedirect(true);307 throw new RedirectException(s);308 }309 };310 private final Consumer<String> REDIRECT_FUNCTION = s -> {311 RequestCycle.get().setRedirectPath(s);312 KarateEngineContext.get().setRedirect(true);313 throw new RedirectException(s);314 };315 private static final BiFunction<Object, Object, Object> REMOVE_FUNCTION = (o, k) -> {316 if (o instanceof Map && k != null) {317 Map in = (Map) o;318 Map out = new HashMap(in);319 Object removed = out.remove(k.toString());320 if (removed == null) {321 logger.warn("nothing removed, key not present: {}", k);322 return o;323 } else {324 return JsValue.fromJava(out);325 }326 } else if (o != null) {327 logger.warn("unable to cast to map: {} - {}", o.getClass(), o);328 }329 return o;330 };331 @Override332 public Object getMember(String key) {333 switch (key) {334 case READ:335 return (Function<String, Object>) this::read;336 case READ_AS_STRING:337 return (Function<String, String>) this::readAsString;338 case EVAL:339 return (Function<String, Object>) this::eval;340 case EVAL_WITH:341 return (BiFunction<Object, String, Object>) this::evalWith;342 case GET:343 return GET_FUNCTION;344 case UUID:345 return UUID_FUNCTION;346 case TO_JSON:347 return (Function<Object, String>) this::toJson;348 case TO_JSON_PRETTY:349 return (Function<Object, String>) this::toJsonPretty;350 case FROM_JSON:351 return FROM_JSON_FUNCTION;352 case REMOVE:353 return REMOVE_FUNCTION;354 case SWITCH:355 return SWITCH_FUNCTION;...

Full Screen

Full Screen

evalWith

Using AI Code Generation

copy

Full Screen

1* def response = server.evalWith('return "Hello world"')2* def response = server.evalWith('return name', { name: 'John' })3* def response = server.evalWith('return name', { name: 'John' }, ['java.util.*'])4* def response = server.evalWith('return name', { name: 'John' }, ['java.util.*'], { name: 'John' })5* def response = server.evalWith('return name', { name: 'John' }, ['java.util.*'], { name: 'John' }, new ClassLoader())6* def response = server.eval('return "Hello world"')7* def response = server.eval('return name', { name: 'John' })8* def response = server.eval('return name', { name: 'John' }, ['java.util.*'])

Full Screen

Full Screen

evalWith

Using AI Code Generation

copy

Full Screen

1def response = com.intuit.karate.http.ServerContext.evalWith('function(){ return { status: 200, headers: { "Content-Type": "text/plain" }, body: "hello world" } }')2def response = com.intuit.karate.http.HttpClient.evalWith('function(){ return { status: 200, headers: { "Content-Type": "text/plain" }, body: "hello world" } }')3def response = com.intuit.karate.http.HttpResponse.evalWith('function(){ return { status: 200, headers: { "Content-Type": "text/plain" }, body: "hello world" } }')4def response = com.intuit.karate.http.HttpResponseBuilder.evalWith('function(){ return { status: 200, headers: { "Content-Type": "text/plain" }, body: "hello world" } }')5def response = com.intuit.karate.http.HttpResponseBuilder.evalWith('function(){ return { status: 200, headers: { "Content-Type": "text/plain" }, body: "hello world" } }')6def response = com.intuit.karate.http.HttpResponseBuilder.evalWith('function(){ return { status: 200, headers: { "Content-Type": "text/plain" }, body: "hello world" } }')

Full Screen

Full Screen

evalWith

Using AI Code Generation

copy

Full Screen

1* def response = server.evalWith('return { "name": "John" }')2* match response == { name: 'John' }3* def response2 = server.evalWith('return { "name": "John" }', { name: 'John' })4* match response2 == { name: 'John' }5* def response3 = server.evalWith('return { "name": "John" }', { name: 'John' }, 'application/json')6* match response3 == { name: 'John' }7* def response4 = server.evalWith('return { "name": "John" }', { name: 'John' }, 'application/json', { a: 1 })8* match response4 == { name: 'John' }9* def response5 = server.evalWith('return { "name": "John" }', { name: 'John' }, 'application/json', { a: 1 }, { b: 2 })10* match response5 == { name: 'John' }11* def response6 = server.evalWith('return { "name": "John" }', { name: 'John' }, 'application/json', { a: 1 }, { b: 2 }, { c: 3 })12* match response6 == { name: 'John' }13* def response7 = server.evalWith('return { "name": "John" }', { name: 'John' }, 'application/json', { a: 1 }, { b: 2 }, { c: 3 }, { d: 4 })14* match response7 == { name: 'John' }15* def response8 = server.evalWith('return { "name": "John" }', { name: 'John' }, 'application/json', { a: 1 }, { b: 2 }, { c: 3 }, { d: 4 }, { e: 5 })16* match response8 == { name: 'John' }17* def response9 = server.evalWith('return { "name": "John" }', { name: 'John' }, 'application/json', { a: 1 }, { b: 2 }, { c: 3 }, { d: 4 }, { e: 5 }, { f: 6 })18* match response9 == { name: '

Full Screen

Full Screen

evalWith

Using AI Code Generation

copy

Full Screen

1* def server = karate.get('server')2* def result = server.evalWith('return { foo: "bar" }')3* def result2 = server.evalWith('return { foo: "bar" }')4* match result == { foo: "bar" }5* match result2 == { foo: "bar" }6* def server = karate.get('server')7* def result = server.evalWith('return { foo: "bar" }')8* def result2 = server.evalWith('return { foo: "bar" }')9* match result == { foo: "bar" }10* match result2 == { foo: "bar" }11* def server = karate.get('server')12* def result = server.evalWith('return { foo: "bar" }')13* def result2 = server.evalWith('return { foo: "bar" }')14* match result == { foo: "bar" }15* match result2 == { foo: "bar" }16* def server = karate.get('server')17* def result = server.evalWith('return { foo: "bar" }')18* def result2 = server.evalWith('return { foo: "bar" }')19* match result == { foo: "bar" }20* match result2 == { foo: "bar" }21* def server = karate.get('server')22* def result = server.evalWith('return { foo: "bar" }')

Full Screen

Full Screen

evalWith

Using AI Code Generation

copy

Full Screen

1* def response = read('classpath:sample.json')2* def response = call read('classpath:sample.json')3* def response = call read('classpath:sample2.json')4* def response = call read('classpath:sample3.json')5* def response = read('classpath:sample.json')6* def response = call read('classpath:sample.json')7* def response = call read('classpath:sample2.json')8* def response = call read('classpath:sample3.json')9* def response = read('classpath:sample.json')10* def response = call read('classpath:sample.json')11* def response = call read('classpath:sample2.json')12* def response = call read('classpath:sample3.json')13* def response = call read('classpath:sample4.json')

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.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful