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

Display error banner when Reports server returns status code ≠ 2xx #1608

Merged
merged 40 commits into from
Mar 19, 2021

Commits on Mar 9, 2021

  1. Configuration menu
    Copy the full SHA
    d115c51 View commit details
    Browse the repository at this point in the history
  2. Display error returned by the server instead of stack trace

    Update scenario to ensure cucumber execution fails if the server returned an error
    vincent-psarga committed Mar 9, 2021
    Configuration menu
    Copy the full SHA
    513be7e View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2021

  1. Configuration menu
    Copy the full SHA
    e8fa74a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7ec1932 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a4e1fd5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    74b7017 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    096558b View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2021

  1. Configuration menu
    Copy the full SHA
    ff59a87 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0c4bf08 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ad6421 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2dddb53 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e85eb8b View commit details
    Browse the repository at this point in the history
  6. Refactoring. Next up: Remove sendRequest recursion

    Aslak Hellesøy committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    a525da9 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2021

  1. Refactor HttpStream to avoid recursion

    Get banner displayed as expected
    vincent-psarga committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    2352da8 View commit details
    Browse the repository at this point in the history
  2. fix scenario

    vincentcapicotto committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    5af9935 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c5dfdb8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4af0bdf View commit details
    Browse the repository at this point in the history
  5. Linting ...

    vincent-psarga committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    b111591 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ca39fa7 View commit details
    Browse the repository at this point in the history
  7. More debugging

    vincent-psarga committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    1bc0165 View commit details
    Browse the repository at this point in the history
  8. Simplify HttpStream implementation

    Aslak Hellesøy committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    aaab859 View commit details
    Browse the repository at this point in the history
  9. Expect HTTP error in output

    Aslak Hellesøy committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    23b7cfe View commit details
    Browse the repository at this point in the history
  10. Fix typo

    Aslak Hellesøy committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    14a0b1d View commit details
    Browse the repository at this point in the history
  11. Add debugging

    Aslak Hellesøy committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    36ca4ff View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    77210df View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    f58e3e9 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2021

  1. Use progress formatter in CI

    Aslak Hellesøy committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    f199e3e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d3ab863 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    39c47a5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9ad0126 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6ba0079 View commit details
    Browse the repository at this point in the history
  6. Linting ...

    vincent-psarga committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    ed8e58e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ebecb2b View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2021

  1. Add a missing await in FakeReportServer

    That may fix the inconsistent tests
    aurelien-reeves committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    d4c6970 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b50fcd1 View commit details
    Browse the repository at this point in the history
  3. Attempt to avoid race condition in FakeReportServer

    Two listener on "close" per socket, one destroying it, the other one
    resolving the promise when stopping the server.
    
    But the one destroying it may be responsible to also resolving the
    promise when stopping the server, so as I understand, it could lead to
    resolving the same promise twice for a single socket.
    aurelien-reeves committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    1af43ce View commit details
    Browse the repository at this point in the history
  4. Delay server response in test

    Aslak Hellesøy committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    7a62bb5 View commit details
    Browse the repository at this point in the history
  5. Use a (new) random port for each test

    Aslak Hellesøy committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    3272840 View commit details
    Browse the repository at this point in the history
  6. Remove delays and logging

    Aslak Hellesøy committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    36666d3 View commit details
    Browse the repository at this point in the history
  7. Remove test to reproduce race condition error

    We'll bring it back in a new PR
    aurelien-reeves committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    2e744ae View commit details
    Browse the repository at this point in the history