import {beforeEach, describe, expect, test} from '@jest/globals'; import * as context from '../src/context'; describe('getInputs', () => { beforeEach(() => { process.env = Object.keys(process.env).reduce((object, key) => { if (!key.startsWith('INPUT_')) { object[key] = process.env[key]; } return object; }, {}); }); // prettier-ignore test.each([ [ 0, new Map([ ['images', 'moby/buildkit\nghcr.io/moby/mbuildkit'], ]), { bakeTarget: 'docker-metadata-action', flavor: [], githubToken: '', images: ['moby/buildkit', 'ghcr.io/moby/mbuildkit'], labels: [], sepLabels: '\n', sepTags: '\n', tags: [], } as context.Inputs ], [ 1, new Map([ ['bake-target', 'metadata'], ['images', 'moby/buildkit'], ['sep-labels', ','], ['sep-tags', ','], ]), { bakeTarget: 'metadata', flavor: [], githubToken: '', images: ['moby/buildkit'], labels: [], sepLabels: ',', sepTags: ',', tags: [], } as context.Inputs ] ])( '[%d] given %p as inputs, returns %p', async (num: number, inputs: Map, expected: context.Inputs) => { inputs.forEach((value: string, name: string) => { setInput(name, value); }); expect(await context.getInputs()).toEqual(expected); } ); }); // See: https://github.com/actions/toolkit/blob/master/packages/core/src/core.ts#L67 function getInputName(name: string): string { return `INPUT_${name.replace(/ /g, '_').toUpperCase()}`; } function setInput(name: string, value: string): void { process.env[getInputName(name)] = value; }