|
| 1 | +import * as core from '@actions/core' |
| 2 | +import artifact from '@actions/artifact' |
| 3 | +import {run} from '../src/merge/merge-artifacts' |
| 4 | +import {Inputs} from '../src/merge/constants' |
| 5 | +import * as search from '../src/shared/search' |
| 6 | + |
| 7 | +const fixtures = { |
| 8 | + artifactName: 'my-merged-artifact', |
| 9 | + tmpDirectory: '/tmp/merge-artifact', |
| 10 | + filesToUpload: [ |
| 11 | + '/some/artifact/path/file-a.txt', |
| 12 | + '/some/artifact/path/file-b.txt', |
| 13 | + '/some/artifact/path/file-c.txt' |
| 14 | + ], |
| 15 | + artifacts: [ |
| 16 | + { |
| 17 | + name: 'my-artifact-a', |
| 18 | + id: 1, |
| 19 | + size: 100, |
| 20 | + createdAt: new Date('2024-01-01T00:00:00Z') |
| 21 | + }, |
| 22 | + { |
| 23 | + name: 'my-artifact-b', |
| 24 | + id: 2, |
| 25 | + size: 100, |
| 26 | + createdAt: new Date('2024-01-01T00:00:00Z') |
| 27 | + }, |
| 28 | + { |
| 29 | + name: 'my-artifact-c', |
| 30 | + id: 3, |
| 31 | + size: 100, |
| 32 | + createdAt: new Date('2024-01-01T00:00:00Z') |
| 33 | + } |
| 34 | + ] |
| 35 | +} |
| 36 | + |
| 37 | +jest.mock('@actions/github', () => ({ |
| 38 | + context: { |
| 39 | + repo: { |
| 40 | + owner: 'actions', |
| 41 | + repo: 'toolkit' |
| 42 | + }, |
| 43 | + runId: 123, |
| 44 | + serverUrl: 'https://github.com' |
| 45 | + } |
| 46 | +})) |
| 47 | + |
| 48 | +jest.mock('@actions/core') |
| 49 | + |
| 50 | +jest.mock('fs/promises', () => ({ |
| 51 | + mkdtemp: jest.fn().mockResolvedValue('/tmp/merge-artifact'), |
| 52 | + rm: jest.fn().mockResolvedValue(undefined) |
| 53 | +})) |
| 54 | + |
| 55 | +/* eslint-disable no-unused-vars */ |
| 56 | +const mockInputs = (overrides?: Partial<{[K in Inputs]?: any}>) => { |
| 57 | + const inputs = { |
| 58 | + [Inputs.Name]: 'my-merged-artifact', |
| 59 | + [Inputs.Pattern]: '*', |
| 60 | + [Inputs.SeparateDirectories]: false, |
| 61 | + [Inputs.RetentionDays]: 0, |
| 62 | + [Inputs.CompressionLevel]: 6, |
| 63 | + [Inputs.DeleteMerged]: false, |
| 64 | + ...overrides |
| 65 | + } |
| 66 | + |
| 67 | + ;(core.getInput as jest.Mock).mockImplementation((name: string) => { |
| 68 | + return inputs[name] |
| 69 | + }) |
| 70 | + ;(core.getBooleanInput as jest.Mock).mockImplementation((name: string) => { |
| 71 | + return inputs[name] |
| 72 | + }) |
| 73 | + |
| 74 | + return inputs |
| 75 | +} |
| 76 | + |
| 77 | +describe('merge', () => { |
| 78 | + beforeEach(async () => { |
| 79 | + mockInputs() |
| 80 | + |
| 81 | + jest |
| 82 | + .spyOn(artifact, 'listArtifacts') |
| 83 | + .mockResolvedValue({artifacts: fixtures.artifacts}) |
| 84 | + |
| 85 | + jest.spyOn(artifact, 'downloadArtifact').mockResolvedValue({ |
| 86 | + downloadPath: fixtures.tmpDirectory |
| 87 | + }) |
| 88 | + |
| 89 | + jest.spyOn(search, 'findFilesToUpload').mockResolvedValue({ |
| 90 | + filesToUpload: fixtures.filesToUpload, |
| 91 | + rootDirectory: fixtures.tmpDirectory |
| 92 | + }) |
| 93 | + |
| 94 | + jest.spyOn(artifact, 'uploadArtifact').mockResolvedValue({ |
| 95 | + size: 123, |
| 96 | + id: 1337 |
| 97 | + }) |
| 98 | + |
| 99 | + jest |
| 100 | + .spyOn(artifact, 'deleteArtifact') |
| 101 | + .mockImplementation(async artifactName => { |
| 102 | + const artifact = fixtures.artifacts.find(a => a.name === artifactName) |
| 103 | + if (!artifact) throw new Error(`Artifact ${artifactName} not found`) |
| 104 | + return {id: artifact.id} |
| 105 | + }) |
| 106 | + }) |
| 107 | + |
| 108 | + it('merges artifacts', async () => { |
| 109 | + await run() |
| 110 | + |
| 111 | + for (const a of fixtures.artifacts) { |
| 112 | + expect(artifact.downloadArtifact).toHaveBeenCalledWith(a.id, { |
| 113 | + path: fixtures.tmpDirectory |
| 114 | + }) |
| 115 | + } |
| 116 | + |
| 117 | + expect(artifact.uploadArtifact).toHaveBeenCalledWith( |
| 118 | + fixtures.artifactName, |
| 119 | + fixtures.filesToUpload, |
| 120 | + fixtures.tmpDirectory, |
| 121 | + {compressionLevel: 6} |
| 122 | + ) |
| 123 | + }) |
| 124 | + |
| 125 | + it('fails if no artifacts found', async () => { |
| 126 | + mockInputs({[Inputs.Pattern]: 'this-does-not-match'}) |
| 127 | + |
| 128 | + expect(run()).rejects.toThrow() |
| 129 | + |
| 130 | + expect(artifact.uploadArtifact).not.toBeCalled() |
| 131 | + expect(artifact.downloadArtifact).not.toBeCalled() |
| 132 | + }) |
| 133 | + |
| 134 | + it('supports custom compression level', async () => { |
| 135 | + mockInputs({ |
| 136 | + [Inputs.CompressionLevel]: 2 |
| 137 | + }) |
| 138 | + |
| 139 | + await run() |
| 140 | + |
| 141 | + expect(artifact.uploadArtifact).toHaveBeenCalledWith( |
| 142 | + fixtures.artifactName, |
| 143 | + fixtures.filesToUpload, |
| 144 | + fixtures.tmpDirectory, |
| 145 | + {compressionLevel: 2} |
| 146 | + ) |
| 147 | + }) |
| 148 | + |
| 149 | + it('supports custom retention days', async () => { |
| 150 | + mockInputs({ |
| 151 | + [Inputs.RetentionDays]: 7 |
| 152 | + }) |
| 153 | + |
| 154 | + await run() |
| 155 | + |
| 156 | + expect(artifact.uploadArtifact).toHaveBeenCalledWith( |
| 157 | + fixtures.artifactName, |
| 158 | + fixtures.filesToUpload, |
| 159 | + fixtures.tmpDirectory, |
| 160 | + {retentionDays: 7, compressionLevel: 6} |
| 161 | + ) |
| 162 | + }) |
| 163 | + |
| 164 | + it('supports deleting artifacts after merge', async () => { |
| 165 | + mockInputs({ |
| 166 | + [Inputs.DeleteMerged]: true |
| 167 | + }) |
| 168 | + |
| 169 | + await run() |
| 170 | + |
| 171 | + for (const a of fixtures.artifacts) { |
| 172 | + expect(artifact.deleteArtifact).toHaveBeenCalledWith(a.name) |
| 173 | + } |
| 174 | + }) |
| 175 | +}) |
0 commit comments