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

Flickering test failures w/ Ember 2.18.2 & 3.4.7 #204

Open
walter opened this issue Jan 17, 2019 · 5 comments
Open

Flickering test failures w/ Ember 2.18.2 & 3.4.7 #204

walter opened this issue Jan 17, 2019 · 5 comments

Comments

@walter
Copy link

walter commented Jan 17, 2019

This is a follow up on comments in #25 starting here.

Background

In preparation to upgrading from Ember 2.18.2 to 3.4.7, I've been refactoring a fairly complex custom ajax service that my app uses to rely on ember-fetch instead of ic-ajax (ember-ajax has its own service implementation that was in conflict, so opted to move all the way up to fetch based solution).

Everything in development mode seemed to be working fine in 2.18.2, but when I ran my full test suite (modern 3.x testing style already migrated), I began to get a number of failures due to tests not waiting for fetch requests to finish as expected by await calls.

What I have observed

In 2.18.2 with ember-fetch 6.3.1, ember-test-helpers 1.1.0, and ember-qunit 4.2.0:

  • if I reran the tests individually, most tests would pass as expected
  • adding await settled() calls at a point before the test failure would most times alleviate the test failure when running full suite (after doing this several places, I gave up on this before adding tons of these allover the whole suite)
  • ember-fetch registerWaiter seems to be working as designed, but is not enough - I added logging to see if the waiter function was being set up and called as well as the decrementing and they were

It was almost like there was leak somewhere...

A coworker wondered if anything would be different if I tried things under Ember 3.4.7. Unfortunately, the problem was still there. However...

What allows the tests to run as expected in Ember 3.4.7, but not 2.18.2

Under Ember 3.4.7 when I changed ember-cli-build.js to the following, the test suite passed!

  let app = new EmberApp(defaults, {
    // tests: false,
    'ember-fetch': {
      preferNative: true // later added logic here to only be true in test env
    },
   ...

However, when I circled back and tried this with 2.18.2, I got different failures, e.g. Promise rejected during "Help with a ongoing cost": Cannot read property 'error' of undefined, that I assume are related to native promises not being supported in the same way as later Ember 3.x releases.

Since my ultimate goal is to be able to upgrade away from 2.18.2, I'm personally unblocked, but this does seem like an issue with the polyfil either in ember-fetch or possibly upstream.

(@viniciussbs hopefully my workaround helps you, too)

@viniciussbs
Copy link

@walter thanks for remember me. I'll let my team know about your workaround. I guess we do not face this problem anymore since we've made another workaround for an issue on ember-graphql/ember-apollo-client#192, though - planning to send a PR to fix that soon.

@arthur5005
Copy link

arthur5005 commented Jan 29, 2019

I spent a significant amount of time coming to the same conclusion with our test suites when we upgraded to Ember 3.6 with the use of the latest ember-simple-auth.

Would fail 25% of the time on authenticate, and move on to the next test step without finishing the login one.

Our authenticator made use of ember-fetch to make the authentication request.

I narrowed it down to the use of ember-fetch in the authenticator and the call to .json() on the response object.

screen shot 2019-01-28 at 4 32 54 pm

Fairly often, the call to.json().then would end this promise chain and move on to the next step.
(In this screenshot, the first breakpoint is hit, the second one is missed, but the test suite continues)

I can confirm

'ember-fetch': {
  preferNative: true
}

is a valid work around for tests.

@fpauser
Copy link

fpauser commented Apr 10, 2019

We have the same problem in our app (ember-3.9.1). The preferNative workaround helps.

@meirish
Copy link
Contributor

meirish commented May 21, 2019

We're seeing this as well, along with preferNative: true "fixing" things. Any way I can help debug / fix this?

@xg-wang
Copy link
Member

xg-wang commented May 23, 2019

@meirish The first step to help fix is to construct a minimal flaky test repro

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

No branches or pull requests

6 participants