]> git.scottworley.com Git - inverse-tax/commitdiff
Test with normalized tax tables
authorScott Worley <scottworley@scottworley.com>
Thu, 23 May 2019 20:48:06 +0000 (13:48 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 23 May 2019 20:48:06 +0000 (13:48 -0700)
tax.js
tax.test.js

diff --git a/tax.js b/tax.js
index d26db5fa15f0b8cf0cdd006fd4b19cc4f6e37076..7f32f74717a01386caaa937ead3f1d8443b3f610 100644 (file)
--- a/tax.js
+++ b/tax.js
@@ -7,11 +7,15 @@ function parse_table(as_text) {
   return as_text.trim().split('\n').map(parse_line);
 }
 
-function parse_tax_table(as_text) {
-  return parse_table(as_text).map(([start, rate], i, table) =>
+function tax_table_from_table(table) {
+  return table.map(([start, rate], i, table) =>
     [start, i < table.length - 1 ? table[i+1][0] : Infinity, rate / 100.0]);
 }
 
+function parse_tax_table(as_text) {
+  return tax_table_from_table(parse_table(as_text));
+}
+
 function sum(nums) {
   return nums.reduce((total, num) => total + num, 0);
 }
index 48f2e0dda7437785ccf317e5094575b6b42b1d95..b4959184215ac9b7a7c27c1a4a18f1216b5c5a3f 100644 (file)
@@ -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)));
     }
   }
 });