2015-09-01 13:29:47 -04:00
|
|
|
import KeyValueStore from "discourse/lib/key-value-store";
|
2013-06-18 16:27:40 -04:00
|
|
|
|
2015-09-01 13:29:47 -04:00
|
|
|
module("lib:key-value-store");
|
2013-06-18 16:27:40 -04:00
|
|
|
|
2015-09-01 13:29:47 -04:00
|
|
|
test("it's able to get the result back from the store", (assert) => {
|
|
|
|
const store = new KeyValueStore("_test");
|
2013-06-18 16:27:40 -04:00
|
|
|
store.set({ key: "bob", value: "uncle" });
|
2015-09-01 13:29:47 -04:00
|
|
|
assert.equal(store.get("bob"), "uncle");
|
2013-06-18 16:27:40 -04:00
|
|
|
});
|
|
|
|
|
2015-09-01 13:29:47 -04:00
|
|
|
test("is able to nuke the store", (assert) => {
|
|
|
|
const store = new KeyValueStore("_test");
|
2013-06-18 16:27:40 -04:00
|
|
|
store.set({ key: "bob1", value: "uncle" });
|
|
|
|
store.abandonLocal();
|
|
|
|
localStorage.a = 1;
|
2015-09-01 13:29:47 -04:00
|
|
|
assert.equal(store.get("bob1"), void 0);
|
|
|
|
assert.equal(localStorage.a, "1");
|
2013-06-18 16:27:40 -04:00
|
|
|
});
|