1. 28 May, 2021 1 commit
  2. 10 May, 2021 1 commit
  3. 17 Apr, 2021 1 commit
  4. 01 Apr, 2021 2 commits
  5. 24 Mar, 2021 1 commit
  6. 19 Mar, 2021 1 commit
  7. 16 Mar, 2021 1 commit
  8. 08 Mar, 2021 1 commit
  9. 04 Mar, 2021 1 commit
  10. 16 Feb, 2021 1 commit
  11. 02 Feb, 2021 1 commit
  12. 27 Jan, 2021 1 commit
  13. 13 Jan, 2021 3 commits
  14. 12 Jan, 2021 1 commit
  15. 16 Dec, 2020 1 commit
  16. 15 Dec, 2020 1 commit
  17. 14 Dec, 2020 1 commit
  18. 03 Nov, 2020 1 commit
  19. 26 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] reland: drive service (#68887) · 183fe75d
      Jonah Williams authored
      Overhaul of flutter drive in order to deliver a better experience, namely:
      
      * flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive.
      * Removes web-initialize-platform as this is no longer used
      * flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service.
      * VM service connection now provides access to memory info without launching devtools (only for debug/profile mode)
      
      Web changes
      
      * Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible
      
      Additional NNBD related bug fixes:
      
      No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
      183fe75d
  20. 23 Oct, 2020 1 commit
  21. 22 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] refactor drive launch into separate service, split by... · 2e75f52a
      Jonah Williams authored
      [flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web (#68451)
      
      Overhaul of flutter drive in order to deliver a better experience, namely:
      
      flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive.
      Removes web-initialize-platform as this is no longer used
      flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service.
      VM service connection now provides access to memory info without launching devtools (only for debug/profile mode)
      Web changes
      
      Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible
      
      Additional NNBD related bug fixes:
      
      No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
      2e75f52a
  22. 13 Oct, 2020 1 commit
  23. 09 Oct, 2020 1 commit
    • James D. Lin's avatar
      [flutter tools] Add a DelegatingLogger class (#67581) · e4206ac5
      James D. Lin authored
      [flutter tools] Add a DelegatingLogger class
      
      Move most of `DelegateLogger` `from test/src/testbed.dart` to
      `lib/src/base/logger.dart` to better formalize the common practice of
      chaining `Logger`s together.  I renamed the class since it isn't
      itself the delegate and to better match the `Delegating...` classes
      from `package:collection`.
      
      Additionally, add a freestanding `asLogger<T>` function to "cast" a
      `Logger` into a matching delegate if possible.  This will allow
      `Logger` chains to be ordered a *bit* more freely (e.g.
      `NotifyingLogger` and `AppRunLogger` will no longer required to be
      at the end of the chain, an unwritten rule that has led to breakage in
      google3).  Chain order still matters since lack of virtual dispatch
      means that parent `Logger`s can never invoke child methods, however.
      
      I made `asLogger<T>` a freestanding function because I didn't want to
      make it part of the `Logger` interface (and I thought that making it
      an extension method might be weird).
      
      Bonus cleanup:
      There no longer appears to be a way to construct an `AppRunLogger`
      with a null parent, so remove all of code paths for that case and
      make the `parent` construction parameter required.
      e4206ac5
  24. 05 Oct, 2020 1 commit
  25. 03 Oct, 2020 1 commit
  26. 23 Sep, 2020 2 commits
  27. 22 Sep, 2020 1 commit
  28. 19 Sep, 2020 1 commit
  29. 15 Sep, 2020 1 commit
  30. 11 Sep, 2020 1 commit
  31. 17 Aug, 2020 1 commit
  32. 10 Aug, 2020 1 commit
  33. 03 Aug, 2020 1 commit
  34. 31 Jul, 2020 1 commit
  35. 20 Jul, 2020 2 commits