X-Git-Url: http://git.scottworley.com/inverse-tax/blobdiff_plain/1c6e40691d86539d80018aa8fc495272b900c4c4..a659a4f09cf859b2a63dc5c15f0d4589220c9a83:/tax.test.js diff --git a/tax.test.js b/tax.test.js index 48f2e0d..b495918 100644 --- a/tax.test.js +++ b/tax.test.js @@ -6,15 +6,22 @@ function test(description, f) { f(); } +function near(a, b, epsilon = 1e-6) { + return Math.abs(a - b) < epsilon; +} + function rand(limit = 100) { return Math.round(Math.random() * limit); } -function make_random_tax_table(min_threshold) { - if (rand(2)) return []; - const start = min_threshold === undefined ? rand() : min_threshold; - const end = start + 1 + rand(); - return [[start, end, rand()]].concat(make_random_tax_table(end)); +function make_random_tax_table() { + function make_random_table(min_threshold) { + if (rand(2)) return []; + const start = min_threshold === undefined ? rand() : min_threshold; + const end = start + 1 + rand(); + return [[start, rand()]].concat(make_random_table(end)); + } + return tax_table_from_table(make_random_table()); } test("parse tax table", () => { @@ -41,7 +48,7 @@ test("merge tax tables", () => { const combined = merge_tax_tables(t1, t2); for (var j = 0; j < 10; j++) { const income = rand(250); - assert.strictEqual(tax(t1, income) + tax(t2, income), tax(combined, income)); + assert.ok(near(tax(t1, income) + tax(t2, income), tax(combined, income))); } } });