You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/test/java/org/mozilla/fenix/ext
MarcLeclair 990bfa7e6d
16900 make navgraph inflation asynchronous (#18889)
* For #16900: implement async navgraph inflation

For #16900: removed nav graph from xml

For #16900: inflate navGraph programatically

For #16900: Made NavGraph inflation asynchronous

For #16900: Changed to block with runBlocking

For #16900: Refactored blocking call into a function

For 16900: NavGraph inflation is now async

We now attach the nav graph (or check if its attached) on every nav call ( an extension function for NavController).
This is done by checking the value of the job stored in PerfNavController.map which keeps track of the job with the NavController as a Key.
If the job hasn't been completed, it will block the main thread until the job is done. The job itself is responsible for attaching the navgraph
to the navcontroller (and the inflation of the latter too)

For 16900: rebased upstream master

For 16900: Rebase on master

For #16900: Fixed Async Navgraph navigation per review comments.

1)The Asynchronous method is now found in NavGraphProvider.kt. It creates a job on the IO dispatcher
2)The Job is tracked through a WeakHashMap from Controller --> NavGraph
3)The Coroutine scope doesn't use MainScope() anymore
4)The Coroutine is cancelled if the Activity is destroyed
5)The tests mockk the blockForNavGraphInflation method through the FenixReoboelectricTestApplication instead of calling the mock every setup()

For #16900: inflateNavGraphAsync now takes navController

For #16900: Pass lifecycleScope to NavGraphProvider

For #16900: removed unused mock

For #16900: Added linter rules for navigate calls

We need linting rules to make sure no one calls the NavController.navigate() methods

For #16900: Added TestRule to help abstract the mocks in the code

For 16900: Fix linting problems

For #16900: Cleaned duplicated code in tests

For #16900: cleaned up NavGraphTestRule for finished test

For #16900: had to revert an accidentally edited file

For #16900: rebased master

* For #16900: Review nits for async navgraph

This is composed of squash commits, the original messages can be found below:

-> DisableNavGraphProviderAssertionRule + kdoc.

Use test rule in RobolectricApplication.

Fix failing CrashReporterControllerTest

Fix blame by -> navigate in tests.

This commit was generated by the following commands only:
```
find app/src/test -type f -exec sed -i '' "/import org.mozilla.fenix.ext.navigateBlockingForAsyncNavGraph/d" {} \;
find app/src/test -type f -exec sed -i "" "s/navigateBlockingForAsyncNavGraph/navigate/g" {} \;
git checkout app/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
```

Fix various blame

This is expected to be squashed into the first commit so, if so, it'd
fix the blame.

Move test rule to helpers pkg.

add missing license header

Add import change I missed

fix unused imports

Replace robolectricTestrunner with test rule.

Improve navGraphProvider docs

Remove unnecessary rule as defined by robolectric.

add clarifying comment to robolectric

remove unnecessary space

* For #16900: nit fixes for MozillaNavigateCheck and lint fixes

3 squash commits:
 *Changed violation message and fixed the lint rule for MozillaNavigateCheck
 *Added suppression to NavController.kt
 *Fixed detekt violations

* For 16900: Fixed failing tests

Co-authored-by: Michael Comella <michael.l.comella@gmail.com>
3 years ago
..
ActivityTest.kt Target Android 11 3 years ago
AtomicIntegerTest.kt 15278 detekt rule runblocking (#15942) 4 years ago
BookmarkNodeTest.kt Reuse helper functions in bookmark tests 3 years ago
BrowserIconsTest.kt For #9605: replace unit test runners with FenixRobolectricTestRunner. 4 years ago
ConnectivityManagerTest.kt For #9605: replace unit test runners with FenixRobolectricTestRunner. 4 years ago
ContextTest.kt Add tests for ContextKt (#11824) 4 years ago
DownloadItemKtTest.kt For #15320: Ensure Mimetype Other PDF Shows PDF Icon 4 years ago
DrawableTest.kt Fixes #9832 - Change targetSdkVersion to Android 10 (#11014) 4 years ago
FragmentTest.kt For #12457 - Add MockK matcher for nav directions (#12262) 4 years ago
ImageButtonTest.kt Add tests for ext package (#11334) 4 years ago
ListTest.kt For #13983: Show Only Completed Downloads in List 4 years ago
LogTest.kt Simplify build variants to just: debug, nightly, beta and release. 4 years ago
MockKMatcherScope.kt For #2486 - Adds Recently Closed Tabs 4 years ago
NavControllerTest.kt 16900 make navgraph inflation asynchronous (#18889) 3 years ago
SessionManagerTest.kt For #10163 - Adds tab multiselect mode 4 years ago
SharedPreferences.kt Add license header to ext tests (#8130) 4 years ago
StringTest.kt For #12565: Don't pass contest to SortingStrategy 4 years ago
TabCollectionTest.kt For #10163 - Adds tab multiselect mode 4 years ago
ViewTest.kt Closes #14131: Move constants to dimens.xml (#14135) 4 years ago