deno.land / std@0.224.0 / collections / associate_with_test.ts
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../assert/mod.ts";import { associateWith } from "./associate_with.ts";
function associateWithTest<T>( input: [readonly string[], (el: string) => T], expected: { [x: string]: T }, message?: string,) { const actual = associateWith(...input); assertEquals(actual, expected, message);}
Deno.test({ name: "associateWith() handles no mutation", fn() { const arrayA = ["Foo", "Bar"]; associateWith(arrayA, (it) => it.charAt(0));
assertEquals(arrayA, ["Foo", "Bar"]); },});
Deno.test({ name: "associateWith() handles empty input", fn() { associateWithTest([[], () => "abc"], {}); },});
Deno.test({ name: "associateWith() handles associates", fn() { associateWithTest<number>( [ [ "Kim", "Lara", "Jonathan", ], (it) => it.length, ], { "Kim": 3, "Lara": 4, "Jonathan": 8, }, ); associateWithTest( [ [ "Kim@example.org", "Lara@example.org", "Jonathan@example.org", ], (it) => it.replace("org", "com"), ], { "Kim@example.org": "Kim@example.com", "Lara@example.org": "Lara@example.com", "Jonathan@example.org": "Jonathan@example.com", }, ); associateWithTest<boolean>( [ [ "Kim", "Lara", "Jonathan", ], (it) => /m/.test(it), ], { "Kim": true, "Lara": false, "Jonathan": false, }, ); },});
Deno.test({ name: "associateWith() handles duplicate keys", fn() { associateWithTest( [ ["Kim", "Marija", "Karl", "Jonathan", "Marija"], (it) => it.charAt(0), ], { "Jonathan": "J", "Karl": "K", "Kim": "K", "Marija": "M", }, ); },});
Version Info