2015-09-02 01:29:47 +08:00
|
|
|
import KeyValueStore from "discourse/lib/key-value-store";
|
2013-06-19 04:27:40 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.module("lib:key-value-store");
|
2013-06-19 04:27:40 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
QUnit.test("it's able to get the result back from the store", assert => {
|
2015-09-02 01:29:47 +08:00
|
|
|
const store = new KeyValueStore("_test");
|
2013-06-19 04:27:40 +08:00
|
|
|
store.set({ key: "bob", value: "uncle" });
|
2015-09-02 01:29:47 +08:00
|
|
|
assert.equal(store.get("bob"), "uncle");
|
2013-06-19 04:27:40 +08:00
|
|
|
});
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
QUnit.test("is able to nuke the store", assert => {
|
2015-09-02 01:29:47 +08:00
|
|
|
const store = new KeyValueStore("_test");
|
2013-06-19 04:27:40 +08:00
|
|
|
store.set({ key: "bob1", value: "uncle" });
|
|
|
|
store.abandonLocal();
|
|
|
|
localStorage.a = 1;
|
2015-09-02 01:29:47 +08:00
|
|
|
assert.equal(store.get("bob1"), void 0);
|
|
|
|
assert.equal(localStorage.a, "1");
|
2018-06-15 23:03:24 +08:00
|
|
|
});
|