]> git.scottworley.com Git - inverse-tax/blobdiff - tax.test.js
Test setup helpers to higher scope
[inverse-tax] / tax.test.js
index 6fcc15c74dbc39ad806c7c3961b495360ed7edf1..19597fbc2ae629fc71f399e9b67c2d884065db17 100644 (file)
@@ -6,6 +6,17 @@ function test(description, f) {
   f();
 }
 
+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));
+}
+
 test("parse tax table", () => {
   const parsed = parse_tax_table(' 1  2\n10  4\n');
   assert.strictEqual(parsed.length, 2);
@@ -22,3 +33,21 @@ test("sum", () => {
 test("tax", () => {
   assert.strictEqual(tax([[10, 100, .01], [100, Infinity, .1]], 150), 5.9);
 });
+
+test("merge tax tables", () => {
+  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));
+    }
+  }
+});
+
+test("invert", () => {
+  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);
+});