This commit is contained in:
CrazyMax 2026-07-09 12:58:43 +00:00 committed by GitHub
commit bcd9faa00b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 154 additions and 54 deletions

View file

@ -76,6 +76,53 @@ describe('isRawStatement', () => {
}); });
}); });
describe('global expressions', () => {
// prettier-ignore
test.each([
[
'top-level',
`type=raw,value=latest,enable={{is_prerelease}}`
],
[
'param',
`type=raw,value={{date is_prerelease}}`
],
[
'hash value',
`type=raw,value={{date 'YYYYMMDD' tz=is_prerelease}}`
],
[
'subexpression',
`type=raw,value={{date (is_prerelease)}}`
],
[
'block param',
`type=raw,value={{#if is_prerelease}}latest{{/if}}`
],
[
'nested program',
`type=raw,value={{#is_default_branch}}{{is_prerelease}}{{/is_default_branch}}`
],
])('throws for unknown global expression as %s', async (_name: string, tag: string) => {
process.env = dotenv.parse(fs.readFileSync(path.join(__dirname, 'fixtures', 'event_push_master.env')));
const toolkit = new Toolkit();
const repo = await toolkit.github.repoData();
const context = await getContext(ContextSource.workflow, toolkit);
expect(() => {
new Meta(
{
...getInputs(),
images: ['user/app'],
tags: [tag]
},
context,
repo
);
}).toThrow('{{is_prerelease}} is not a valid global expression');
});
});
const tagsLabelsTest = async (name: string, envFile: string, inputs: Inputs, exVersion: Version, exTags: Array<string>, exLabels: Array<string>, exAnnotations: Array<string> | undefined) => { const tagsLabelsTest = async (name: string, envFile: string, inputs: Inputs, exVersion: Version, exTags: Array<string>, exLabels: Array<string>, exAnnotations: Array<string> | undefined) => {
process.env = dotenv.parse(fs.readFileSync(path.join(__dirname, 'fixtures', envFile))); process.env = dotenv.parse(fs.readFileSync(path.join(__dirname, 'fixtures', envFile)));
const toolkit = new Toolkit(); const toolkit = new Toolkit();
@ -2760,16 +2807,16 @@ describe('pr', () => {
{ {
images: ['org/app'], images: ['org/app'],
tags: [ tags: [
`type=raw,value={{commit_date YYYY-MM-DD-HHmmSS}}`, `type=raw,value={{commit_date 'YYYY-MM-DD-HHmmSS'}}`,
] ]
} as Inputs, } as Inputs,
{ {
main: "2020-01-10T00-30-00Z", main: "2020-01-10-003000",
partial: [], partial: [],
latest: false latest: false
} as Version, } as Version,
[ [
'org/app:2020-01-10T00-30-00Z' 'org/app:2020-01-10-003000'
], ],
[ [
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z", "org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
@ -2779,7 +2826,7 @@ describe('pr', () => {
"org.opencontainers.image.source=https://github.com/octocat/Hello-World", "org.opencontainers.image.source=https://github.com/octocat/Hello-World",
"org.opencontainers.image.title=Hello-World", "org.opencontainers.image.title=Hello-World",
"org.opencontainers.image.url=https://github.com/octocat/Hello-World", "org.opencontainers.image.url=https://github.com/octocat/Hello-World",
"org.opencontainers.image.version=2020-01-10T00-30-00Z" "org.opencontainers.image.version=2020-01-10-003000"
], ],
undefined undefined
], ],
@ -3136,16 +3183,16 @@ describe('pr-head-sha', () => {
{ {
images: ['org/app'], images: ['org/app'],
tags: [ tags: [
`type=raw,value=src-{{commit_date YYYY-MM-DD}}`, `type=raw,value=src-{{commit_date 'YYYY-MM-DD'}}`,
] ]
} as Inputs, } as Inputs,
{ {
main: "src-2020-01-10T00-30-00Z", main: "src-2020-01-10",
partial: [], partial: [],
latest: false latest: false
} as Version, } as Version,
[ [
"org/app:src-2020-01-10T00-30-00Z", "org/app:src-2020-01-10",
], ],
[ [
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z", "org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
@ -3155,7 +3202,7 @@ describe('pr-head-sha', () => {
"org.opencontainers.image.source=https://github.com/octocat/Hello-World", "org.opencontainers.image.source=https://github.com/octocat/Hello-World",
"org.opencontainers.image.title=Hello-World", "org.opencontainers.image.title=Hello-World",
"org.opencontainers.image.url=https://github.com/octocat/Hello-World", "org.opencontainers.image.url=https://github.com/octocat/Hello-World",
"org.opencontainers.image.version=src-2020-01-10T00-30-00Z", "org.opencontainers.image.version=src-2020-01-10",
] ]
], ],
])('given %o with %o event', async (name: string, envFile: string, inputs: Inputs, exVersion: Version, exTags: Array<string>, exLabelsAnnotations: Array<string>) => { ])('given %o with %o event', async (name: string, envFile: string, inputs: Inputs, exVersion: Version, exTags: Array<string>, exLabelsAnnotations: Array<string>) => {

82
dist/index.cjs generated vendored

File diff suppressed because one or more lines are too long

6
dist/index.cjs.map generated vendored

File diff suppressed because one or more lines are too long

View file

@ -400,7 +400,7 @@ export class Meta {
const context = this.context; const context = this.context;
const currentDate = this.date; const currentDate = this.date;
const commitDate = this.context.commitDate; const commitDate = this.context.commitDate;
return handlebars.compile(val)({ const globalExp = {
branch: function () { branch: function () {
if (!/^refs\/heads\//.test(context.ref)) { if (!/^refs\/heads\//.test(context.ref)) {
return ''; return '';
@ -480,7 +480,60 @@ export class Meta {
}); });
return m.tz(tz).format(format); return m.tz(tz).format(format);
} }
}); };
const expressions = Object.keys(globalExp);
const template = handlebars.parseWithoutProcessing(val);
const nodes: unknown[] = [...template.body];
for (const node of nodes) {
if (node == undefined || typeof node !== 'object') {
continue;
}
const statement = node as Record<string, unknown>;
switch (statement.type) {
case 'ContentStatement':
case 'CommentStatement':
case 'StringLiteral':
case 'BooleanLiteral':
case 'NumberLiteral':
case 'UndefinedLiteral':
case 'NullLiteral': {
break;
}
case 'Program': {
nodes.push(...((statement.body as unknown[] | undefined) || []));
break;
}
case 'Hash': {
nodes.push(...((statement.pairs as unknown[] | undefined) || []));
break;
}
case 'HashPair': {
nodes.push(statement.value);
break;
}
case 'MustacheStatement':
case 'Decorator':
case 'SubExpression':
case 'BlockStatement':
case 'DecoratorBlock': {
nodes.push(...((statement.params as unknown[] | undefined) || []), statement.hash, statement.program, statement.inverse, statement.path);
break;
}
case 'PartialStatement':
case 'PartialBlockStatement': {
nodes.push(...((statement.params as unknown[] | undefined) || []), statement.hash, statement.program, statement.name);
break;
}
case 'PathExpression': {
const expression = statement.original;
if (typeof expression == 'string' && !expressions.includes(expression)) {
throw new Error(`{{${expression}}} is not a valid global expression`);
}
break;
}
}
}
return handlebars.compile(val)(globalExp);
} }
private getImageNames(): Array<string> { private getImageNames(): Array<string> {