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

Fix(clip): delete clipping region with restore #73

Merged
merged 3 commits into from
Dec 4, 2020

Conversation

lekha
Copy link
Contributor

@lekha lekha commented Dec 2, 2020

Previously, the restore() method would update its pointer to the previous clipping region (stackIndex = n-1) in the stack without deleting the current clipping region (stackIndex = n). This caused problems for future save() calls, which would push a new clipping region onto the stack at location n+1 while only incrementing stackIndex to n, thus referencing the wrong region.

This commit fixes the issue by deleting the current clipping region when restore() is called. By doing this, we lose the ability to inspect old clipping regions, but this is easy to change in the future if it is desired.

Previously, the restore() method would update its pointer to the previous
clipping region (stackIndex = n-1) in the stack without deleting the current
clipping region (stackIndex = n). This caused problems for future save() calls,
which would push a new clipping region onto the stack at location n+1 while
only incrementing stackIndex to n, thus referencing the wrong region.

This commit fixes the issue by deleting the current clipping region when
restore() is called. By doing this, we lose the ability to inspect old
clipping regions, but this is easy to change in the future if it is desired.
@coveralls
Copy link

coveralls commented Dec 2, 2020

Coverage Status

Coverage remained the same at 100.0% when pulling 6d08ec5 on lekha:fix-clip into 340de22 on hustcc:master.

@lekha
Copy link
Contributor Author

lekha commented Dec 2, 2020

Added some tests to address incorrect behaviour from #58. I hope it's sufficient.

Copy link
Collaborator

@jtenner jtenner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All in all, this pull request is definitely going in the correct direction. Just need to consolidate the added tests into a single test, which would suffice to assert the problem is fixed.

Good catch!

@@ -1477,6 +1477,7 @@ export default class CanvasRenderingContext2D {
if (this._stackIndex <= 0) return;

this._transformStack.pop();
this._clipStack.pop();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cant believe I missed this. Thanks for the pull request!

@@ -51,4 +51,26 @@ describe('__getClippingRegion', () => {
ctx.restore();
expect(region).toStrictEqual(ctx.__getClippingRegion());
});

it('should restore the clipping region correctly when restored', () => {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can consolidate these two tests into a single one, because we already test to see if the clipping region is properly set without restoring, right?

    ctx.arc(1, 2, 3, 4, 5);
    ctx.clip(); // push the arc to the clipping stack
    ctx.save(); // push the current clipping region to the top of the stack
    ctx.rect(1, 2, 3, 4);
    ctx.arc(1, 2, 3, 4, 5);
    ctx.clip(); // adds the path to the current stack clipping region
    ctx.restore(); // restores back to a single arc

It would be best to utilize the afterEach() snapshots to validate context output in this case too, because it's already baked into each test. No need to add additional expectations.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right. I just made the changes. Better?

@@ -178,6 +178,7 @@ canvas.toDataURL.mockReturnValueOnce(
- [@hustcc](https://github.com/hustcc)
- [@jtenner](https://github.com/jtenner)
- [@evanoc0](https://github.com/evanoc0)
- [@lekha](https://github.com/lekha)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your contribution!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! It's my first one ever!

Tests have been combined and make better use of the afterEach snapshots.
Copy link
Collaborator

@jtenner jtenner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Last round of changes. Please see above.

ctx.rect(1, 2, 3, 4);
ctx.arc(1, 2, 3, 4, 5);
ctx.clip();
const region = ctx.__getClippingRegion();
Copy link
Collaborator

@jtenner jtenner Dec 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

First, I want to admit that this test function does indeed assert that the restore() function works in relation to clip calls.

With that being said, I believe simplifying the tests here will go a long way in describing how the functions are supposed to work.

If possible, I would like to remove a few of the function calls in this test, so I will outline the reasons why I suggest them.

  1. On line 62, this code obtains the current clipping region, which normally would be able to be used, except that the afterEach() callback already performs clipping region checks. Thus, we don't have to obtain the clipping region at all.
  2. On line 64, this code calls ctx.save() again, which becomes a confounding factor when proving that the ctx.restore() function works. We should probably remove it to make things clearer.
  3. Lastly, on line 65 creating another expectation here is not necessary, because we know the clipping region should only contain a single Rect entry at this point. Again, this is handled by the snapshot expecation in the afterEach() callback.

All in all, great work. Please remove the lines in question, and I will accept the contribution.

Cheers.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for working with me on this. I haven't been working with javascript long.

I tried removing lines 62 and 64-65, but then the test passes even when this._clipStack.pop() is not inside the restore() implementation, which doesn't seem right to me. I think the way to ensure that the clipping region has been popped off the stack is by calling ctx.save() -> ctx.restore() -> ctx.save() and confirming that the clipped region immediately after the two ctx.save() calls do not have the same identity.

The afterEach() snapshot check already occurs in a different test, which is what I thought you meant when you said to consolidate earlier.

Is there a better way to check that the pop happens?

Copy link
Collaborator

@jtenner jtenner Dec 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay. At the very least, we should make sure not use expect calls here. We can just inspect the state after the test runs, and that's enough.

As for your example, I think I'm being pedantic.

Just remove the expect calls from this test and we should be good.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's an additional test that doesn't require expect calls too. I can understand why they were added in the first place. They aren't necessary.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That makes sense. Fixed.

@jtenner jtenner merged commit c4d1fb2 into hustcc:master Dec 4, 2020
@jtenner
Copy link
Collaborator

jtenner commented Dec 4, 2020

@hustcc please release v2.2.1 with this pull request. Thank you.

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

Successfully merging this pull request may close these issues.

3 participants