Command processing (2/n): testing

Summary:
*Stack summary*: this stack refactors plugin management actions to perform them in a dispatcher rather than in the root reducer (store.tsx) as all of these actions has side effects. To do that, we store requested plugin management actions (install/update/uninstall, star/unstar) in a queue which is then handled by pluginManager dispatcher. This dispatcher then dispatches all required state updates.

*Diff summary*: refactored Flipper mocking helpers to allow testing of plugin commands, and wrote some tests for pluginManager.

Reviewed By: mweststrate

Differential Revision: D26450344

fbshipit-source-id: 0e8414517cc1ad353781dffd7ffb4a5f9a815d38
This commit is contained in:
Anton Nikolaev
2021-02-16 10:46:11 -08:00
committed by Facebook GitHub Bot
parent 8efdde08c4
commit 24aed8fd45
8 changed files with 551 additions and 108 deletions

View File

@@ -28,7 +28,13 @@ export function sideEffect<
State = Store extends ReduxStore<infer S, any> ? S : never
>(
store: Store,
options: {name: string; throttleMs: number; fireImmediately?: boolean},
options: {
name: string;
throttleMs: number;
fireImmediately?: boolean;
noTimeBudgetWarns?: boolean;
runSynchronously?: boolean;
},
selector: (state: State) => V,
effect: (selectedState: V, store: Store) => void,
): () => void {
@@ -52,7 +58,11 @@ export function sideEffect<
}
lastRun = performance.now();
const duration = lastRun - start;
if (duration > 15 && duration > options.throttleMs / 10) {
if (
!options.noTimeBudgetWarns &&
duration > 15 &&
duration > options.throttleMs / 10
) {
console.warn(
`Side effect '${options.name}' took ${Math.round(
duration,
@@ -75,13 +85,17 @@ export function sideEffect<
return; // no new value, no need to schedule
}
scheduled = true;
timeout = setTimeout(
run,
// Run ASAP (but async) or, if we recently did run, delay until at least 'throttle' time has expired
lastRun === -1
? 1
: Math.max(1, lastRun + options.throttleMs - performance.now()),
);
if (options.runSynchronously) {
run();
} else {
timeout = setTimeout(
run,
// Run ASAP (but async) or, if we recently did run, delay until at least 'throttle' time has expired
lastRun === -1
? 1
: Math.max(1, lastRun + options.throttleMs - performance.now()),
);
}
});
if (options.fireImmediately) {