|
| 1 | +import { expect } from 'chai'; |
| 2 | +import { animationFrames, Subject } from 'rxjs'; |
| 3 | +import * as sinon from 'sinon'; |
| 4 | +import { take, takeUntil } from 'rxjs/operators'; |
| 5 | +import { RAFTestTools, stubRAF } from 'spec/helpers/test-helper'; |
| 6 | + |
| 7 | +describe('animationFrame', () => { |
| 8 | + let raf: RAFTestTools; |
| 9 | + let DateStub: sinon.SinonStub; |
| 10 | + let now = 1000; |
| 11 | + |
| 12 | + beforeEach(() => { |
| 13 | + raf = stubRAF(); |
| 14 | + DateStub = sinon.stub(Date, 'now').callsFake(() => { |
| 15 | + return ++now; |
| 16 | + }); |
| 17 | + }); |
| 18 | + |
| 19 | + afterEach(() => { |
| 20 | + raf.restore(); |
| 21 | + DateStub.restore(); |
| 22 | + }); |
| 23 | + |
| 24 | + it('should animate', function () { |
| 25 | + const results: any[] = []; |
| 26 | + const source$ = animationFrames(); |
| 27 | + |
| 28 | + const subs = source$.subscribe({ |
| 29 | + next: ts => results.push(ts), |
| 30 | + error: err => results.push(err), |
| 31 | + complete: () => results.push('done'), |
| 32 | + }); |
| 33 | + |
| 34 | + expect(DateStub).to.have.been.calledOnce; |
| 35 | + |
| 36 | + expect(results).to.deep.equal([]); |
| 37 | + |
| 38 | + raf.tick(); |
| 39 | + expect(DateStub).to.have.been.calledTwice; |
| 40 | + expect(results).to.deep.equal([1]); |
| 41 | + |
| 42 | + raf.tick(); |
| 43 | + expect(DateStub).to.have.been.calledThrice; |
| 44 | + expect(results).to.deep.equal([1, 2]); |
| 45 | + |
| 46 | + raf.tick(); |
| 47 | + expect(results).to.deep.equal([1, 2, 3]); |
| 48 | + |
| 49 | + // Stop the animation loop |
| 50 | + subs.unsubscribe(); |
| 51 | + }); |
| 52 | + |
| 53 | + it('should use any passed timestampProvider', () => { |
| 54 | + const results: any[] = []; |
| 55 | + let i = 0; |
| 56 | + const timestampProvider = { |
| 57 | + now: sinon.stub().callsFake(() => { |
| 58 | + return [100, 200, 210, 300][i++]; |
| 59 | + }) |
| 60 | + }; |
| 61 | + |
| 62 | + const source$ = animationFrames(timestampProvider); |
| 63 | + |
| 64 | + const subs = source$.subscribe({ |
| 65 | + next: ts => results.push(ts), |
| 66 | + error: err => results.push(err), |
| 67 | + complete: () => results.push('done'), |
| 68 | + }); |
| 69 | + |
| 70 | + expect(DateStub).not.to.have.been.called; |
| 71 | + expect(timestampProvider.now).to.have.been.calledOnce; |
| 72 | + expect(results).to.deep.equal([]); |
| 73 | + |
| 74 | + raf.tick(); |
| 75 | + expect(DateStub).not.to.have.been.called; |
| 76 | + expect(timestampProvider.now).to.have.been.calledTwice; |
| 77 | + expect(results).to.deep.equal([100]); |
| 78 | + |
| 79 | + raf.tick(); |
| 80 | + expect(DateStub).not.to.have.been.called; |
| 81 | + expect(timestampProvider.now).to.have.been.calledThrice; |
| 82 | + expect(results).to.deep.equal([100, 110]); |
| 83 | + |
| 84 | + raf.tick(); |
| 85 | + expect(results).to.deep.equal([100, 110, 200]); |
| 86 | + |
| 87 | + // Stop the animation loop |
| 88 | + subs.unsubscribe(); |
| 89 | + }); |
| 90 | + |
| 91 | + it('should compose with take', () => { |
| 92 | + const results: any[] = []; |
| 93 | + const source$ = animationFrames(); |
| 94 | + expect(requestAnimationFrame).not.to.have.been.called; |
| 95 | + |
| 96 | + source$.pipe( |
| 97 | + take(2), |
| 98 | + ).subscribe({ |
| 99 | + next: ts => results.push(ts), |
| 100 | + error: err => results.push(err), |
| 101 | + complete: () => results.push('done'), |
| 102 | + }); |
| 103 | + |
| 104 | + expect(DateStub).to.have.been.calledOnce; |
| 105 | + expect(requestAnimationFrame).to.have.been.calledOnce; |
| 106 | + |
| 107 | + expect(results).to.deep.equal([]); |
| 108 | + |
| 109 | + raf.tick(); |
| 110 | + expect(DateStub).to.have.been.calledTwice; |
| 111 | + expect(requestAnimationFrame).to.have.been.calledTwice; |
| 112 | + expect(results).to.deep.equal([1]); |
| 113 | + |
| 114 | + raf.tick(); |
| 115 | + expect(DateStub).to.have.been.calledThrice; |
| 116 | + // It shouldn't reschedule, because there are no more subscribers |
| 117 | + // for the animation loop. |
| 118 | + expect(requestAnimationFrame).to.have.been.calledTwice; |
| 119 | + expect(results).to.deep.equal([1, 2, 'done']); |
| 120 | + |
| 121 | + // Since there should be no more subscribers listening on the loop |
| 122 | + // the latest animation frame should be cancelled. |
| 123 | + expect(cancelAnimationFrame).to.have.been.calledOnce; |
| 124 | + }); |
| 125 | + |
| 126 | + it('should compose with takeUntil', () => { |
| 127 | + const subject = new Subject(); |
| 128 | + const results: any[] = []; |
| 129 | + const source$ = animationFrames(); |
| 130 | + expect(requestAnimationFrame).not.to.have.been.called; |
| 131 | + |
| 132 | + source$.pipe( |
| 133 | + takeUntil(subject), |
| 134 | + ).subscribe({ |
| 135 | + next: ts => results.push(ts), |
| 136 | + error: err => results.push(err), |
| 137 | + complete: () => results.push('done'), |
| 138 | + }); |
| 139 | + |
| 140 | + expect(DateStub).to.have.been.calledOnce; |
| 141 | + expect(requestAnimationFrame).to.have.been.calledOnce; |
| 142 | + |
| 143 | + expect(results).to.deep.equal([]); |
| 144 | + |
| 145 | + raf.tick(); |
| 146 | + expect(DateStub).to.have.been.calledTwice; |
| 147 | + expect(requestAnimationFrame).to.have.been.calledTwice; |
| 148 | + expect(results).to.deep.equal([1]); |
| 149 | + |
| 150 | + raf.tick(); |
| 151 | + expect(DateStub).to.have.been.calledThrice; |
| 152 | + expect(requestAnimationFrame).to.have.been.calledThrice; |
| 153 | + expect(results).to.deep.equal([1, 2]); |
| 154 | + expect(cancelAnimationFrame).not.to.have.been.called; |
| 155 | + |
| 156 | + // Complete the observable via `takeUntil`. |
| 157 | + subject.next(); |
| 158 | + expect(cancelAnimationFrame).to.have.been.calledOnce; |
| 159 | + expect(results).to.deep.equal([1, 2, 'done']); |
| 160 | + |
| 161 | + raf.tick(); |
| 162 | + expect(DateStub).to.have.been.calledThrice; |
| 163 | + expect(requestAnimationFrame).to.have.been.calledThrice; |
| 164 | + expect(results).to.deep.equal([1, 2, 'done']); |
| 165 | + }); |
| 166 | +}); |
0 commit comments