mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-27 02:42:25 +08:00
refactor: new project struct (#8199)
packages/frontend/web -> packages/frontend/apps/web packages/frontend/mobile -> packages/frontend/apps/mobile packages/frontend/electron -> packages/frontend/apps/electron
This commit is contained in:
39
packages/frontend/apps/electron/test/main/mocks/updater.ts
Normal file
39
packages/frontend/apps/electron/test/main/mocks/updater.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
import 'electron-updater'; // Prevent BaseUpdater is undefined.
|
||||
|
||||
import { randomBytes } from 'node:crypto';
|
||||
|
||||
import type { AllPublishOptions } from 'builder-util-runtime';
|
||||
import { UUID } from 'builder-util-runtime';
|
||||
import type { AppAdapter } from 'electron-updater/out/AppAdapter';
|
||||
import type { DownloadUpdateOptions } from 'electron-updater/out/AppUpdater';
|
||||
import type { InstallOptions } from 'electron-updater/out/BaseUpdater';
|
||||
import { BaseUpdater } from 'electron-updater/out/BaseUpdater';
|
||||
|
||||
import { MockedHttpExecutor } from './http-executor';
|
||||
|
||||
/**
|
||||
* For testing, like:
|
||||
* https://github.com/electron-userland/electron-builder/blob/master/packages/electron-updater/src/MacUpdater.ts
|
||||
*/
|
||||
export class MockedUpdater extends BaseUpdater {
|
||||
httpExecutor: MockedHttpExecutor;
|
||||
|
||||
constructor(options?: AllPublishOptions | null, app?: AppAdapter) {
|
||||
super(options, app);
|
||||
|
||||
this.httpExecutor = new MockedHttpExecutor();
|
||||
Object.assign(this, {
|
||||
getOrCreateStagingUserId: () => {
|
||||
const id = UUID.v5(randomBytes(4096), UUID.OID);
|
||||
return id;
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
doInstall(_options: InstallOptions) {
|
||||
return true;
|
||||
}
|
||||
doDownloadUpdate(_options: DownloadUpdateOptions): Promise<string[]> {
|
||||
return Promise.resolve([]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user