mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-17 13:58:00 +08:00
* refactor categorical controls state * lint * fix race condition in tests * fix typo * add missing update on subset * remove obsolete code * update jest and puppeteer major version; update all minors * update when label changes * remove lint from tests; increase timeouts in e2e tests * initial refactoring to new async annomatrix * refine error handling * fix bad merge * add continuous legend * lint * fix memoization in color table creators * partial implementation of user defined annotations * add new annotations action creator file * first pass at user annotations * additional user annotation bug fixes * user annotation auto-save * unit test cleanup * lint * refactor into multiple files * cleanup * add column GC * fix several bugs in user annotations * remove debug code * no anonymous functions * undo redo cleanup * file cleanup * scatterplot * performance * cleanup * remove old code * render in parallel with load * fix race condition * simply graph rendering * render throttle DRY * fix category label order * fix typo in e2e test setup * re-fix the e2e test setup * be more tolerant of races * anno matrix unit tests * temp disable reembedding * pilot port continuous histo to react-async * name change * lint * fix repaint bug * typo fix * update snap to match new ids * world/universe name cleanup * move annoMatrix to src dir * use private underscore naming convention * fix corner case in all selected * name cleanup * add layout control * init edge case * lint * port scatterplot * fix label indexing bug and improve tests * port category to react-async * fix user annotation labelling while subset * select all of prev layout on layout switch * fix race with crossfilter update * prettier lint * fix misleading comment * fix url composition in loader * first pass at crossfilter tests * lint * lint * fix typo * improved error handling for network errors * fix memoization bug * add memo * refactor for performnce * add missing single-value handling in select exact parser * small bugs discovered by tests * lint * additional crossfilter unit tests * remove extraneous comment * add support for automatic category determination * lint * fix render bug in category * take advantage of schema categories guarantee * lint * do not clear history when resetting * enhanced annomatrix gc * lint * finish renaming to follow conventions; fix clone race bug * lint * add priority based loading to improve initial data load UX * crossfilter cache perf * perf tuning * remove timers * documentation * PR review changes * PR review changes * more PR review edits * improve clarity of comment * more PR review fixes * port centroidLabels to use react-async * remove dead code * pr review updates * oops, remove logging
185 lines
4.3 KiB
JavaScript
185 lines
4.3 KiB
JavaScript
import {
|
|
_whereCacheGet,
|
|
_whereCacheCreate,
|
|
_whereCacheMerge,
|
|
} from "../../../src/annoMatrix/whereCache";
|
|
|
|
const schema = {};
|
|
|
|
describe("whereCache", () => {
|
|
test("whereCacheGet - missing cache values", () => {
|
|
expect(
|
|
_whereCacheGet({}, schema, "X", {
|
|
field: "var",
|
|
column: "foo",
|
|
value: "bar",
|
|
})
|
|
).toEqual([undefined]);
|
|
expect(
|
|
_whereCacheGet({ X: {} }, schema, "X", {
|
|
field: "var",
|
|
column: "foo",
|
|
value: "bar",
|
|
})
|
|
).toEqual([undefined]);
|
|
expect(
|
|
_whereCacheGet({ X: { var: new Map() } }, schema, "X", {
|
|
field: "var",
|
|
column: "foo",
|
|
value: "bar",
|
|
})
|
|
).toEqual([undefined]);
|
|
expect(
|
|
_whereCacheGet(
|
|
{ X: { var: new Map([["foo", new Map()]]) } },
|
|
schema,
|
|
"X",
|
|
{
|
|
field: "var",
|
|
column: "foo",
|
|
value: "bar",
|
|
}
|
|
)
|
|
).toEqual([undefined]);
|
|
});
|
|
|
|
test("whereCacheGet - varied lookups", () => {
|
|
const whereCache = {
|
|
X: {
|
|
var: new Map([
|
|
[
|
|
"foo",
|
|
new Map([
|
|
["bar", [0]],
|
|
["baz", [1, 2]],
|
|
]),
|
|
],
|
|
]),
|
|
},
|
|
};
|
|
|
|
expect(
|
|
_whereCacheGet(whereCache, schema, "X", {
|
|
field: "var",
|
|
column: "foo",
|
|
value: "bar",
|
|
})
|
|
).toEqual([0]);
|
|
expect(
|
|
_whereCacheGet(whereCache, schema, "X", {
|
|
field: "var",
|
|
column: "foo",
|
|
value: "baz",
|
|
})
|
|
).toEqual([1, 2]);
|
|
expect(_whereCacheGet(whereCache, schema, "Y", {})).toEqual([undefined]);
|
|
expect(
|
|
_whereCacheGet(whereCache, schema, "X", {
|
|
field: "whoknows",
|
|
column: "whatever",
|
|
value: "snork",
|
|
})
|
|
).toEqual([undefined]);
|
|
expect(
|
|
_whereCacheGet(whereCache, schema, "X", {
|
|
field: "var",
|
|
column: "whatever",
|
|
value: "snork",
|
|
})
|
|
).toEqual([undefined]);
|
|
expect(
|
|
_whereCacheGet(whereCache, schema, "X", {
|
|
field: "var",
|
|
column: "foo",
|
|
value: "snork",
|
|
})
|
|
).toEqual([undefined]);
|
|
});
|
|
|
|
test("whereCacheCreate", () => {
|
|
const query = {
|
|
field: "queryField",
|
|
column: "queryColumn",
|
|
value: "queryValue",
|
|
};
|
|
const wc = _whereCacheCreate(
|
|
"field",
|
|
{ field: "queryField", column: "queryColumn", value: "queryValue" },
|
|
[0, 1, 2]
|
|
);
|
|
expect(wc).toBeDefined();
|
|
expect(wc).toEqual(
|
|
expect.objectContaining({
|
|
field: {
|
|
queryField: expect.any(Map),
|
|
},
|
|
})
|
|
);
|
|
expect(wc.field.queryField.has("queryColumn")).toEqual(true);
|
|
expect(wc.field.queryField.get("queryColumn")).toBeInstanceOf(Map);
|
|
expect(wc.field.queryField.get("queryColumn").has("queryValue")).toEqual(
|
|
true
|
|
);
|
|
expect(_whereCacheGet(wc, schema, "field", query)).toEqual([0, 1, 2]);
|
|
});
|
|
|
|
test("whereCacheMerge", () => {
|
|
let wc;
|
|
|
|
// remember, will mutate dst
|
|
const src = _whereCacheCreate(
|
|
"field",
|
|
{ field: "queryField", column: "queryColumn", value: "foo" },
|
|
["foo"]
|
|
);
|
|
|
|
const dst1 = _whereCacheCreate(
|
|
"field",
|
|
{ field: "queryField", column: "queryColumn", value: "bar" },
|
|
["dst1"]
|
|
);
|
|
wc = _whereCacheMerge(dst1, src);
|
|
expect(
|
|
_whereCacheGet(wc, schema, "field", {
|
|
field: "queryField",
|
|
column: "queryColumn",
|
|
value: "foo",
|
|
})
|
|
).toEqual(["foo"]);
|
|
expect(
|
|
_whereCacheGet(wc, schema, "field", {
|
|
field: "queryField",
|
|
column: "queryColumn",
|
|
value: "bar",
|
|
})
|
|
).toEqual(["dst1"]);
|
|
|
|
const dst2 = _whereCacheCreate(
|
|
"field",
|
|
{ field: "queryField", column: "queryColumn", value: "bar" },
|
|
["dst2"]
|
|
);
|
|
wc = _whereCacheMerge(dst2, dst1, src);
|
|
expect(
|
|
_whereCacheGet(wc, schema, "field", {
|
|
field: "queryField",
|
|
column: "queryColumn",
|
|
value: "foo",
|
|
})
|
|
).toEqual(["foo"]);
|
|
expect(
|
|
_whereCacheGet(wc, schema, "field", {
|
|
field: "queryField",
|
|
column: "queryColumn",
|
|
value: "bar",
|
|
})
|
|
).toEqual(["dst1"]);
|
|
|
|
wc = _whereCacheMerge({}, src);
|
|
expect(wc).toEqual(src);
|
|
|
|
wc = _whereCacheMerge({ field: { queryField: new Map() } }, src);
|
|
expect(wc).toEqual(src);
|
|
});
|
|
});
|