Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Match Contains for objects changes to equals when running recursively #826

Closed
Gokuroro opened this issue Jul 12, 2019 · 17 comments
Closed
Assignees
Milestone

Comments

@Gokuroro
Copy link

When testing for match actual contains expected and the structure is more complex (objects containing objects) the deeper tests will not be "contains", but "equals" instead.

Working Example:

Scenario: Test 1 - Shallow contains - Works
	Given def original = { a: 1, b: 2, c: 3, d: { a: 1, b: 2 } }
	And def expected = { a: 1, c: 3, }
	Then match original contains expected

Not Working Example:

Scenario: Test 2 - Deep contains - Does not work
	Given def original = { a: 1, b: 2, c: 3, d: { a: 1, b: 2 } }
	And def expected = { a: 1, c: 3, d: { b: 2 } }
	Then match original contains expected

The second example fails with the message:
path: $.d, actual: {a=1, b=2}, expected: {b=2}, reason: actual value has 1 more key(s) than expected: {a=1}

Given it is a "contains" test, the test should not fail due to the actual having more keys than the expected (same way as it works for the first example).

@ptrthomas
Copy link
Member

This is a "wontfix" for me since you have the following reasonable, easier to grok approach:

Given def original = { a: 1, b: 2, c: 3, d: { a: 1, b: 2 } }
And def chunk = { b: 2 }
And def expected = { a: 1, c: 3, d: '#(^chunk)' }
Then match original contains expected

feel free to challenge, or better still contribute a fix, then maybe you will understand why :P

@Gokuroro
Copy link
Author

The challenging on my part is that when I send an input for an update method and need to check if the result is correct (and it sends extra data). THAT SAID, I'll take a look into the code and try to understand the reasoning behind it.
Thank you for your input.

@ptrthomas
Copy link
Member

I send an input for an update method and need to check if the result is correct (and it sends extra data)

sorry that's hard to understand. can you explain that with an example and I can either advise how you can handle that with existing karate features - or be convinced that karate needs to change

@Gokuroro
Copy link
Author

Gokuroro commented Jul 13, 2019

Example given would be an update/create API method which receives something like:

{
   "name": "UserName",
   "address": {
      "line1": "address line",
      "city": "My City"
   }
}

And it (or another endpoint) returns something like:

{
   "name": "UserName",
   "id": 1,
   "address": {
      "line1": "address line",
      "line2": "",
      "city": "My City"
   }
}

(line2 being an optional field for create/update, so sending it is not needed, but the GET/response will always return it)
This is a hypothetical example, in the real world there may be deeper levels of small differences like that which just manipulating the input for comparison may not be ideal.

@ptrthomas ptrthomas self-assigned this Jul 13, 2019
@ptrthomas ptrthomas added this to the 0.9.5 milestone Jul 13, 2019
@ptrthomas
Copy link
Member

@Gokuroro okay, that does make sense ! I think I have fixed this in the develop branch can you check. dev instructions are in the wiki: https://github.com/intuit/karate/wiki/Developer-Guide

@ptrthomas ptrthomas reopened this Jul 13, 2019
@Gokuroro
Copy link
Author

Gokuroro commented Jul 13, 2019

Looking into it to try and do some tests around it.

Edit: Sorry, I cannot seem to make it work. I cloned and checked out the develop branch, tried running both mvn clean install -P pre-release and mvn clean install -P pre-release -DskipTests, both failing at the karate-ui tests.
If this makes any difference, I'm trying this in Linux.

Edit 2: It seems to indeed be related to Linux and the latest versions of the UI

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile (default-compile) on project karate-ui: Compilation failure
[ERROR] /home/gokuroro/Project/karate/karate-ui/src/main/java/com/intuit/karate/ui/ConsolePanel.java:[9,23] cannot access javafx.geometry.Insets
[ERROR]   bad class file: /home/gokuroro/.m2/repository/org/openjfx/javafx-graphics/12-ea+9/javafx-graphics-12-ea+9-linux.jar(javafx/geometry/Insets.class)
[ERROR]     class file has wrong version 55.0, should be 52.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.

@ptrthomas
Copy link
Member

@Gokuroro it would help if you figure out a solution else you can wait for the 0.9.5 release I guess - if anyone else is reading this thread please help. FYI the build works in CI: https://travis-ci.org/intuit/karate

@Gokuroro
Copy link
Author

Gokuroro commented Jul 13, 2019

@ptrthomas I did some more tests and unfortunately I could not find a way to fix that compilation issue. I don't think I have enough knowledge to go further as of now, but if it helps I can try to think some more scenarios to add to your tests and send a pull request or something.
Thank you very much for the enhancement!

@ptrthomas
Copy link
Member

@Gokuroro I made an edit to the developer guide wiki - so you can choose to comment out the karate-ui module without affecting karate-core would be great to see if that works for you, and it will help others

@Gokuroro
Copy link
Author

@ptrthomas sorry for taking so long. Here is what I have currently:

  • wiki was completely right, I was using Open JDK 8;
  • could not install Oracle JDK 8 from Arch Linux;
  • installed Oracle JDK 9 and 12;
  • Oracle JDK 12 failed at karate-netty;
  • Oracle JDK 9 failed at karate-demo, karate-mock-servlet and karate-jersey. Commenting them out builds it successfully;
  • during the build, it seems like there were some test failures (from the quick info that went through the compilation messages) but even then I got SUCCESS for karate-parent, karate-core, karate-apache, karate-ui, karate-junit4, karate-junit5, karate-netty, karate-gatling and karate-archetype.
    I will see if I can get JDK8 working in my machine and try again. In the meantime is there anything I can contribute with?

@ptrthomas
Copy link
Member

@Gokuroro this helps. I propose we focus on Java 9. one thing I need to do is make the karate-ui a "Java module". anyway if you can see how to get the JDK 9 build passing, even if you feed me some diagnosis - that would be a great start

@Gokuroro
Copy link
Author

Sorry for the late reply on this one. Between 70h/week on 2 projects and a presentation for a talk I'm working on, this ended up being forgotten. I did try to work on this for a bit, but I have to admit my lack of knowledge in Java (and maven in general) do not help much. I'll try to work on this, along with testing the files open during report issues this week.

@Gokuroro
Copy link
Author

News: I was able to have a "BUILD SUCCESS" by @ignoreing the following feature files for karate-demo:

  • cats.feature
  • loop.feature
  • cats-xml.feature
  • create-xml.feature

It looks like the service being tested for xml is returning 406 instead of 200 in some cases (which may be the sole reason for the rest of the issues, though I'm not sure).

If I change the expected status from 200 to 406, I end up getting type mismatches (but this may be expected, if the issue is actually on the service side).

I'll try adding a few positive scenarios for testing this (deep contains) in the karate-demo. How would you recommend to add scenarios where the expected is for the scenario to fail (to add some negative cases for this)?

@ptrthomas
Copy link
Member

@Gokuroro good news, the not-contains thing is fixed: baf0cf9

@ptrthomas
Copy link
Member

released 0.9.5

SalilGupta12 added a commit to SalilGupta12/karate that referenced this issue Jul 27, 2020
* webauto: this is big, we have friendly locators

* webauto: move finder & mouse to interfaces
so that the method signatures are easier to read for those viewing via readme / doc links

* adjust maven profile for ui in hope that it works

* Revert "Add afterFeature and beforeFeature hooks, RunnerBuilder"

This reverts commit 88026a2

* Junit4 can run tests in parallel

* improve zip based on feedback and doc

* more doc updates based on feedback

* implemented waitForText() short-cut

* webauto: decided to rename waitForText() and waitForEnabled()

* Revert "Merge pull request karatelabs#871 from pshrm/develop"

This reverts commit cb905bd, reversing
changes made to 0da4f41.

* slight improve to timeline view tooltips

* additional tweak for karatelabs#826 replaces karatelabs#863

* unified cli for karate core somewhat karatelabs#827
in the future, the netty picocli has to be merged and we also would have native html parallel reports
but for now, we can start testing the vs code plugin for this
parallel execution will now generate native html report and continuously update the results-json.txt
which the plugin can read and update etc

* default to proper karate runner system always

* fix bugs with cli runner and switch netty fatjar to runner builder karatelabs#827

* big improvement to intellij ide support
the test results will have timings and logs associated correctly
also using the unified karate short-syntax for scenario / line number etc

* webauto: decided to use 1 based indexing for friendly locators
trust me it jst did not feel right with zero based indexing

* thats what happens when you dont run the local tests

* webauto: focus() breaks on fancy input fields, fixed

* hooks expanded for all cases, beforeAll() afterAll()
and even beforeStep() afterStep()

* webauto: improve target api design

* webauto: handle cookie failure in web-driver

* fix for focus() js and chrome cookie error routine

* some long pending call vs read doc

* minor cosmetic readme tweak

* added a couple more crazy examples

* webauto: reduce intensity of friendly locator search

* gracefully fail if browser / input field type
does not support moving text cursor to end

* webauto: implemented waitForResultCount()

* better error message if relative path does not exist

* draft version of vscode debug adapter protocol implementation

* move debug server test to junit so that karate-apache is on cp

* Add resources methods to the Builder

* vscode debug server start option
for both standalone jar cli and the runner, so this can be fired in a maven project
also upgraded picocli to latest for the -d arity 0..1 feature

* minor loggin changes to debug server

* use of waitForResultCount

* debug adapter decoder bad logic fixed

* debug server now supports called features
almost everything, step-in, step-out, multiple breakpoints

* get build to work on windows and clean up
this breaks karatelabs#751 but needs investigation / reopen

* refactor / cleanup to prev commit ref karatelabs#751

* debug adapter protocol: implemented repl evaluate and step-back

* debug server: hot reload of code works
so after editing a feature in the editor, the restart button on the debug toolbar
needs to be used to trigger the hot-reload
limitation for now: only line edits, no line adds or deletes will be supported
but still, this is going to be awesome

* tweak to fileutils for absolute file paths
which does come into play when doing vs code debug sessions

* debug: another breakthrough - we can debug parallel threads
and now the vscode launch can accept the whole command-line parallel-threads tags and all

* cleanup for prev commit

* standalone jar cli error stack trace trimmed
also docs here and there

* debug server proper optimization of netty decoder

* improve prev commit even more

* some license headers were missing, added

* fix relative path resolution, no more weird ///

* wip distributed testing capability
abstraction of job server and executor nodes call back over http
wip docker image that includes karate standalone which acts as an agent
we can get all reports and logs back from remote executors - todo aggregate

* jobdist: wip continues
karate-chrome docker container now based on java+maven and with standalone jar
improve supervisord for shutdown from within a docker container via bash command
improved / cleanup of job-executor code

* jobdist: reports aggregation working after scale-out
able to convert cucumber json back to result java objects on server

* distjob: wip ui test videos can be retrieved
now just need to fiddle with paths and some env props in java
todo background step cucumber-json conversion

* distjob: ironed out most issues with workflow
and the video file corruption problem is solved

* distjob: wip proven to work on jenkins + kubernetes
one thing pending is video for distributed mode

* distjob: improvements, video embed

* fix bad bugs in job / exec

* fix nasty bug with nested call with driver

* intro beforeStart and afterStop for driver config
greatly improved docker image stability - for now not starting socat for remote debug todo

* fix step out in debug server
docker now can start ffmpeg if needed for docker target

* improve / simplify fat-docker build

* always wait for browser / driver port even if not starting

* no report for empty features

* fixed debug npe for background steps

* screen recording for mobile automation
added startRecordingScreen and stopRecordingScreen API
implemented saveRecordingScreen with embed to html feature

* distjob: bullet-proofing and some testing

* improve timeline html tooltip

* debug: log message for hot reload implemented

* debug: improve user feedback

* debug: improve log for prev commit

* debug: try system exit for clean stop

* added appium api to readme doc

* review changes karatelabs#895

* distjob: lot of fixes and bulletproofing saving work

* update release process after 0.9.5.RC2

* adding back the simple jobserver test it is needed

* fixed bugs in debug server
any step failure resulted in no more steps working, fixed
variable string conversion failure would crash session

* fix for debug and maven class paths

* decided to do the right thing and change driver scripts() to scriptAll()
also introduced the especially useful in debug repl highlightAll()

* debug support should work for gradle now

* adding local docker demo runner

* driver is auto passed to called features
and does not matter if shared or isolated scope
here we have a bending of the rules, a driver is always global

* lower-case-headers applies only to keys not values

* one line change makes jdk12 compile work for 8 runtime

* attempt windows fix for paths with spaces

* attempt fix for windows single feature debug session

* introducing scriptAll() that takes 3rd filter-predicate arg

* renamed findAll() to locateAll() and intro locate()

* added 3rd delay arg to driver input api

* for sake of debugger, driver element to be stringify-able

* classpath from jar was not working in some cases

* minor doc updates before rc3

* big change: we have killed the karate ui
this means everything builds on openjdk 8-12 and no more build and ci problems for developers
the karate-ui is not needed anymore because we have the visual studio code extension for debugging
and we really tried to use javafx but there were too many issues

* doc updates since we killed the karate-ui

* changes for karatelabs#903

* doc updates

* one more doc tweak

* ci can be normal openjdk now

* ci mvn cache, and goodbye karate-ui

* some doc edits, and to test ci

* improve contributor guides

* wip: working on distributed gatling support
and realized we need a stand-alone gatling example just like we have jobserver
so decided to finally open an examples folder that will hold multiple examples of which
we have a few already, so they can now live in the karate monorepo

* readme edits

* distributed job server working for gatling, todo test docker

* job executor now will ping server with a heartbeat every 15 seconds
this is great to ensure all remote ends are healthy, in the future this will allow us to do the following
a) slurp logs from remote executors as long running test is progressing, think gatling - so we can generate reports any-time
b) abort a test - when the next heartbeat comes in we can respond with a special case abort message
the heartbeat has to use a second http client else severe concurrecy issues happen
so this second thread can now throw an exception which will cause the main executor loop to shutdown

* ignore examples jar files

* add hot reload functionnality for mock server

* multipart/form-data endpoint success from REST client but fails in Karate tests karatelabs#797

* minor edit for driver.title readme

* make sure docker container has deps pre-loaded for gatling
improve logs for job server (more at info level) to give confidence that things are happening etc

* rebrand to karate ui, and added link to readme

* change file change handler to use Jave Watchservice instead of a sleep loop

* implemented local address support for gatling
refer https://stackoverflow.com/a/55458266/143475

* added missing highlight() to element / finder api
also added friendly locator find() option to also use visible text, not just tag name

* code cleanup after karatelabs#909

* set type so that it does not create work dir with name null

* HACKTOBERFEST-match != fails with two integers

* fire change event for js based select-box twiddling

* added retry chained to finder / element

* doc edits

* MockSpringMvcServlet issue for @ControllerAdvice NoHandlerFoundException

* code cleanup after karatelabs#931

* Update consumer-driven-contracts to spring boot 2

Update consumer-driven-contracts to spring boot 2

* making correction to karatelabs#932

* update supervisord command to be the correct path for google-chrome

* Update Chrome.java

* Update Chrome.java

* Update Chrome.java

* fix gatling value copy edge case ref karatelabs#936

* minor code cleanup

* Fix formatting in pages site

* Fix formatting in pages site

* escape intellij magic log strings karatelabs#954

* escape intellij magic log strings karatelabs#954

* gatling url pattern bug
pretty bad miss that causes tests that use the comma-delimited path keyword to lose the forward-slashes
so a url like http://foo/bar/baz would become http://foo/barbaz

* release tweaks for 0.9.5.RC4

* edge case syntax error should not hang tests #959

* safer impl for #959

* finally, solution for custom masking of http headers / payloads in logs karatelabs#699
also attempted along with this is more control over [report verbosity] possible from the execution-hook

* doc edits minor

* http log masking for jersey also karatelabs#699

* fix for karatelabs#970 and replace karatelabs#973

* some doc / typo edits

* dynamic scenario outline pre-scenario vars deep-copy was losing js functions karatelabs#982

* error handling for karatelabs#967

* updating docs

* dont auto-close driver in called scenarios karatelabs#969

* implemented tags support in karate-gatling karatelabs#968

* attempt to fix karatelabs#924 but doesnt seem to work

* updated docs to use Runner.path() builder API
and not the KarateOptions annotation for parallel test execution

* edit release process cheatsheet

* edge case for regex combined with array fuzzy karatelabs#988

* junit 5 should fail if no features found karatelabs#989
also decided to rename the static method / helper to run()

* update doc for karatelabs#989

* edit readme for examples/jobserver

* add getPrevResponse() to scenario-context for advanced hook use-cases

* better xpath for wildcard with index karatelabs#993

* of all the times you commit without testing karatelabs#993

* doc edits and archetype sync for junit 5

* multipart streams will be re-readable for retry until karatelabs#999

* [break] implemented configure abortedStepsShouldPass karatelabs#755

* implemented driver poll for port configurable karatelabs#990

* implemented mock headerContains() karatelabs#997

* improve code for karatelabs#755

* Add support for optional body in Postman convert

Also adding whitespace to the Postman converted output.

* log collection for dynamic scenario outline karatelabs#1003

* input stream special handling in json embedded expressions karatelabs#1009

* doc edits and import cleanups

* Add logic for Postman import on netty CLI

* Include tests

* fix build after karatelabs#1011

* wip - introducing [karate-robot]
karate-robot is an attempt to build the following cross-platform capabilities into karate
a) native mouse events b) native keyboard events c) desktop image capture d) image matching
we have the basics in place for mac, linux and windows
decided to use the javacpp presets for opencv https://github.com/bytedeco/javacpp-presets/tree/master/opencv
also the [karate-chrome] docker image has been revamped - now includes an x-windows manager (fluxbox)
and is compatible with [karate-robot]
note that opencv on windows seems to be slow to startup / load the dll-s and may need investigation
otherwise we have the foundation in place to be able to use images to locate areas on the screen and navigate
todo: improve the robot api and add a configure option similar to karate driver (now branded as karate ui)
which will inject a [robot] object and helpers similar to how [driver] works today for karate ui

* [robot] keyword to init robot + config similar to [driver]
see feature file in commit for example

* [robot] working on image matching, introed region concept
and chainable api-s to find, click - also highlight() is working, very useful to troubleshoot image stuff
facing some challenges with more image matching, needs investigation
may need to deep dive into the opencv routine and look at other options, finding a set of matches instead of one
and also getting into thresholds, search types, image types (right now only grayscale) etc

* [robot] simple flow works
lesson learned - the way opencv image finding works currently requires the image to be the same size
we probably need a way to match even if scale is different, todo

* [robot] wip find by image even when scale is not 1:1
seems to be working and even came up with a threshold detection score based on trial and error
robot will now retry if image not found based on the threshold score calc
driver config now working to highlight match region if flag is true

* some places in docs / examples to use enhanced scenario outline

* support headless flag for firefox

* Update documentation

* Update documentation

* [robot] wip relaxing the image find threshold slightly

* synchronized getFreePort to avoid duplicate port assignments

* skip unnecessary window close on quit

* configure header / cookies now reflect in http-request-builder karatelabs#1025

* Always add 'alwaysMatch' block to capabilities

* make some readme section more clear

* improve readme

* fixed bugs in ui demo scripts

* cucumber tables will now appear in report json / html report karatelabs#1035

* Support acceptInsecureCerts in driver options

* Updated README with acceptInsecureCerts

* simplify w3c webdriver capabilties karatelabs#924
so the user can specify whatever is needed and we keep the karare side simple
this makes sense as there are so many options, eg saas / remote drivers

* improve upon prev commit karatelabs#924

* improve edit upon prev commit karatelabs#924

* update w3c capabilities handling karatelabs#924
also updated chrome-web-driver to be w3c compliant for latest chrome version
some new problems with safari, will defer

* always use w3c driver capabilities alwaysMatch  karatelabs#924

* update ui web examples

* upgrade apache httpclient version

* karate can now use a remote webdriver instance
added [webDriverUrl] key and some extra driver init logic and works fine against zalenium
breaking change for some of the wip appium work
see doc changes for all the details

* minor doc edits

* confirmed to work with aws device farm and selenium grid standalone
also changes to what was discussed in karatelabs#924
so now it is [webDriverSession] and not [webDriverCapabilities] so user has full control over the
webdriver POST to /session payload - which will take care of any remote / saas situation
and quirks of implementations like selenium grid
introduced [httpConfig] key and now you can configure the http client e.g. readTimeout which is
needed for aws as it can take a long time for a device / browser desktop to be provisioned
see readme edits for details

* fixed doc typo update

* refactored webdriver implementation
especially the start life-cycle, better error detection and handling on session fail
mobile / winappdriver breaking change for starting session, need to use [webDriverSession]

* fixed gaps in winappdriver demo

* improve stabilize ui infra
docker-target will pull only if flagged, and will remove container instance at end
added nice test to check docker container locally in demo/driver/core
chrome native will always wait for http to be ready

* ie driver wip

* iedriver tested and working fine

* added doc for iedriver

* more logical refactoring of ui driver packages

* added simple skeleton for testing / replicating karate ui issues

* null in dynamic scenario outline cell causes npe karatelabs#1045

* updated docs to point to external example

* fix link in prev commit

* fix link in prev commit 2

* ok last try for the readme tweak

* defensive coding for karatelabs#1047

* upgrade jersey version

* update docs

* [warn] karate.log() now pretty prints

* karate-robot ready for (experimental) release
now you can set a base-path from which images will be loaded
added readme to get things going

* prep doc for release wip

* update doc release wip

* doc edit wip

* prep release 0.9.5 final

* Bump netty.version from 4.1.37.Final to 4.1.50.Final in /karate-core

Bumps `netty.version` from 4.1.37.Final to 4.1.50.Final.

Updates `netty-handler` from 4.1.37.Final to 4.1.50.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.37.Final...netty-4.1.50.Final)

Updates `netty-codec-http` from 4.1.37.Final to 4.1.50.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.37.Final...netty-4.1.50.Final)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Peter Thomas <peter_thomas@intuit.com>
Co-authored-by: Sharma Prashant <Prashant.Sharma@swisscom.com>
Co-authored-by: lukas.cardot <lukas.cardot@ekino.com>
Co-authored-by: Peter Thomas <ptrthomas@gmail.com>
Co-authored-by: babusekaran <sekaranbabu@ymail.com>
Co-authored-by: BenjamQC <benjamin.andriolo@gmail.com>
Co-authored-by: Nishant-Sehgal <nishuchd36@gmail.com>
Co-authored-by: tbhasin <tamanna_bhasin@intuit.com>
Co-authored-by: Manoj Y <manoj_yadav@intuit.com>
Co-authored-by: BadgerOps <github@badgerops.net>
Co-authored-by: srangaraj1 <sivachithambaram_rangaraj@intuit.com>
Co-authored-by: ghostwriternr <ghostwriternr@gmail.com>
Co-authored-by: Thomas <pthomas3@intul177117d7e.corp.intuit.net>
Co-authored-by: Celeo <celeodor@gmail.com>
Co-authored-by: paaco <info@paaco.nl>
Co-authored-by: alexanderp <alexanderpaalvast@zlm.nl>
Co-authored-by: paaco <paaco@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@msharma555
Copy link

What would be the assertion if I want to validate if $.oType value should either be 'A' or 'B' in response

@ptrthomas
Copy link
Member

@msharma555 stack overflow pls: https://stackoverflow.com/a/50350442/143475

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants