12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- describe('flatMapLatest', function()
- it('produces an error if its parent errors', function()
- expect(Rx.Observable.throw():flatMapLatest()).to.fail()
- end)
- it('produces an error if the callback errors', function()
- local onError = spy()
- Rx.Observable.fromRange(3):flatMapLatest(error):subscribe(nil, onError, nil)
- expect(#onError).to.equal(1)
- end)
- it('unsubscribes from the source and the projected observable', function()
- local outerUnsubscribe = spy()
- local outerSubscription = Rx.Subscription.create(outerUnsubscribe)
- local outer = Rx.Observable.create(function(observer)
- observer:onNext()
- observer:onCompleted()
- return outerSubscription
- end)
- local innerUnsubscribe = spy()
- local innerSubscription = Rx.Subscription.create(innerUnsubscribe)
- local inner = Rx.Observable.create(function()
- return innerSubscription
- end)
- local subscription = outer:flatMapLatest(function() return inner end):subscribe()
- subscription:unsubscribe()
- expect(#innerUnsubscribe).to.equal(1)
- expect(#outerUnsubscribe).to.equal(1)
- end)
- it('uses the identity function as the callback if none is specified', function()
- local observable = Rx.Observable.fromTable({
- Rx.Observable.fromRange(3),
- Rx.Observable.fromRange(5)
- }):flatMapLatest()
- expect(observable).to.produce(1, 2, 3, 1, 2, 3, 4, 5)
- end)
- it('produces values from the most recent projected Observable of the source', function()
- local children = {Rx.Subject.create(), Rx.Subject.create()}
- local subject = Rx.Subject.create()
- local onNext = observableSpy(subject:flatMapLatest(function(i)
- return children[i]
- end))
- subject:onNext(1)
- children[1]:onNext(1)
- children[1]:onNext(2)
- children[1]:onNext(3)
- children[2]:onNext(10)
- subject:onNext(2)
- children[1]:onNext(4)
- children[2]:onNext(20)
- children[1]:onNext(5)
- children[2]:onNext(30)
- children[2]:onNext(40)
- children[2]:onNext(50)
- expect(onNext).to.equal({{1}, {2}, {3}, {20}, {30}, {40}, {50}})
- end)
- it('does not complete if one of the children completes', function()
- local subject = Rx.Subject.create()
- local flatMapped = subject:flatMapLatest(function() return Rx.Observable.empty() end)
- local _, _, onCompleted = observableSpy(flatMapped)
- subject:onNext()
- expect(#onCompleted).to.equal(0)
- subject:onNext()
- expect(#onCompleted).to.equal(0)
- subject:onCompleted()
- expect(#onCompleted).to.equal(1)
- end)
- end)
|