Skip to content

Commit 29f010e

Browse files
committed
feat(observablemarbleassert): input validation
1 parent 5788fb1 commit 29f010e

File tree

2 files changed

+66
-8
lines changed

2 files changed

+66
-8
lines changed

spec/assert/marbleAssert-spec.ts

+52-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,58 @@ describe('marbleAssert', () => {
88
});
99

1010
describe('TestMessage', () => {
11-
//noop
11+
it(`should throw if expected value isn't array`, () => {
12+
expect(() => marbleAssert([]).to.equal(new SubscriptionLog(0) as any)).to.throw();
13+
});
14+
15+
it('should pass hot observables', () => {
16+
//noop
17+
});
18+
19+
it('should pass cold observable', () => {
20+
//noop
21+
});
22+
23+
it('should pass hot and cold observables', () => {
24+
//noop
25+
});
26+
27+
it('should pass observable with noop', () => {
28+
//noop
29+
});
30+
31+
it('should pass observable with groups', () => {
32+
//noop
33+
});
34+
35+
it('should pass observable with expand', () => {
36+
//noop
37+
});
38+
39+
it('should pass observable with complete', () => {
40+
//noop
41+
});
42+
43+
it('should pass observable with error', () => {
44+
//noop
45+
});
46+
47+
it('should pass observable with non completion', () => {
48+
//noop
49+
});
50+
51+
it('should pass hot observable with subscription, emit before sub', () => {
52+
//noop
53+
});
54+
55+
it('should pass hot observable with subscription, without emit before sub', () => {
56+
//noop
57+
});
1258
});
1359

1460
describe('SubscriptionLog', () => {
1561
it(`should throw if expected value isn't subscription log`, () => {
16-
expect(() => marbleAssert(new SubscriptionLog(0, 0)).to.equal(1 as any)).to.throw();
62+
expect(() => marbleAssert(new SubscriptionLog(0, 0)).to.equal([] as any)).to.throw();
1763
});
1864

1965
it('should pass if subscription matches', () => {
@@ -47,28 +93,28 @@ describe('marbleAssert', () => {
4793
expect(() => marbleAssert(source).to.equal(expected)).to.throw();
4894
});
4995

50-
it('should pass if subscription with unsubscription unmatches', () => {
96+
it('should assert if subscription with unsubscription unmatches', () => {
5197
const source = new SubscriptionLog(10, 45);
5298
const expected = new SubscriptionLog(12, 46);
5399

54100
expect(() => marbleAssert(source).to.equal(expected)).to.throw();
55101
});
56102

57-
it('should pass if subscription unmatches with unsubscription', () => {
103+
it('should assert if subscription unmatches with unsubscription', () => {
58104
const source = new SubscriptionLog(10, 45);
59105
const expected = new SubscriptionLog(12, 45);
60106

61107
expect(() => marbleAssert(source).to.equal(expected)).to.throw();
62108
});
63109

64-
it('should pass if unsubscription with subscription unmatches', () => {
110+
it('should assert if unsubscription with subscription unmatches', () => {
65111
const source = new SubscriptionLog(10, 45);
66112
const expected = new SubscriptionLog(10, 46);
67113

68114
expect(() => marbleAssert(source).to.equal(expected)).to.throw();
69115
});
70116

71-
it('should pass if unsubscription unmatches', () => {
117+
it('should assert if unsubscription unmatches', () => {
72118
const source = new SubscriptionLog(Number.POSITIVE_INFINITY, 20);
73119
const expected = new SubscriptionLog(Number.POSITIVE_INFINITY, 30);
74120

src/assert/marbleAssert.ts

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
import { matcherHint, printExpected, printReceived } from 'jest-matcher-utils';
2+
//tslint:disable-next-line:no-require-imports
3+
import isEqualWith = require('lodash.isequalwith');
24
import { SubscriptionLog } from 'rxjs/testing/SubscriptionLog';
35
import { TestMessage } from '../message/TestMessage';
6+
import { constructObservableMarble } from './constructObservableMarble';
47
import { constructSubscriptionMarble } from './constructSubscriptionMarble';
58

6-
const observableMarbleAssert = (_source: Array<TestMessage>) => (_expected: Array<TestMessage>) => {
7-
throw new Error('not impl');
9+
const observableMarbleAssert = (source: Array<TestMessage>) => (expected: Array<TestMessage>) => {
10+
if (!Array.isArray(expected)) {
11+
throw new Error('Expected value is not array');
12+
}
13+
14+
const sourceMarble = constructObservableMarble(source);
15+
const expectedMarble = constructObservableMarble(expected);
16+
17+
if (!isEqualWith(sourceMarble, expectedMarble)) {
18+
throw new Error('unmatch');
19+
}
820
};
921

1022
const subscriptionMarbleAssert = (source: SubscriptionLog) => (expected: SubscriptionLog) => {

0 commit comments

Comments
 (0)