| | import calculate from "./calculate"; |
| | import chai from "chai"; |
| |
|
| | |
| | chai.config.truncateThreshold = 0; |
| |
|
| | const expect = chai.expect; |
| |
|
| | function pressButtons(buttons) { |
| | const value = {}; |
| | buttons.forEach(button => { |
| | Object.assign(value, calculate(value, button)); |
| | }); |
| | |
| | Object.keys(value).forEach(key => { |
| | if (value[key] === null) { |
| | delete value[key]; |
| | } |
| | }); |
| | return value; |
| | } |
| |
|
| | function expectButtons(buttons, expectation) { |
| | expect(pressButtons(buttons)).to.deep.equal(expectation); |
| | } |
| |
|
| | function test(buttons, expectation, only = false) { |
| | const func = only ? it.only : it; |
| | func(`buttons ${buttons.join(",")} -> ${JSON.stringify(expectation)}`, () => { |
| | expectButtons(buttons, expectation); |
| | }); |
| | } |
| |
|
| | describe("calculate", function() { |
| | test(["6"], { next: "6" }); |
| |
|
| | test(["6", "6"], { next: "66" }); |
| |
|
| | test(["6", "+", "6"], { |
| | next: "6", |
| | total: "6", |
| | operation: "+", |
| | }); |
| |
|
| | test(["6", "+", "6", "="], { |
| | total: "12", |
| | }); |
| |
|
| | test(["0", "0", "+", "0", "="], { |
| | total: "0", |
| | }); |
| |
|
| | test(["6", "+", "6", "=", "9"], { |
| | next: "9", |
| | }); |
| |
|
| | test(["3", "+", "6", "=", "+"], { |
| | total: "9", |
| | operation: "+", |
| | }); |
| |
|
| | test(["3", "+", "6", "=", "+", "9"], { |
| | total: "9", |
| | operation: "+", |
| | next: "9", |
| | }); |
| |
|
| | test(["3", "+", "6", "=", "+", "9", "="], { |
| | total: "18", |
| | }); |
| |
|
| | |
| | |
| | test(["3", "+", "=", "3", "="], { |
| | total: "6", |
| | }); |
| |
|
| | test(["+"], { |
| | operation: "+", |
| | }); |
| |
|
| | test(["+", "2"], { |
| | next: "2", |
| | operation: "+", |
| | }); |
| |
|
| | test(["+", "2", "+"], { |
| | total: "2", |
| | operation: "+", |
| | }); |
| |
|
| | test(["+", "2", "+", "+"], { |
| | total: "2", |
| | operation: "+", |
| | }); |
| |
|
| | test(["+", "2", "+", "5"], { |
| | next: "5", |
| | total: "2", |
| | operation: "+", |
| | }); |
| |
|
| | test(["+", "2", "5"], { |
| | next: "25", |
| | operation: "+", |
| | }); |
| |
|
| | test(["+", "2", "5"], { |
| | next: "25", |
| | operation: "+", |
| | }); |
| |
|
| | test(["+", "6", "+", "5", "="], { |
| | total: "11", |
| | }); |
| |
|
| | test(["0", ".", "4"], { |
| | next: "0.4", |
| | }); |
| |
|
| | test([".", "4"], { |
| | next: "0.4", |
| | }); |
| |
|
| | test([".", "4", "-", ".", "2"], { |
| | total: "0.4", |
| | next: "0.2", |
| | operation: "-", |
| | }); |
| |
|
| | test([".", "4", "-", ".", "2", "="], { |
| | total: "0.2", |
| | }); |
| |
|
| | |
| | test(["1", "+", "2", "AC"], {}); |
| | test(["+", "2", "AC"], {}); |
| |
|
| | test(["4", "%"], { |
| | next: "0.04", |
| | }); |
| |
|
| | test(["4", "%", "x", "2", "="], { |
| | total: "0.08", |
| | }); |
| |
|
| | test(["4", "%", "x", "2"], { |
| | total: "0.04", |
| | operation: "x", |
| | next: "2", |
| | }); |
| |
|
| | |
| | test(["2", "x", "2", "%"], { |
| | total: "0.04", |
| | }); |
| |
|
| | |
| | test(["2", "x", "x"], { |
| | total: "2", |
| | operation: "x" |
| | }); |
| |
|
| | test(["2", "÷", "÷"], { |
| | total: "2", |
| | operation: "÷" |
| | }); |
| |
|
| | test(["2", "÷", "x", "+", "-", "x"], { |
| | total: "2", |
| | operation: 'x' |
| | }); |
| | }); |
| |
|