// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

import { assertEquals } from "jsr:@std/assert@^0.215.0";
import { typeByExtension } from "./mod.ts";

Deno.test({
  name: "media-types - typeByExtension",
  fn() {
    const fixtures = [
      ["js", "application/javascript"],
      [".js", "application/javascript"],
      ["Js", "application/javascript"],
      ["html", "text/html"],
      [".html", "text/html"],
      [".HTML", "text/html"],
      ["file.json", undefined],
      ["foo", undefined],
      [".foo", undefined],
    ] as const;
    for (const [fixture, expected] of fixtures) {
      assertEquals(typeByExtension(fixture), expected);
    }
  },
});
