Skip to content

Commit

Permalink
feat: print project name as a label (#6925)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va authored Dec 1, 2024
1 parent 4d94b95 commit a3bef59
Show file tree
Hide file tree
Showing 16 changed files with 46 additions and 96 deletions.
75 changes: 0 additions & 75 deletions packages/vitest/LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -931,23 +931,6 @@ Repository: micromatch/micromatch
---------------------------------------

## mimic-fn
License: MIT
By: Sindre Sorhus
Repository: sindresorhus/mimic-fn

> MIT License
>
> Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
>
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
---------------------------------------

## mlly
License: MIT
Repository: unjs/mlly
Expand Down Expand Up @@ -976,23 +959,6 @@ Repository: unjs/mlly
---------------------------------------

## onetime
License: MIT
By: Sindre Sorhus
Repository: sindresorhus/onetime

> MIT License
>
> Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
>
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
---------------------------------------

## p-limit
License: MIT
By: Sindre Sorhus
Expand Down Expand Up @@ -1171,23 +1137,6 @@ Repository: privatenumber/resolve-pkg-maps
---------------------------------------

## restore-cursor
License: MIT
By: Sindre Sorhus
Repository: sindresorhus/restore-cursor

> MIT License
>
> Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
>
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
---------------------------------------

## reusify
License: MIT
By: Matteo Collina
Expand Down Expand Up @@ -1245,30 +1194,6 @@ Repository: git://github.com/feross/run-parallel.git
---------------------------------------

## signal-exit
License: ISC
By: Ben Coe
Repository: https://github.com/tapjs/signal-exit.git

> The ISC License
>
> Copyright (c) 2015, Contributors
>
> Permission to use, copy, modify, and/or distribute this software
> for any purpose with or without fee is hereby granted, provided
> that the above copyright notice and this permission notice
> appear in all copies.
>
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
> OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
> LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
> OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
> WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
> ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
---------------------------------------

## sisteransi
License: MIT
By: Terkel Gjervig
Expand Down
3 changes: 2 additions & 1 deletion packages/vitest/src/node/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export class Vitest {

public packageInstaller: VitestPackageInstaller

/** TODO: rename to `_coreRootProject` */
/** @internal */
public coreWorkspaceProject!: TestProject

Expand All @@ -93,7 +94,7 @@ export class Vitest {
/** @deprecated use `_cachedSpecs` */
projectTestFiles = this._cachedSpecs

/** @private */
/** @internal */
public _browserLastPort = defaultBrowserPort

/** @internal */
Expand Down
6 changes: 3 additions & 3 deletions packages/vitest/src/node/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,15 +276,15 @@ export class Logger {
+ '\nThis might cause false positive tests. Resolve unhandled errors to make sure your tests are not affected.',
),
)
this.log(c.red(divider(c.bold(c.inverse(' Unhandled Errors ')))))
this.log(errorMessage)
this.error(c.red(divider(c.bold(c.inverse(' Unhandled Errors ')))))
this.error(errorMessage)
errors.forEach((err) => {
this.printError(err, {
fullStack: true,
type: (err as ErrorWithDiff).type || 'Unhandled Error',
})
})
this.log(c.red(divider()))
this.error(c.red(divider()))
}

printSourceTypeErrors(errors: TypeCheckError[]) {
Expand Down
6 changes: 3 additions & 3 deletions packages/vitest/src/node/reporters/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,12 +410,12 @@ export abstract class BaseReporter implements Reporter {
const errorDivider = () => this.error(`${c.red(c.dim(divider(`[${current++}/${failedTotal}]`, undefined, 1)))}\n`)

if (failedSuites.length) {
this.error(`${errorBanner(`Failed Suites ${failedSuites.length}`)}\n`)
this.error(`\n${errorBanner(`Failed Suites ${failedSuites.length}`)}\n`)
this.printTaskErrors(failedSuites, errorDivider)
}

if (failedTests.length) {
this.error(`${errorBanner(`Failed Tests ${failedTests.length}`)}\n`)
this.error(`\n${errorBanner(`Failed Tests ${failedTests.length}`)}\n`)
this.printTaskErrors(failedTests, errorDivider)
}

Expand Down Expand Up @@ -496,7 +496,7 @@ export abstract class BaseReporter implements Reporter {
}

this.ctx.logger.error(
`${c.red(c.bold(c.inverse(' FAIL ')))}${formatProjectName(projectName)} ${name}`,
`${c.red(c.bold(c.inverse(' FAIL ')))} ${formatProjectName(projectName)}${name}`,
)
}

Expand Down
7 changes: 5 additions & 2 deletions packages/vitest/src/node/reporters/renderers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,16 @@ export function formatProjectName(name: string | undefined, suffix = ' ') {
if (!name) {
return ''
}
if (!c.isColorSupported) {
return `|${name}|${suffix}`
}
const index = name
.split('')
.reduce((acc, v, idx) => acc + v.charCodeAt(0) + idx, 0)

const colors = [c.blue, c.yellow, c.cyan, c.green, c.magenta]
const colors = [c.black, c.yellow, c.cyan, c.green, c.magenta]

return colors[index % colors.length](`|${name}|`) + suffix
return c.inverse(colors[index % colors.length](` ${name} `)) + suffix
}

export function withLabel(color: 'red' | 'green' | 'blue' | 'cyan' | 'yellow', label: string, message?: string) {
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions test/cli/test/__snapshots__/stacktraces.test.ts.snap
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`stacktrace filtering > filters stacktraces > stacktrace-filtering 1`] = `
"⎯⎯ Failed Tests 1 ⎯⎯
"
⎯⎯ Failed Tests 1 ⎯⎯
FAIL error-with-stack.test.js > error in deps
Error: Something truly horrible has happened!
Expand All @@ -22,7 +23,8 @@ Error: Something truly horrible has happened!
`;

exports[`stacktrace in vmThreads 1`] = `
"⎯⎯ Failed Tests 1 ⎯⎯
"
⎯⎯ Failed Tests 1 ⎯⎯
FAIL error-with-stack.test.js > error in deps
Error: Something truly horrible has happened!
Expand All @@ -44,7 +46,8 @@ Error: Something truly horrible has happened!
`;

exports[`stacktrace should print error frame source file correctly > error-in-deps > error-in-deps 1`] = `
"⎯⎯ Failed Tests 1 ⎯⎯
"
⎯⎯ Failed Tests 1 ⎯⎯
FAIL error-in-deps.test.js > error in deps
ReferenceError: bar is not defined
Expand Down
2 changes: 1 addition & 1 deletion test/cli/test/custom-pool.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { runVitest } from '../../test-utils'
test('can run custom pools with Vitest', async () => {
const vitest = await runVitest({
root: './fixtures/custom-pool',
reporters: ['basic'],
reporters: [['default', { isTTY: false }]],
})

expect(vitest.stderr).toMatchInlineSnapshot(`
Expand Down
8 changes: 4 additions & 4 deletions test/config/test/dangerously-ignore-unhandled-errors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import { expect, test } from 'vitest'
import { runVitest } from '../../test-utils'

test('{ dangerouslyIgnoreUnhandledErrors: true }', async () => {
const { stderr, stdout, exitCode } = await runVitest({
const { stderr, exitCode } = await runVitest({
root: 'fixtures/dangerously-ignore-unhandled-errors',
dangerouslyIgnoreUnhandledErrors: true,
})

expect(exitCode).toBe(0)
expect(stdout).toMatch('Vitest caught 1 unhandled error during the test run')
expect(stderr).toMatch('Vitest caught 1 unhandled error during the test run')
expect(stderr).toMatch('Error: intentional unhandled error')
})

Expand All @@ -24,12 +24,12 @@ test('{ dangerouslyIgnoreUnhandledErrors: true } without reporter', async () =>
})

test('{ dangerouslyIgnoreUnhandledErrors: false }', async () => {
const { stderr, stdout, exitCode } = await runVitest({
const { stderr, exitCode } = await runVitest({
root: 'fixtures/dangerously-ignore-unhandled-errors',
dangerouslyIgnoreUnhandledErrors: false,
})

expect(exitCode).toBe(1)
expect(stdout).toMatch('Vitest caught 1 unhandled error during the test run')
expect(stderr).toMatch('Vitest caught 1 unhandled error during the test run')
expect(stderr).toMatch('Error: intentional unhandled error')
})
3 changes: 2 additions & 1 deletion test/reporters/tests/indicator-position.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ test('should print correct indicator position', async () => {
expect(code).toMatch(/\r\n/)
expect(stderr).toBeTruthy()
expect(stderr).toMatchInlineSnapshot(`
"⎯⎯⎯⎯⎯⎯⎯ Failed Tests 1 ⎯⎯⎯⎯⎯⎯⎯
"
⎯⎯⎯⎯⎯⎯⎯ Failed Tests 1 ⎯⎯⎯⎯⎯⎯⎯
FAIL indicator-position.test.js >
AssertionError: expected 2 to be 3 // Object.is equality
Expand Down
2 changes: 1 addition & 1 deletion test/reporters/tests/merge-reports.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ test('merge reports', async () => {
.replace(/Start at [\w\s:]+/, 'Start at <time>')
const stderrArr = stderrDefault.split('\n')
const stderrCheck = [
...stderrArr.slice(3, 19),
...stderrArr.slice(4, 19),
...stderrArr.slice(21, -3),
]

Expand Down
8 changes: 8 additions & 0 deletions test/test-utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ import { Readable, Writable } from 'node:stream'
import { fileURLToPath } from 'node:url'
import { dirname, resolve } from 'pathe'
import { x } from 'tinyexec'
import * as tinyrainbow from 'tinyrainbow'
import { afterEach, onTestFinished, type WorkerGlobalState } from 'vitest'
import { startVitest } from 'vitest/node'
import { getCurrentTest } from 'vitest/suite'
import { Cli } from './cli'

// override default colors to disable them in tests
Object.assign(tinyrainbow.default, tinyrainbow.getDefaultColors())

interface VitestRunnerCLIOptions {
std?: 'inherit'
fails?: boolean
Expand Down Expand Up @@ -66,6 +70,10 @@ export async function runVitest(
// "none" can be used to disable passing "reporter" option so that default value is used (it's not same as reporters: ["default"])
...(reporters === 'none' ? {} : reporters ? { reporters } : { reporters: ['verbose'] }),
...rest,
env: {
NO_COLOR: 'true',
...rest.env,
},
}, {
...viteOverrides,
server: {
Expand Down
1 change: 1 addition & 0 deletions test/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
},
"devDependencies": {
"tinyexec": "^0.3.0",
"tinyrainbow": "^1.2.0",
"vite": "latest",
"vite-node": "workspace:*",
"vitest": "workspace:*"
Expand Down
5 changes: 5 additions & 0 deletions test/typescript/test/__snapshots__/runner.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,15 @@ TypeCheckError: Type 'string' does not satisfy the constraint '"Expected string,
exports[`should fail > typechecks empty "include" but with tests 1`] = `
"Testing types with tsc and vue-tsc is an experimental feature.
Breaking changes might not follow SemVer, please pin Vitest's version when using it.
⎯⎯⎯⎯⎯⎯ Unhandled Errors ⎯⎯⎯⎯⎯⎯
Vitest caught 1 unhandled error during the test run.
This might cause false positive tests. Resolve unhandled errors to make sure your tests are not affected.
⎯⎯⎯⎯⎯⎯ Typecheck Error ⎯⎯⎯⎯⎯⎯⎯
Error: error TS18003: No inputs were found in config file '<root>/tsconfig.vitest-temp.json'. Specified 'include' paths were '["src"]' and 'exclude' paths were '["**/dist/**"]'.
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯
"
`;
Expand Down
2 changes: 1 addition & 1 deletion test/typescript/test/runner.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe('ignoreSourceErrors', () => {
const vitest = await runVitest({
root: resolve(__dirname, '../fixtures/source-error'),
})
expect(vitest.stdout).toContain('Unhandled Errors')
expect(vitest.stderr).toContain('Unhandled Errors')
expect(vitest.stderr).toContain('Unhandled Source Error')
expect(vitest.stderr).toContain('TypeCheckError: Cannot find name \'thisIsSourceError\'')
})
Expand Down
2 changes: 1 addition & 1 deletion test/watch/test/workspaces.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ test("dynamic test case", () => {

async function startVitest() {
const { vitest } = await runVitestCli(
{ nodeOptions: { cwd: root, env: { TEST_WATCH: 'true' } } },
{ nodeOptions: { cwd: root, env: { TEST_WATCH: 'true', NO_COLOR: 'true' } } },
'--root',
root,
'--config',
Expand Down

0 comments on commit a3bef59

Please sign in to comment.