aboutsummaryrefslogtreecommitdiff
path: root/test/shared
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-07-08 21:20:49 +0900
committerGitHub <noreply@github.com>2018-07-08 21:20:49 +0900
commit37840c2abb02948d36cdcfaab9063f3ea67fdb6b (patch)
tree2662c396dea1761f57ed508616d2c76389aba5f9 /test/shared
parent9f64b19bef06328999a5ed602ba89867402b9d5c (diff)
parent43beccfe0f323e2363fe97bdb6bc0d71558fda47 (diff)
Merge pull request #429 from ueokande/use-official-redux
Use official redux
Diffstat (limited to 'test/shared')
-rw-r--r--test/shared/blacklists.test.js42
-rw-r--r--test/shared/store/index.test.js110
2 files changed, 42 insertions, 110 deletions
diff --git a/test/shared/blacklists.test.js b/test/shared/blacklists.test.js
new file mode 100644
index 0000000..87e89c5
--- /dev/null
+++ b/test/shared/blacklists.test.js
@@ -0,0 +1,42 @@
+import { includes } from 'shared/blacklists';
+
+describe("shared/blacklist", () => {
+ it('matches by *', () => {
+ let blacklist = ['*'];
+
+ expect(includes(blacklist, 'https://github.com/abc')).to.be.true;
+ })
+
+ it('matches by hostname', () => {
+ let blacklist = ['github.com'];
+
+ expect(includes(blacklist, 'https://github.com')).to.be.true;
+ expect(includes(blacklist, 'https://gist.github.com')).to.be.false;
+ expect(includes(blacklist, 'https://github.com/ueokande')).to.be.true;
+ expect(includes(blacklist, 'https://github.org')).to.be.false;
+ expect(includes(blacklist, 'https://google.com/search?q=github.org')).to.be.false;
+ })
+
+ it('matches by hostname with wildcard', () => {
+ let blacklist = ['*.github.com'];
+
+ expect(includes(blacklist, 'https://github.com')).to.be.false;
+ expect(includes(blacklist, 'https://gist.github.com')).to.be.true;
+ })
+
+ it('matches by path', () => {
+ let blacklist = ['github.com/abc'];
+
+ expect(includes(blacklist, 'https://github.com/abc')).to.be.true;
+ expect(includes(blacklist, 'https://github.com/abcdef')).to.be.false;
+ expect(includes(blacklist, 'https://gist.github.com/abc')).to.be.false;
+ })
+
+ it('matches by path with wildcard', () => {
+ let blacklist = ['github.com/abc*'];
+
+ expect(includes(blacklist, 'https://github.com/abc')).to.be.true;
+ expect(includes(blacklist, 'https://github.com/abcdef')).to.be.true;
+ expect(includes(blacklist, 'https://gist.github.com/abc')).to.be.false;
+ })
+});
diff --git a/test/shared/store/index.test.js b/test/shared/store/index.test.js
deleted file mode 100644
index 5b69b40..0000000
--- a/test/shared/store/index.test.js
+++ /dev/null
@@ -1,110 +0,0 @@
-import { createStore } from 'shared/store';
-
-describe("Store class", () => {
- const reducer = (state, action) => {
- if (state == undefined) {
- return 0;
- }
- return state + action;
- };
-
- describe("#dispatch", () => {
- it('transit status by immediate action', () => {
- let store = createStore(reducer);
- store.dispatch(10);
- expect(store.getState()).to.equal(10);
-
- store.dispatch(-20);
- expect(store.getState()).to.equal(-10);
- });
-
- it('returns next state by immediate action', () => {
- let store = createStore(reducer);
- let dispatchedAction = store.dispatch(11);
- expect(dispatchedAction).to.equal(11);
- });
-
- it('transit status by Promise action', () => {
- let store = createStore(reducer);
- let p1 = Promise.resolve(10);
-
- return store.dispatch(p1).then(() => {
- expect(store.getState()).to.equal(10);
- }).then(() => {
- store.dispatch(Promise.resolve(-20));
- }).then(() => {
- expect(store.getState()).to.equal(-10);
- });
- });
-
- it('returns next state by promise action', () => {
- let store = createStore(reducer);
- let dispatchedAction = store.dispatch(Promise.resolve(11));
- return dispatchedAction.then((value) => {
- expect(value).to.equal(11);
- });
- });
- });
-
- describe("#subscribe", () => {
- it('invoke callback', (done) => {
- let store = createStore(reducer);
- store.subscribe(() => {
- expect(store.getState()).to.equal(15);
- done();
- });
- store.dispatch(15);
- });
-
- it('propagate sender object', (done) => {
- let store = createStore(reducer);
- store.subscribe((sender) => {
- expect(sender).to.equal('sender');
- done();
- });
- store.dispatch(15, 'sender');
- });
- })
-
- describe("catcher", () => {
- it('catch an error in reducer on initializing by immediate action', (done) => {
- let store = createStore(() => {
- throw new Error();
- }, (e) => {
- expect(e).to.be.an('error');
- done();
- });
- });
-
- it('catch an error in reducer on initializing by immediate action', (done) => {
- let store = createStore((state, action) => {
- if (state === undefined) return 0;
- throw new Error();
- }, (e) => {
- expect(e).to.be.an('error');
- done();
- });
- store.dispatch(20);
- });
-
- it('catch an error in reducer on initializing by promise action', (done) => {
- let store = createStore((state, action) => {
- if (state === undefined) return 0;
- throw new Error();
- }, (e) => {
- expect(e).to.be.an('error');
- done();
- });
- store.dispatch(Promise.resolve(20));
- });
-
- it('catch an error in promise action', (done) => {
- let store = createStore((state, action) => 0, (e) => {
- expect(e).to.be.an('error');
- done();
- });
- store.dispatch(new Promise(() => { throw new Error() }));
- });
- })
-});
-