You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-13 00:10:37 +02:00
Chore: Refactor mobile plugin logic into locations more consistent with other parts of the app (#10636)
This commit is contained in:
49
packages/lib/services/plugins/testing/MockPluginRunner.ts
Normal file
49
packages/lib/services/plugins/testing/MockPluginRunner.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import BasePluginRunner from '../../../services/plugins/BasePluginRunner';
|
||||
import Plugin from '../../../services/plugins/Plugin';
|
||||
|
||||
|
||||
// TODO: Merge this with the plugin runner in app-cli, which, at the time of this writing,
|
||||
// was used only for tests.
|
||||
export default class MockPluginRunner extends BasePluginRunner {
|
||||
public runningPluginIds: string[] = [];
|
||||
private onRunningPluginsChangedListeners_ = [() => {}];
|
||||
private stopCalledTimes_ = 0;
|
||||
|
||||
public waitForAllToBeRunning(expectedIds: string[]) {
|
||||
return new Promise<void>(resolve => {
|
||||
const listener = () => {
|
||||
let missingIds = false;
|
||||
for (const id of expectedIds) {
|
||||
if (!this.runningPluginIds.includes(id)) {
|
||||
missingIds = true;
|
||||
console.warn('Missing ID', id, 'in', this.runningPluginIds);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!missingIds) {
|
||||
this.onRunningPluginsChangedListeners_ = this.onRunningPluginsChangedListeners_.filter(l => l !== listener);
|
||||
resolve();
|
||||
}
|
||||
};
|
||||
this.onRunningPluginsChangedListeners_.push(listener);
|
||||
listener();
|
||||
});
|
||||
}
|
||||
|
||||
public get stopCalledTimes() { return this.stopCalledTimes_; }
|
||||
|
||||
public override async run(plugin: Plugin) {
|
||||
this.runningPluginIds.push(plugin.manifest.id);
|
||||
|
||||
for (const listener of this.onRunningPluginsChangedListeners_) {
|
||||
listener();
|
||||
}
|
||||
}
|
||||
|
||||
public override async stop(plugin: Plugin) {
|
||||
this.runningPluginIds = this.runningPluginIds.filter(id => id !== plugin.manifest.id);
|
||||
this.stopCalledTimes_ ++;
|
||||
}
|
||||
|
||||
public override async waitForSandboxCalls() {}
|
||||
}
|
Reference in New Issue
Block a user