]> git.scottworley.com Git - inverse-tax/blobdiff - tax.test.js
Test with normalized tax tables
[inverse-tax] / tax.test.js
index 067ca91029035482ae4adcbacfbf26bca39a48b4..b4959184215ac9b7a7c27c1a4a18f1216b5c5a3f 100644 (file)
@@ -6,6 +6,24 @@ 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() {
+  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", () => {
   const parsed = parse_tax_table(' 1  2\n10  4\n');
   assert.strictEqual(parsed.length, 2);
@@ -24,22 +42,20 @@ test("tax", () => {
 });
 
 test("merge tax tables", () => {
-  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));
-  }
   for (var i = 0; i < 1000; i++) {
     const t1 = make_random_tax_table();
     const t2 = make_random_tax_table();
     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)));
     }
   }
 });
+
+test("invert", () => {
+  assert.strictEqual(invert([                  ])(10), 10);
+  assert.strictEqual(invert([[ 0, Infinity, .1]])( 9), 10);
+  assert.strictEqual(invert([[10, Infinity, .1]])(19), 20);
+  assert.strictEqual(invert([[0, 100, .1], [100, Infinity, .2]])(170), 200);
+});