std/semver/min_satisfying_test.ts

25 lines
862 B
TypeScript
Raw Normal View History

// Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "@std/assert";
import { parse } from "./parse.ts";
import { parseRange } from "./parse_range.ts";
import { minSatisfying } from "./min_satisfying.ts";
Deno.test("minSatisfying()", async (t) => {
const versions: [string[], string, string][] = [
[["1.2.3", "1.2.4"], "1.2", "1.2.3"],
[["1.2.4", "1.2.3"], "1.2", "1.2.3"],
[["1.2.3", "1.2.4", "1.2.5", "1.2.6"], "~1.2.3", "1.2.3"],
];
for (const [v, r, e] of versions) {
await t.step(r, () => {
const s = v.map((v) => parse(v));
const range = parseRange(r);
const expected = parse(e);
const actual = minSatisfying(s, range);
assertEquals(actual, expected);
});
}
});