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

Add option for exclute test operation #58

Open
okrimsoft opened this issue Oct 23, 2022 · 3 comments
Open

Add option for exclute test operation #58

okrimsoft opened this issue Oct 23, 2022 · 3 comments

Comments

@okrimsoft
Copy link

Could be usefull add ability to disable test operation in JsonDiff
some node classes like fast-json-patch work also without and in websocket comunication can reduce traffic with large amount of change

if ($this->jsonPatch !== null) {
    if ( ! self::SKIP_TEST_ENTRIES ) {
        $this->jsonPatch->op(new Test($this->path, $original));
    }
    $this->jsonPatch->op(new Replace($this->path, $new));
}
sgehrig added a commit to sgehrig/json-diff that referenced this issue Feb 28, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
… patch

Adds feature requested in swaggest#58 (comment).

Using SKIP_TEST_OPS option will not include the test operations in the final JSON patch document.
@sgehrig
Copy link
Contributor

sgehrig commented Feb 28, 2025

Good point. I added #73 to introduce a new option SKIP_TEST_OPS that skips test operations when creating the JSON patch document.

@sgehrig
Copy link
Contributor

sgehrig commented Mar 1, 2025

This is our current workaround—just in case anyone is interested:

$p = array_values(
    array_filter(
        $r->getPatch()->jsonSerialize(), 
        static fn(object $op) => $op->op !== \Swaggest\JsonDiff\JsonPatch\Test::OP
    )
);

@sgehrig
Copy link
Contributor

sgehrig commented Mar 5, 2025

Implemented in #73 and already released by @vearutop. Thanks a lot!

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

No branches or pull requests

2 participants