|
| 1 | +import { cp } from 'node:fs/promises'; |
| 2 | +import path from 'node:path'; |
| 3 | +import { afterAll, beforeAll, expect, it } from 'vitest'; |
| 4 | +import { |
| 5 | + type AuditReport, |
| 6 | + type Report, |
| 7 | + reportSchema, |
| 8 | +} from '@code-pushup/models'; |
| 9 | +import { nxTargetProject } from '@code-pushup/test-nx-utils'; |
| 10 | +import { teardownTestFolder } from '@code-pushup/test-setup'; |
| 11 | +import { E2E_ENVIRONMENTS_DIR, TEST_OUTPUT_DIR } from '@code-pushup/test-utils'; |
| 12 | +import { executeProcess, readJsonFile } from '@code-pushup/utils'; |
| 13 | + |
| 14 | +describe('plugin-js-packages', () => { |
| 15 | + const fixturesDir = path.join( |
| 16 | + 'e2e', |
| 17 | + 'plugin-js-packages-e2e', |
| 18 | + 'mocks', |
| 19 | + 'fixtures', |
| 20 | + ); |
| 21 | + const fixturesNPMDir = path.join(fixturesDir, 'npm-repo'); |
| 22 | + |
| 23 | + const envRoot = path.join( |
| 24 | + E2E_ENVIRONMENTS_DIR, |
| 25 | + nxTargetProject(), |
| 26 | + TEST_OUTPUT_DIR, |
| 27 | + ); |
| 28 | + const npmRepoDir = path.join(envRoot, 'npm-repo'); |
| 29 | + |
| 30 | + beforeAll(async () => { |
| 31 | + await cp(fixturesNPMDir, npmRepoDir, { recursive: true }); |
| 32 | + }); |
| 33 | + |
| 34 | + afterAll(async () => { |
| 35 | + await teardownTestFolder(npmRepoDir); |
| 36 | + }); |
| 37 | + |
| 38 | + it('should run JS packages plugin for NPM and create report.json', async () => { |
| 39 | + const { code, stderr } = await executeProcess({ |
| 40 | + command: 'node', |
| 41 | + args: [ |
| 42 | + '../../node_modules/@code-pushup/cli/src/index.js', |
| 43 | + 'collect', |
| 44 | + '--no-progress', |
| 45 | + ], |
| 46 | + cwd: npmRepoDir, |
| 47 | + }); |
| 48 | + |
| 49 | + expect(code).toBe(0); |
| 50 | + expect(stderr).toBe(''); |
| 51 | + |
| 52 | + const report = await readJsonFile<Report>( |
| 53 | + path.join(npmRepoDir, 'report.json'), |
| 54 | + ); |
| 55 | + |
| 56 | + const plugin = report.plugins[0]!; |
| 57 | + const npmAuditProd = plugin.audits.find( |
| 58 | + ({ slug }) => slug === 'npm-audit-prod', |
| 59 | + )!; |
| 60 | + const npmOutdatedProd = plugin.audits.find( |
| 61 | + ({ slug }) => slug === 'npm-outdated-prod', |
| 62 | + )!; |
| 63 | + |
| 64 | + expect(plugin.packageName).toBe('@code-pushup/js-packages-plugin'); |
| 65 | + expect(plugin.audits).toHaveLength(4); |
| 66 | + |
| 67 | + expect(npmAuditProd).toEqual<AuditReport>( |
| 68 | + expect.objectContaining({ |
| 69 | + value: expect.any(Number), |
| 70 | + }), |
| 71 | + ); |
| 72 | + expect(npmAuditProd.value).toBeGreaterThanOrEqual(7); // there are 7 vulnerabilities (6 high, 1 low) in prod dependency at the time |
| 73 | + expect(npmAuditProd.displayValue).toMatch(/\d vulnerabilities/); |
| 74 | + expect(npmAuditProd.details?.issues!.length).toBeGreaterThanOrEqual(7); |
| 75 | + |
| 76 | + const expressConnectIssue = npmAuditProd.details!.issues![0]!; |
| 77 | + expect(expressConnectIssue?.severity).toBe('error'); |
| 78 | + expect(expressConnectIssue?.message).toContain('express'); |
| 79 | + expect(expressConnectIssue?.message).toContain('2.30.2'); |
| 80 | + expect(expressConnectIssue?.message).toContain( |
| 81 | + 'methodOverride Middleware Reflected Cross-Site Scripting in connect', |
| 82 | + ); |
| 83 | + |
| 84 | + expect(npmOutdatedProd.score).toBe(0); |
| 85 | + expect(npmOutdatedProd.value).toBe(1); // there is 1 outdated prod dependency at the time |
| 86 | + expect(npmOutdatedProd.displayValue).toBe( |
| 87 | + '1 major outdated package version', |
| 88 | + ); |
| 89 | + expect(npmOutdatedProd.details?.issues).toHaveLength(1); |
| 90 | + |
| 91 | + const expressOutdatedIssue = npmOutdatedProd.details!.issues![0]!; |
| 92 | + expect(expressOutdatedIssue.severity).toBe('error'); |
| 93 | + expect(expressOutdatedIssue.message).toMatch( |
| 94 | + /^Package \[`express`]\(http:\/\/expressjs\.com\/?\) requires a \*\*major\*\* update from \*\*3.0.0\*\* to \*\*\d+\.\d+\.\d+\*\*\.$/, |
| 95 | + ); |
| 96 | + |
| 97 | + expect(() => reportSchema.parse(report)).not.toThrow(); |
| 98 | + }); |
| 99 | +}); |
0 commit comments