forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(materialize): add marble tests for materialize operator
closes ReactiveX#391
- Loading branch information
Showing
1 changed file
with
59 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,70 @@ | ||
/* globals describe, it, expect */ | ||
/* globals describe, it, expect, expectObservable, hot */ | ||
var Rx = require('../../dist/cjs/Rx'); | ||
var Observable = Rx.Observable; | ||
var Notification = Rx.Notification; | ||
|
||
describe('Observable.prototype.materialize()', function () { | ||
it('should materialize a happy stream', function () { | ||
var expected = [ | ||
Notification.createNext(1), | ||
Notification.createNext(2), | ||
Notification.createNext(3), | ||
Notification.createComplete() | ||
]; | ||
|
||
Observable.of(1, 2, 3) | ||
.materialize() | ||
.subscribe(function (n) { | ||
expect(n instanceof Notification).toBe(true); | ||
expect(n).toEqual(expected.shift()); | ||
}); | ||
var e1 = hot('--a--b--c--|'); | ||
var expected = '--w--x--y--(z|)'; | ||
|
||
var expectedValue = { | ||
w: Notification.createNext('a'), | ||
x: Notification.createNext('b'), | ||
y: Notification.createNext('c'), | ||
z: Notification.createComplete() | ||
}; | ||
|
||
expectObservable(e1.materialize()).toBe(expected, expectedValue); | ||
}); | ||
|
||
it('should materialize a sad stream', function () { | ||
var expected = [ | ||
Notification.createNext(1), | ||
Notification.createNext(2), | ||
Notification.createNext(3), | ||
Notification.createError('booooo') | ||
]; | ||
|
||
Observable.of(1, 2, 3, 4) | ||
.map(function (x) { | ||
if (x === 4) { | ||
throw 'booooo'; | ||
} | ||
return x; | ||
}) | ||
.materialize() | ||
.subscribe(function (n) { | ||
expect(n).toEqual(expected.shift()); | ||
}); | ||
var e1 = hot('--a--b--c--#'); | ||
var expected = '--w--x--y--(z|)'; | ||
|
||
var expectedValue = { | ||
w: Notification.createNext('a'), | ||
x: Notification.createNext('b'), | ||
y: Notification.createNext('c'), | ||
z: Notification.createError('error') | ||
}; | ||
|
||
expectObservable(e1.materialize()).toBe(expected, expectedValue); | ||
}); | ||
|
||
it('should materialize stream does not completes', function () { | ||
var e1 = hot('------'); | ||
var expected = '-'; | ||
|
||
expectObservable(e1.materialize()).toBe(expected); | ||
}); | ||
|
||
it('should materialize stream never completes', function () { | ||
var e1 = Observable.never(); | ||
var expected = '-'; | ||
|
||
expectObservable(e1.materialize()).toBe(expected); | ||
}); | ||
|
||
it('should materialize stream does not emit', function () { | ||
var e1 = hot('----|'); | ||
var expected = '----(x|)'; | ||
|
||
expectObservable(e1.materialize()).toBe(expected, { x: Notification.createComplete() }); | ||
}); | ||
|
||
it('should materialize empty stream', function () { | ||
var e1 = Observable.empty(); | ||
var expected = '(x|)'; | ||
|
||
expectObservable(e1.materialize()).toBe(expected, { x: Notification.createComplete() }); | ||
}); | ||
|
||
it('should materialize stream throws', function () { | ||
var error = 'error'; | ||
var e1 = Observable.throw(error); | ||
var expected = '(x|)'; | ||
|
||
expectObservable(e1.materialize()).toBe(expected, { x: Notification.createError(error) }); | ||
}); | ||
}); |