97 lines
3.4 KiB
JavaScript
97 lines
3.4 KiB
JavaScript
// jest manual mock: firebase/firestore
|
|||
|
|
// Records all calls so tests can assert path/payload/semantics.
|
||
|
|
// Global __firestoreCalls reset per test (see setupTests.js).
|
||
|
|
|
||
|
|
import { MOCK_DB, recordCall } from './_mock-db.js';
|
||
|
|
|
||
|
|
const ref = (path) => ({ __ref: true, path, id: path.split('/').pop() });
|
||
|
|
|
||
|
|
export function getFirestore() { return { __db: true }; }
|
||
|
|
export function doc(db, path, extra) {
|
||
|
|
const p = extra ? `${path}/${extra}` : path;
|
||
|
|
return ref(p);
|
||
|
|
}
|
||
|
|
export function collection(db, path) { return ref(path); }
|
||
|
|
export function query(refOrColl, ...constraints) { return { ref: refOrColl, constraints }; }
|
||
|
|
export function orderBy(field, dir) { return { __type: 'orderBy', field, dir }; }
|
||
|
|
export function limit(n) { return { __type: 'limit', n }; }
|
||
|
|
|
||
|
|
// writes
|
||
|
|
export async function setDoc(docRef, data, opts) {
|
||
|
|
recordCall({ fn: 'setDoc', path: docRef.path, data: clone(data), opts: opts || null });
|
||
|
|
MOCK_DB.set(docRef.path, clone(data));
|
||
|
|
return undefined;
|
||
|
|
}
|
||
|
|
export async function updateDoc(docRef, patch) {
|
||
|
|
recordCall({ fn: 'updateDoc', path: docRef.path, data: clone(patch) });
|
||
|
|
MOCK_DB.merge(docRef.path, clone(patch));
|
||
|
|
return undefined;
|
||
|
|
}
|
||
|
|
export async function deleteDoc(docRef) {
|
||
|
|
recordCall({ fn: 'deleteDoc', path: docRef.path });
|
||
|
|
MOCK_DB.delete(docRef.path);
|
||
|
|
return undefined;
|
||
|
|
}
|
||
|
|
export async function addDoc(collRef, data) {
|
||
|
|
const id = `auto_${MOCK_DB.nextId()}`;
|
||
|
|
const path = `${collRef.path}/${id}`;
|
||
|
|
recordCall({ fn: 'addDoc', path: collRef.path, data: clone(data) });
|
||
|
|
MOCK_DB.set(path, clone(data));
|
||
|
|
return { id, path };
|
||
|
|
}
|
||
|
|
export async function writeBatch(db) {
|
||
|
|
const ops = [];
|
||
|
|
return {
|
||
|
|
set: (r, d) => ops.push({ op: 'set', path: r.path, data: clone(d) }),
|
||
|
|
update: (r, d) => ops.push({ op: 'update', path: r.path, data: clone(d) }),
|
||
|
|
delete: (r) => ops.push({ op: 'delete', path: r.path }),
|
||
|
|
commit: async () => {
|
||
|
|
ops.forEach(o => {
|
||
|
|
recordCall({ fn: `batch.${o.op}`, path: o.path, data: o.data });
|
||
|
|
if (o.op === 'set') MOCK_DB.set(o.path, o.data);
|
||
|
|
else if (o.op === 'update') MOCK_DB.merge(o.path, o.data);
|
||
|
|
else if (o.op === 'delete') MOCK_DB.delete(o.path);
|
||
|
|
});
|
||
|
|
},
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
// reads (return from in-memory mock DB)
|
||
|
|
export async function getDoc(docRef) {
|
||
|
|
const data = MOCK_DB.get(docRef.path);
|
||
|
|
return { exists: () => data !== null, id: docRef.id, data: () => data };
|
||
|
|
}
|
||
|
|
export async function getDocs(collRefOrQuery) {
|
||
|
|
const collPath = collRefOrQuery.ref ? collRefOrQuery.ref.path : collRefOrQuery.path;
|
||
|
|
const docs = MOCK_DB.collection(collPath);
|
||
|
|
return { docs: docs.map(d => ({ id: d.id, data: () => d.data })) };
|
||
|
|
}
|
||
|
|
|
||
|
|
// realtime — emit from mock DB, capture unsub
|
||
|
|
export function onSnapshot(refOrQuery, onSuccess, onError) {
|
||
|
|
const path = refOrQuery.path || (refOrQuery.ref && refOrQuery.ref.path);
|
||
|
|
// fire immediately with current state
|
||
|
|
const emit = () => {
|
||
|
|
if (refOrQuery.__ref && refOrQuery.path && path.split('/').length % 2 === 0) {
|
||
|
|
const data = MOCK_DB.get(path);
|
||
|
|
onSuccess({
|
||
|
|
exists: () => data !== null,
|
||
|
|
id: path.split('/').pop(),
|
||
|
|
data: () => data,
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
const docs = MOCK_DB.collection(path);
|
||
|
|
onSuccess({ docs: docs.map(d => ({ id: d.id, data: () => d.data })) });
|
||
|
|
}
|
||
|
|
};
|
||
|
|
emit();
|
||
|
|
// register for future changes on this path
|
||
|
|
const unsub = MOCK_DB.subscribe(path, emit);
|
||
|
|
return unsub;
|
||
|
|
}
|
||
|
|
|
||
|
|
function clone(v) {
|
||
|
|
if (v === null || v === undefined) return v;
|
||
|
|
return JSON.parse(JSON.stringify(v));
|
||
|
|
}
|