Project

General

Profile

Actions

action #71857

closed

coordination #80142: [saga][epic] Scale out: Redundant/load-balancing deployments of openQA, easy containers, containers on kubernetes

coordination #55364: [epic] Let's make codecov reports reliable

flaky/unstable/sporadic test coverage from t/34-developer_mode-unit.t

Added by okurz over 3 years ago. Updated over 3 years ago.

Status:
Resolved
Priority:
High
Assignee:
Category:
Organisational
Target version:
Start date:
2020-09-24
Due date:
% Done:

0%

Estimated time:

Description

Observation

See https://codecov.io/gh/os-autoinst/openQA/pull/3417/changes from https://github.com/os-autoinst/openQA/pull/3418

Changes in t/lib/OpenQA/SeleniumTest.pm:wait_for_element

368:        return 0;

Changes in t/34-developer_mode-unit.t:wait_for_finished_handled

101:            });
102:        Mojo::IOLoop->one_tick;
103:        Mojo::IOLoop->remove($timer);

Acceptance criteria

  • AC1: t/34-developer_mode-unit.t has 100% reliable statement coverage

Suggestions

  • Collect coverage of the single test t/34-developer_mode-unit.t locally
  • Optional: Reproduce the flakyness
  • Ensure within the test that all code is explicitly called
  • Extend to cover the line in t/lib/OpenQA/SeleniumTest.pm as well
Actions #1

Updated by livdywan over 3 years ago

  • Status changed from Workable to In Progress
  • Assignee set to livdywan

I'll give it a go

Actions #2

Updated by okurz over 3 years ago

awesome \o/

Actions #3

Updated by livdywan over 3 years ago

I suppose Progress was misleading since I didn't get far yet and mostly started looking into producing coverage results on my machine (i.e. the first of the suggestions).

Actions #4

Updated by okurz over 3 years ago

I would consider that part of "progress" so all good :)

Actions #6

Updated by okurz over 3 years ago

mergify finally merged https://github.com/os-autoinst/openQA/pull/3480 . https://codecov.io/gh/os-autoinst/openQA/src/master/t/34-developer_mode-unit.t shows 99.48% statement coverage. Created https://github.com/os-autoinst/openQA/pull/3502 to reach 100% statement coverage in the test module. To ensure we have AC1 covered I suggest to monitor tests in circleCI in both "master" and from pull requests and crosscheck if the coverage analysis still shows flaky coverage for the code parts mentioned in the initial ticket description.

EDIT: https://github.com/os-autoinst/openQA/pull/3502 is merged meanwhile. My recommendations above still hold.

Actions #7

Updated by okurz over 3 years ago

It seems that something, maybe your changes, have made t/34-developer_mode-unit.t less stable, e.g. see the failure

https://app.circleci.com/pipelines/github/os-autoinst/openQA/4717/workflows/fe05b340-2332-4085-83e0-37a51e501c63/jobs/45023

[17:32:04] t/34-developer_mode-unit.t ................................ 2/? Bailout called.  Further testing stopped:  test exceeds runtime limit of '60' seconds
FAILED--Further testing stopped: test exceeds runtime limit of '60' seconds

can you please look into this?

Actions #8

Updated by okurz over 3 years ago

  • Priority changed from High to Urgent

I saw this in other pull requests as well, e.g. https://build.opensuse.org/package/live_build_log/devel:openQA:TestGithub:PR-3505/openQA/openSUSE_Factory/x86_64 failing the same, I force merged the PR https://github.com/os-autoinst/openQA/pull/3505 now for the same reason. So setting to "Urgent".

Actions #9

Updated by okurz over 3 years ago

  • Due date set to 2020-11-06

@cdywan can you look into the issue that is impacting most if not all tests on circleCI and/or OBS right now? If not feel free to ask someone else to take over

Actions #10

Updated by okurz over 3 years ago

  • Assignee changed from livdywan to okurz

please forgive me when I rip this out of your hopefully-not-so-cold hands but this is impacting (likely) every PR and failing package builds :D

Using https://github.com/okurz/scripts/blob/master/count_fail_ratio I ran

count_fail_ratio prove -l t/34-developer_mode-unit.t

and found

## count_fail_ratio: Run: 20. Fails: 8. Fail ratio 40%

with the failures being stopped by the timeout and increasing timeout does not help – as https://github.com/os-autoinst/openQA/pull/3510 already showed yesterday.

Reverting your PR shows

## count_fail_ratio: Run: 20. Fails: 0. Fail ratio 0%

Created
https://github.com/os-autoinst/openQA/pull/3518
but you are very welcome to take the ticket back after we have that quick-fix revert included and you can take a look again.

Actions #11

Updated by livdywan over 3 years ago

okurz wrote:

please forgive me when I rip this out of your hopefully-not-so-cold hands but this is impacting (likely) every PR and failing package builds :D

That is absolutely fine. In the past you didn't mind the queue being broken for days and I was the one complaining. Happy to see that you want to unblock fast 😉

Actions #12

Updated by livdywan over 3 years ago

  • Assignee changed from okurz to livdywan
  • Priority changed from Urgent to High
Actions #13

Updated by okurz over 3 years ago

https://build.opensuse.org/package/show/devel:openQA/openQA is fine again as well as tests in https://app.circleci.com/pipelines/github/os-autoinst/openQA?branch=master

cdywan wrote:

That is absolutely fine. In the past you didn't mind the queue being broken for days

well, that was a bit different though as I think checks in OBS were not failing so the package was still ok and usable, we just could not have green checks in PRs. So the impact is limited to contributors of openQA, not users.

Actions #14

Updated by livdywan over 3 years ago

  • Description updated (diff)
  • Due date changed from 2020-11-06 to 2020-11-13

Although much of my logs was lost, some notes from my attemps to reproduce coverage changes:

  • I thought maybe I could copy cover_db/cover.14 around, but it seems incompatible with -test
  • -report compilation which produces messages like Uncovered statement at ... line ... and seems nicer in a terminal than html_basic (HTML with syntax highlighting). Although it won't tell you what the statement is either.
  • We could add explicit tests for test utils... but in reality coverage seems to report misses even on the tests (e.g. Uncovered statement at t/01-test-utilities.t line 42) and I'm not sure that this is solving the problem

https://github.com/os-autoinst/openQA/pull/3552

Actions #15

Updated by okurz over 3 years ago

I am not sure if your notes tell that you are still wondering what's going on and what to do or do you have a well layed out plan :D

I ran while [ $? = 0 ]; do rm -rf cover_db/ ; make coverage TESTS=t/34-developer_mode-unit.t | grep 't/34-developer_mode-unit.t.*100\.0'; done locally to reproduce the problem.

With your patch applied I get:

95      sub wait_for_finished_handled {
96          # wait until the finished event is handled (but at most 5 seconds)
97          my $timer = Mojo::IOLoop->timer(
98              5.0 => sub {
99  0                   Mojo::IOLoop->stop;
100 4               });
101 4       Mojo::IOLoop->one_tick;
102 4       Mojo::IOLoop->remove($timer);
103 4       $finished_handled_mock->unmock_all();
104 4       is($finished_handled, 1, 'finished event handled within 5 seconds');

(hard to copy here).

this means that the command Mojo::IOLoop->stop; isn't called, or not reliably always called.

You can write Mojo::IOLoop->stop; # uncoverable statement to just ignore if that single line is covered or not.

Actions #16

Updated by livdywan over 3 years ago

okurz wrote:

I am not sure if your notes tell that you are still wondering what's going on and what to do or do you have a well layed out plan :D

My notes are general workflow items, that arguably belong in the epic, since I feel like verifying fixes like this should be more straightforward.

I ran while [ $? = 0 ]; do rm -rf cover_db/ ; make coverage TESTS=t/34-developer_mode-unit.t | grep 't/34-developer_mode-unit.t.*100\.0'; done locally to reproduce the problem.

Yes, this is the kind of command/pattern I was trying to come up with, something easy enough for this and other coverage fixes to verify if they work/ are reliable.

And it shows t/34-developer_mode-unit.t 100.
0 100.0
with the current version of my brach.

I'd alter it to make coverage TESTS=t/34-developer_mode-unit.t | grep 't/34-developer_mode-unit.t.' since otherwise there is just nothing if you ran it on e.g. the original version of my branch. But that might be down to personal preference.

Output of affected lines would be even better.

this means that the command Mojo::IOLoop->stop; isn't called, or not reliably always called.

Yeah, never seems to be called in my runs. But it looks like sub{} avoids that problem - the current code in master actually has no code in it, I was adding it to try and make codecov happy.

Actions #17

Updated by okurz over 3 years ago

PR merged after I tried it myself locally and it looked good.

Before we close this ticket I would like to reflect on https://progress.opensuse.org/issues/71857#note-7 . Maybe we can understand how we missed the problem initially and then hopefully even find an improvement.

Actions #18

Updated by livdywan over 3 years ago

okurz wrote:

PR merged after I tried it myself locally and it looked good.

Before we close this ticket I would like to reflect on https://progress.opensuse.org/issues/71857#note-7 . Maybe we can understand how we missed the problem initially and then hopefully even find an improvement.

The timeout was caused by moving from

my $timer = Mojo::IOLoop->timer(5.0 => sub {
    });
Mojo::IOLoop->one_tick;
Mojo::IOLoop->remove($timer);

to wait_for_or_bail_out { $finished_handled } 'finished event'; which has a different wait, one is event loop-based, the other one is a Perl loop.

Maybe it's worth seeing if we want to use the event loop elsewhere?

Actions #19

Updated by livdywan over 3 years ago

  • Status changed from In Progress to Feedback
Actions #20

Updated by livdywan over 3 years ago

  • Due date changed from 2020-11-13 to 2020-11-16
Actions #21

Updated by okurz over 3 years ago

ok, I understood how it could break but: Maybe we can understand how we missed the problem initially and then hopefully even find an improvement in our testing or process? So not really about t/34-developer_mode-unit.t

In #71857#note-6 I mentioned: "mergify finally merged https://github.com/os-autoinst/openQA/pull/3480 . […] To ensure we have AC1 covered I suggest to monitor tests in circleCI in both "master" and from pull requests and crosscheck if the coverage analysis still shows flaky coverage for the code parts mentioned in the initial ticket description."
So maybe your test change worked sporadically hence tests were all good in the PR but would not have shown as successful when executing the test module locally multiple times. As you did not mention in neither ticket nor PR that you would have executed the test multiple times locally I assume you have not done so, have you?

  • Improvement idea 1: Either include in our review guidelines to ask for multiple executions of test modules. I would not know how to realistically implement the "stability test" within each PR as we would need to wait very long for circleCI runs to complete, am I right?

I think like i suggested closely monitoring tests in circleCI would have shown the regression but this also after the merge.

One more point: I pointed out the regression and you did not react, then I set the ticket to "Urgent" but still did not react until I took over. Just very objectively I wonder: Have you received the notification? Have you missed the update? Was something else distracting you? Should others than me have seen the ask for help?

Actions #22

Updated by livdywan over 3 years ago

okurz wrote:

In #71857#note-6 I mentioned: "mergify finally merged https://github.com/os-autoinst/openQA/pull/3480 . […] To ensure we have AC1 covered I suggest to monitor tests in circleCI in both "master" and from pull requests and crosscheck if the coverage analysis still shows flaky coverage for the code parts mentioned in the initial ticket description."
So maybe your test change worked sporadically hence tests were all good in the PR but would not have shown as successful when executing the test module locally multiple times. As you did not mention in neither ticket nor PR that you would have executed the test multiple times locally I assume you have not done so, have you?

Yes, I didn't observe it ever failing locally.

  • Improvement idea 1: Either include in our review guidelines to ask for multiple executions of test modules. I would not know how to realistically implement the "stability test" within each PR as we would need to wait very long for circleCI runs to complete, am I right?

I think like i suggested closely monitoring tests in circleCI would have shown the regression but this also after the merge.

I also re-triggered tests to be sure it wasn't a 33% chance like I've seen before. But last time I baked that into the makefile I got some "confused" comments :-D

One more point: I pointed out the regression and you did not react, then I set the ticket to "Urgent" but still did not react until I took over. Just very objectively I wonder: Have you received the notification? Have you missed the update? Was something else distracting you? Should others than me have seen the ask for help?

I think I mentioned it before. We have had other flaky test regressions in master for days if not weeks. It seems like you're deciding which ones are more critical in a way I don't understand.

Actions #23

Updated by okurz over 3 years ago

  • Status changed from Feedback to Resolved

cdywan wrote:

[…]
I think I mentioned it before. We have had other flaky test regressions in master for days if not weeks. It seems like you're deciding which ones are more critical in a way I don't understand.

Yeah, sorry. I am not a deterministic machine ;) But here very clearly I raised the priority and eventually reverted because suddenly many or most tests failed in t/34-developer_mode-unit.t

Ok, but it seems I am annoying you a lot so let's leave it and set to "Resolved".

Actions #24

Updated by okurz over 3 years ago

  • Due date deleted (2020-11-16)
Actions

Also available in: Atom PDF