You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Mobile: Support accepting Joplin Cloud shares (#10300)
This commit is contained in:
74
packages/lib/testing/share/mockShareService.ts
Normal file
74
packages/lib/testing/share/mockShareService.ts
Normal file
@ -0,0 +1,74 @@
|
||||
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;
|
Reference in New Issue
Block a user