Skip to content

Fix editor tests on Windows#15623

Merged
calixteman merged 1 commit into
mozilla:masterfrom
calixteman:editor_int_test
Oct 26, 2022
Merged

Fix editor tests on Windows#15623
calixteman merged 1 commit into
mozilla:masterfrom
calixteman:editor_int_test

Conversation

@calixteman
Copy link
Copy Markdown
Contributor

  • In [Editor] Use the global clipboard for the copy/paste/cut operations #15373, we implemented copy/paste actions in using the system clipboard.
    For any reasons, on Windows, the clipboard doesn't contain the expected data when the tests are ran in parallel, hence the tests which are using the clipboard need to be ran sequentially.
  • Make sure that we can paste after having copied.

Copy link
Copy Markdown
Collaborator

@Snuffleupagus Snuffleupagus left a comment

Choose a reason for hiding this comment

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

r=me, with one suggestion and with passing tests; thank you!

Comment thread test/integration/test_utils.js Outdated
@Snuffleupagus
Copy link
Copy Markdown
Collaborator

/botio integrationtest

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Received

Command cmd_integrationtest from @Snuffleupagus received. Current queue size: 0

Live output at: http://54.241.84.105:8877/37c73cedab0c89f/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Received

Command cmd_integrationtest from @Snuffleupagus received. Current queue size: 0

Live output at: http://54.193.163.58:8877/507f222e846f35e/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Success

Full output at http://54.241.84.105:8877/37c73cedab0c89f/output.txt

Total script time: 4.15 mins

  • Integration Tests: Passed

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Failed

Full output at http://54.193.163.58:8877/507f222e846f35e/output.txt

Total script time: 10.32 mins

  • Integration Tests: FAILED

@Snuffleupagus
Copy link
Copy Markdown
Collaborator

/botio integrationtest

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Received

Command cmd_integrationtest from @Snuffleupagus received. Current queue size: 0

Live output at: http://54.241.84.105:8877/ac681056814812b/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Received

Command cmd_integrationtest from @Snuffleupagus received. Current queue size: 0

Live output at: http://54.193.163.58:8877/f001990448daa2b/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Success

Full output at http://54.241.84.105:8877/ac681056814812b/output.txt

Total script time: 4.08 mins

  • Integration Tests: Passed

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Failed

Full output at http://54.193.163.58:8877/f001990448daa2b/output.txt

Total script time: 10.31 mins

  • Integration Tests: FAILED

@Snuffleupagus
Copy link
Copy Markdown
Collaborator

/botio integrationtest

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Received

Command cmd_integrationtest from @Snuffleupagus received. Current queue size: 0

Live output at: http://54.241.84.105:8877/c97d98a4c72ba7c/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Received

Command cmd_integrationtest from @Snuffleupagus received. Current queue size: 0

Live output at: http://54.193.163.58:8877/f8a3f1525870720/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Success

Full output at http://54.241.84.105:8877/c97d98a4c72ba7c/output.txt

Total script time: 4.18 mins

  • Integration Tests: Passed

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Failed

Full output at http://54.193.163.58:8877/f8a3f1525870720/output.txt

Total script time: 9.70 mins

  • Integration Tests: FAILED

@calixteman
Copy link
Copy Markdown
Contributor Author

/botio integrationtest

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Received

Command cmd_integrationtest from @calixteman received. Current queue size: 0

Live output at: http://54.241.84.105:8877/ee5d0f1d8c23f0e/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Received

Command cmd_integrationtest from @calixteman received. Current queue size: 0

Live output at: http://54.193.163.58:8877/0d23122b5ae2a94/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Failed

Full output at http://54.241.84.105:8877/ee5d0f1d8c23f0e/output.txt

Total script time: 4.60 mins

  • Integration Tests: FAILED

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Failed

Full output at http://54.193.163.58:8877/0d23122b5ae2a94/output.txt

Total script time: 9.17 mins

  • Integration Tests: FAILED

@calixteman
Copy link
Copy Markdown
Contributor Author

/botio integrationtest

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Received

Command cmd_integrationtest from @calixteman received. Current queue size: 0

Live output at: http://54.241.84.105:8877/b04e870ef4ec9d2/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Received

Command cmd_integrationtest from @calixteman received. Current queue size: 0

Live output at: http://54.193.163.58:8877/d801c0b146ada4c/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Success

Full output at http://54.241.84.105:8877/b04e870ef4ec9d2/output.txt

Total script time: 4.18 mins

  • Integration Tests: Passed

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Failed

Full output at http://54.193.163.58:8877/d801c0b146ada4c/output.txt

Total script time: 9.78 mins

  • Integration Tests: FAILED

- In mozilla#15373, we implemented copy/paste actions in using the system
clipboard.
For any reasons, on Windows, the clipboard doesn't contain the expected
data when the tests are ran in parallel, hence the tests which are
using the clipboard need to be ran sequentially.
- Make sure that we can paste after having copied.
@calixteman
Copy link
Copy Markdown
Contributor Author

/botio integrationtest

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Received

Command cmd_integrationtest from @calixteman received. Current queue size: 0

Live output at: http://54.193.163.58:8877/39d95697a0f7dd2/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Received

Command cmd_integrationtest from @calixteman received. Current queue size: 0

Live output at: http://54.241.84.105:8877/42c4d12faaeba01/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Success

Full output at http://54.241.84.105:8877/42c4d12faaeba01/output.txt

Total script time: 4.13 mins

  • Integration Tests: Passed

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Failed

Full output at http://54.193.163.58:8877/39d95697a0f7dd2/output.txt

Total script time: 9.92 mins

  • Integration Tests: FAILED

@calixteman
Copy link
Copy Markdown
Contributor Author

/botio integrationtest

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Received

Command cmd_integrationtest from @calixteman received. Current queue size: 0

Live output at: http://54.193.163.58:8877/51a7843d890ef84/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Received

Command cmd_integrationtest from @calixteman received. Current queue size: 0

Live output at: http://54.241.84.105:8877/54883c709b242e1/output.txt

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Linux m4)


Success

Full output at http://54.241.84.105:8877/54883c709b242e1/output.txt

Total script time: 4.09 mins

  • Integration Tests: Passed

@pdfjsbot
Copy link
Copy Markdown

From: Bot.io (Windows)


Failed

Full output at http://54.193.163.58:8877/51a7843d890ef84/output.txt

Total script time: 9.85 mins

  • Integration Tests: FAILED

@calixteman
Copy link
Copy Markdown
Contributor Author

I think windows tests are in a better shape with this patch.
We still have this issue with PageOpen and an intermittent with zip codes, but at least it should fix the editing ones.
I'm not super happy to add these waitForTimeout but I don't see any other way to do.
@Snuffleupagus, are you still ok with this patch (I made few changes after your approval) ?

@Snuffleupagus
Copy link
Copy Markdown
Collaborator

I think windows tests are in a better shape with this patch.

Agreed, it seems like it helped on the bots. (It's weird that these problems don't show up locally...)

We still have this issue with PageOpen

Do you have time to continue investigating this in #15308?

I'm not super happy to add these waitForTimeout but I don't see any other way to do.

Agreed, but since this is only in tests I suppose it's not that bad overall.

are you still ok with this patch (I made few changes after your approval) ?

Sure (I looked at the changes and it seems fine).

@calixteman calixteman merged commit 9a33a0f into mozilla:master Oct 26, 2022
@calixteman calixteman deleted the editor_int_test branch October 26, 2022 09:31
@calixteman
Copy link
Copy Markdown
Contributor Author

We still have this issue with PageOpen

Do you have time to continue investigating this in #15308?

I'll try to find some time this week or the week after.

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