Closed
Bug 1509246
Opened 6 years ago
Closed 6 years ago
Create mochitests for existing WebExtension APIs
Categories
(Thunderbird :: Add-Ons: Extensions API, enhancement)
Thunderbird
Add-Ons: Extensions API
Tracking
(Not tracked)
RESOLVED
FIXED
Thunderbird 66.0
People
(Reporter: darktrojan, Assigned: darktrojan)
References
Details
Attachments
(1 file, 4 obsolete files)
(deleted),
patch
|
mkmelin
:
review+
|
Details | Diff | Splinter Review |
We're nearly ready to run mochitests on TaskCluster, so I've created some tests for the addressBooks, browserAction, and composeAction APIs.
Assignee | ||
Comment 1•6 years ago
|
||
Assignee | ||
Comment 2•6 years ago
|
||
Attachment #9026904 -
Attachment is obsolete: true
Assignee | ||
Comment 3•6 years ago
|
||
Attachment #9029362 -
Attachment is obsolete: true
Assignee | ||
Comment 4•6 years ago
|
||
Comment on attachment 9029375 [details] [diff] [review]
1509246-webext-tests-3.diff
You might as well review this one too.
Attachment #9029375 -
Flags: review?(mkmelin+mozilla)
Comment 5•6 years ago
|
||
Comment on attachment 9029375 [details] [diff] [review]
1509246-webext-tests-3.diff
Review of attachment 9029375 [details] [diff] [review]:
-----------------------------------------------------------------
::: mail/components/extensions/test/browser/browser_ext_addressBooksUI.js
@@ +18,5 @@
> +
> + await awaitMessage("check", 0);
> +
> + await browser.addressBooks.openUI();
> + await awaitMessage("check", 1);
it could be useful for these tests to have more descriptions of what they are doing, so people don't have to read the code that carefully ;)
::: mail/components/extensions/test/browser/browser_ext_composeAction.js
@@ +70,5 @@
> + composeWindow.close();
> + }
> +}
> +
> +let account;
why isn't this inside the function?
::: mail/components/extensions/test/browser/head.js
@@ +36,5 @@
> +async function promiseAnimationFrame(win = window) {
> + await new Promise(resolve => win.requestAnimationFrame(resolve));
> +
> + let {tm} = Services;
> + return new Promise(resolve => tm.dispatchToMainThread(resolve));
Why not Services.tm.dispatchToMainThread directly?
Attachment #9029375 -
Flags: review?(mkmelin+mozilla)
Assignee | ||
Comment 6•6 years ago
|
||
A few small updates. I made a patch of the pref changes needed to run this stuff locally, and put it here: https://gist.github.com/darktrojan/3474b57149635c322dd8b3e59cdfa89f.
Attachment #9029375 -
Attachment is obsolete: true
Attachment #9032272 -
Flags: review?(mkmelin+mozilla)
Assignee | ||
Comment 7•6 years ago
|
||
Managed to get rid of a lot of flakiness. I think it still fails every now and then, but as far as I can tell, that's because of something dodgy in the WebExtensions framework.
Attachment #9032272 -
Attachment is obsolete: true
Attachment #9032272 -
Flags: review?(mkmelin+mozilla)
Attachment #9032316 -
Flags: review?(mkmelin+mozilla)
Comment 8•6 years ago
|
||
Comment on attachment 9032316 [details] [diff] [review]
1509246-webext-tests-5.diff
Review of attachment 9032316 [details] [diff] [review]:
-----------------------------------------------------------------
::: mail/components/extensions/test/browser/browser_ext_browserAction.js
@@ +76,5 @@
> + },
> + manifest: {
> + applications: {
> + gecko: {
> + id: "mochitest@thunderbird.net",
might be better to use @example.com
::: mail/components/extensions/test/browser/browser_ext_composeAction.js
@@ +1,5 @@
> +/* This Source Code Form is subject to the terms of the Mozilla Public
> + * License, v. 2.0. If a copy of the MPL was not distributed with this
> + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
> +
> +let account;
what's up with this?
Attachment #9032316 -
Flags: review?(mkmelin+mozilla) → review+
Assignee | ||
Comment 9•6 years ago
|
||
> might be better to use @example.com
Okay.
> what's up with this?
It's assigned in one function and used in another and I don't want to pass it around all over the place. What's the problem?
Comment 10•6 years ago
|
||
I see. Perhaps best to use the gAccount convention to make that clearer.
Comment 11•6 years ago
|
||
Pushed by geoff@darktrojan.net:
https://hg.mozilla.org/comm-central/rev/4b4bc20aa6de
Create mochitests for existing WebExtension APIs; fix some nits found; r=mkmelin
Status: ASSIGNED → RESOLVED
Closed: 6 years ago
Resolution: --- → FIXED
Assignee | ||
Updated•6 years ago
|
Target Milestone: --- → Thunderbird 66.0
You need to log in
before you can comment on or make changes to this bug.
Description
•