aboutsummaryrefslogtreecommitdiff
path: root/test/background
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-10-12 10:14:33 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-10-12 10:14:33 +0900
commit003742ec51aa7aea9214442bc0b611e2eb5eaf6e (patch)
tree20345e48bd226c1e83a1145721f7ba585a1452aa /test/background
parent6e6e306275a8ee5632a22b1e30c807bd5ae9cc7e (diff)
Support global marks which select a tab
Diffstat (limited to 'test/background')
-rw-r--r--test/background/domains/global-mark.test.js10
-rw-r--r--test/background/infrastructures/memory-storage.test.js2
-rw-r--r--test/background/repositories/mark.test.js23
3 files changed, 33 insertions, 2 deletions
diff --git a/test/background/domains/global-mark.test.js b/test/background/domains/global-mark.test.js
new file mode 100644
index 0000000..15d492c
--- /dev/null
+++ b/test/background/domains/global-mark.test.js
@@ -0,0 +1,10 @@
+import GlobalMark from 'background/domains/global-mark';
+
+describe("background/domains/global-mark", () => {
+ describe("constructor and getter", () => {
+ let mark = new GlobalMark(1, 10, 30);
+ expect(mark.tabId).to.equal(1);
+ expect(mark.x).to.equal(10);
+ expect(mark.y).to.equal(30);
+ });
+});
diff --git a/test/background/infrastructures/memory-storage.test.js b/test/background/infrastructures/memory-storage.test.js
index 0fea895..8871749 100644
--- a/test/background/infrastructures/memory-storage.test.js
+++ b/test/background/infrastructures/memory-storage.test.js
@@ -1,8 +1,6 @@
import MemoryStorage from 'background/infrastructures/memory-storage';
describe("background/infrastructures/memory-storage", () => {
- let versionRepository;
-
it('stores values', () => {
let cache = new MemoryStorage();
cache.set('number', 123);
diff --git a/test/background/repositories/mark.test.js b/test/background/repositories/mark.test.js
new file mode 100644
index 0000000..94048ea
--- /dev/null
+++ b/test/background/repositories/mark.test.js
@@ -0,0 +1,23 @@
+import MarkRepository from 'background/repositories/mark';
+import GlobalMark from 'background/domains/global-mark';
+
+describe("background/repositories/version", () => {
+ let repository;
+
+ beforeEach(() => {
+ repository = new MarkRepository;
+ });
+
+ it('get and set', async() => {
+ let mark = new GlobalMark(1, 10, 30);
+
+ repository.setMark('A', mark);
+
+ let got = await repository.getMark('A');
+ expect(got).to.be.a('object');
+ expect(got.tabId).to.equal(1);
+
+ got = await repository.getMark('B');
+ expect(got).to.be.undefined;
+ });
+});