Created
November 13, 2019 21:31
-
-
Save togakangaroo/e83139f592a302e24cc7f0bc5ab6a3c7 to your computer and use it in GitHub Desktop.
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
import { expect } from 'chai' | |
import { useFakeTimers } from 'sinon' | |
const createStopWatch = ({ setInterval, clearInterval, Date} = global) => { | |
const createDisplays = (main, laps = []) => ({main, laps}) | |
let resumeTime | |
let nextToggle | |
let currentInterval = null | |
let prePauseMs = 0 | |
const resume = () => { | |
resumeTime = new Date() | |
clearInterval(currentInterval) | |
currentInterval = setInterval(() => { | |
sw.displays.main = (new Date() - resumeTime) + prePauseMs | |
}, 10) | |
nextToggle = pause | |
} | |
const pause = () => { | |
prePauseMs = new Date() - resumeTime | |
clearInterval(currentInterval) | |
nextToggle = resume | |
} | |
const start = () => { | |
sw.displays = createDisplays(0) | |
resume() | |
} | |
nextToggle = start | |
const sw = { | |
displays: createDisplays(null), | |
toggle: () => nextToggle(), | |
lap: () => { | |
sw.displays.laps.push(sw.displays.main) | |
}, | |
reset: () => { | |
resumeTime = new Date() | |
sw.displays = createDisplays(0, []) | |
}, | |
} | |
return sw | |
} | |
const toSec = ms => `${ms/1000}s` | |
describe(`Stopwatch`, () => { | |
let clock | |
beforeEach(() => clock = useFakeTimers()) | |
afterEach(() => clock.restore()) | |
describe(`new instance`, () => { | |
let sw | |
beforeEach(() => sw = createStopWatch(clock)) | |
const main_and_laps_should_display = (mainMs, lapMss) => { | |
it(`shows ${null === mainMs ? `nothing` : toSec(mainMs) } on main display`, () => | |
expect(sw.displays.main).to.equal(mainMs)) | |
it(`shows ${!lapMss.length ? `no laps` : `laps: ${lapMss.map(toSec).join(` `)}`}`, () => | |
expect(sw.displays.laps).to.deep.equal(lapMss)) | |
} | |
const elapses = (ms, inner) => { | |
describe(`${toSec(ms)} elapses`, () => { | |
beforeEach(() => clock.tick(ms)) | |
inner() | |
}) | |
} | |
main_and_laps_should_display(null, []) | |
elapses(1000, () => { | |
main_and_laps_should_display(null, []) | |
}) | |
describe(`started`, () => { | |
beforeEach(() => sw.toggle()) | |
main_and_laps_should_display(0, []) | |
elapses(10000, () => { | |
main_and_laps_should_display(10000, []) | |
elapses(1000, () => { | |
main_and_laps_should_display(11000, []) | |
}) | |
describe(`lap hit`, () => { | |
beforeEach(() => sw.lap()) | |
main_and_laps_should_display(10000, [10000]) | |
elapses(1000, () => { | |
main_and_laps_should_display(11000, [10000]) | |
describe(`lap hit`, () => { | |
beforeEach(() => sw.lap()) | |
main_and_laps_should_display(11000, [10000, 11000]) | |
elapses(2000, () => { | |
main_and_laps_should_display(13000, [10000, 11000]) | |
}) | |
describe(`reset`, () => { | |
beforeEach(() => sw.reset()) | |
main_and_laps_should_display(0, []) | |
}) | |
}) | |
}) | |
}) | |
describe(`reset`, () => { | |
beforeEach(() => sw.reset()) | |
main_and_laps_should_display(0, []) | |
elapses(2000, () => { | |
main_and_laps_should_display(2000, []) | |
}) | |
}) | |
describe(`paused`, () => { | |
beforeEach(() => sw.toggle()) | |
main_and_laps_should_display(10000, []) | |
elapses(2000, () => { | |
main_and_laps_should_display(10000, []) | |
describe(`resume`, () => { | |
beforeEach(() => sw.toggle()) | |
main_and_laps_should_display(10000, []) | |
elapses(2000, () => { | |
main_and_laps_should_display(12000, []) | |
}) | |
}) | |
}) | |
}) | |
}) | |
}) | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment