1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/lib/testing/share/mockShareService.ts

75 lines
2.5 KiB
TypeScript

import { Store, createStore } from 'redux';
import reducer, { State, defaultState } from '../../reducer';
import ShareService from '../../services/share/ShareService';
import { encryptionService } from '../test-utils';
import JoplinServerApi, { ExecOptions } from '../../JoplinServerApi';
import { ShareInvitation, StateShare } from '../../services/share/reducer';
const testReducer = (state = defaultState, action: unknown) => {
return reducer(state, action);
};
type Query = Record<string, unknown>;
type OnShareGetListener = (query: Query)=> Promise<{ items: Partial<StateShare>[] }>;
type OnSharePostListener = (query: Query)=> Promise<{ id: string }>;
type OnInvitationGetListener = (query: Query)=> Promise<{ items: Partial<ShareInvitation>[] }>;
type OnApiExecListener = (
method: string,
path: string,
query: Query,
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Needs to interface with old code from before the rule was applied
body: any,
headers: Record<string, unknown>,
options: ExecOptions
)=> Promise<unknown>;
export type ApiMock = {
getShares: OnShareGetListener;
postShares: OnSharePostListener;
getShareInvitations: OnInvitationGetListener;
onUnhandled?: OnApiExecListener;
onExec?: undefined;
}|{
onExec: OnApiExecListener;
onUnhandled?: undefined;
getShareInvitations?: undefined;
getShares?: undefined;
postShares?: undefined;
};
// Initializes a share service with mocks
const mockShareService = (apiCallHandler: ApiMock, service?: ShareService, store?: Store<State>) => {
service ??= new ShareService();
const api: Partial<JoplinServerApi> = {
exec: (method, path = '', query = null, body = null, headers = null, options = null) => {
if (apiCallHandler.onExec) {
return apiCallHandler.onExec(method, path, query, body, headers, options);
}
if (path === 'api/shares') {
if (method === 'GET') {
return apiCallHandler.getShares(query);
} else if (method === 'POST') {
return apiCallHandler.postShares(query);
}
} else if (method === 'GET' && path === 'api/share_users') {
return apiCallHandler.getShareInvitations(query);
}
if (apiCallHandler.onUnhandled) {
return apiCallHandler.onUnhandled(method, path, query, body, headers, options);
}
return null;
},
personalizedUserContentBaseUrl(_userId) {
return null;
},
};
store ??= createStore(testReducer);
service.initialize(store, encryptionService(), api as JoplinServerApi);
return service;
};
export default mockShareService;