|
| 1 | +import { describe, expect, it, vi } from "vitest"; |
| 2 | + |
| 3 | +import { readAccess } from "./readAccess.js"; |
| 4 | + |
| 5 | +describe(readAccess, () => { |
| 6 | + it("resolves with 'public' when package data does not exist", async () => { |
| 7 | + const getDescription = vi.fn().mockResolvedValue(undefined); |
| 8 | + |
| 9 | + const actual = await readAccess(getDescription); |
| 10 | + |
| 11 | + expect(actual).toBe("public"); |
| 12 | + }); |
| 13 | + |
| 14 | + it("resolves with 'public' when package data does not have publishConfig", async () => { |
| 15 | + const getDescription = vi.fn().mockResolvedValue({}); |
| 16 | + |
| 17 | + const actual = await readAccess(getDescription); |
| 18 | + |
| 19 | + expect(actual).toBe("public"); |
| 20 | + }); |
| 21 | + |
| 22 | + it("resolves with 'public' when package data has an empty publishConfig", async () => { |
| 23 | + const getDescription = vi.fn().mockResolvedValue({ |
| 24 | + publishConfig: {}, |
| 25 | + }); |
| 26 | + |
| 27 | + const actual = await readAccess(getDescription); |
| 28 | + |
| 29 | + expect(actual).toBe("public"); |
| 30 | + }); |
| 31 | + |
| 32 | + it("resolves with the access when package data has a publishConfig with access", async () => { |
| 33 | + const access = "restricted"; |
| 34 | + const getDescription = vi.fn().mockResolvedValue({ |
| 35 | + publishConfig: { access }, |
| 36 | + }); |
| 37 | + |
| 38 | + const actual = await readAccess(getDescription); |
| 39 | + |
| 40 | + expect(actual).toBe(access); |
| 41 | + }); |
| 42 | +}); |
0 commit comments