-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
lib, test: integrate wpt abort_controller tests and fix onabort event #35869
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
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
test(t => { | ||
const c = new AbortController(), | ||
s = c.signal; | ||
let state = "begin"; | ||
|
||
assert_false(s.aborted); | ||
|
||
s.addEventListener("abort", | ||
t.step_func(e => { | ||
assert_equals(state, "begin"); | ||
state = "aborted"; | ||
}) | ||
); | ||
c.abort(); | ||
|
||
assert_equals(state, "aborted"); | ||
assert_true(s.aborted); | ||
|
||
c.abort(); | ||
}, "AbortController abort() should fire event synchronously"); | ||
|
||
test(t => { | ||
const controller = new AbortController(); | ||
const signal = controller.signal; | ||
assert_equals(controller.signal, signal, | ||
"value of controller.signal should not have changed"); | ||
controller.abort(); | ||
assert_equals(controller.signal, signal, | ||
"value of controller.signal should still not have changed"); | ||
}, "controller.signal should always return the same object"); | ||
|
||
test(t => { | ||
const controller = new AbortController(); | ||
const signal = controller.signal; | ||
let eventCount = 0; | ||
signal.onabort = () => { | ||
++eventCount; | ||
}; | ||
controller.abort(); | ||
assert_true(signal.aborted); | ||
assert_equals(eventCount, 1, "event handler should have been called once"); | ||
controller.abort(); | ||
assert_true(signal.aborted); | ||
assert_equals(eventCount, 1, | ||
"event handler should not have been called again"); | ||
}, "controller.abort() should do nothing the second time it is called"); | ||
|
||
test(t => { | ||
const controller = new AbortController(); | ||
controller.abort(); | ||
controller.signal.onabort = | ||
t.unreached_func("event handler should not be called"); | ||
}, "event handler should not be called if added after controller.abort()"); | ||
|
||
test(t => { | ||
const controller = new AbortController(); | ||
const signal = controller.signal; | ||
signal.onabort = t.step_func(e => { | ||
assert_equals(e.type, "abort", "event type should be abort"); | ||
assert_equals(e.target, signal, "event target should be signal"); | ||
assert_false(e.bubbles, "event should not bubble"); | ||
assert_true(e.isTrusted, "event should be trusted"); | ||
}); | ||
controller.abort(); | ||
}, "the abort event should have the right properties"); | ||
|
||
done(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
'use strict'; | ||
require('../common'); | ||
const { WPTRunner } = require('../common/wpt'); | ||
|
||
const runner = new WPTRunner('dom/abort'); | ||
|
||
runner.runJsTests(); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.