-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_runner: propagate only to test ancestors
- Loading branch information
Showing
10 changed files
with
142 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,100 +1,95 @@ | ||
// Flags: --test-only | ||
'use strict'; | ||
require('../../../common'); | ||
const common = require('../../../common'); | ||
const { test, describe, it } = require('node:test'); | ||
|
||
// These tests should be skipped based on the 'only' option. | ||
test('only = undefined'); | ||
test('only = undefined, skip = string', { skip: 'skip message' }); | ||
test('only = undefined, skip = true', { skip: true }); | ||
test('only = undefined, skip = false', { skip: false }); | ||
test('only = false', { only: false }); | ||
test('only = false, skip = string', { only: false, skip: 'skip message' }); | ||
test('only = false, skip = true', { only: false, skip: true }); | ||
test('only = false, skip = false', { only: false, skip: false }); | ||
test('only = undefined', common.mustNotCall()); | ||
test('only = undefined, skip = string', { skip: 'skip message' }, common.mustNotCall()); | ||
test('only = undefined, skip = true', { skip: true }, common.mustNotCall()); | ||
test('only = undefined, skip = false', { skip: false }, common.mustNotCall()); | ||
test('only = false', { only: false }, common.mustNotCall()); | ||
test('only = false, skip = string', { only: false, skip: 'skip message' }, common.mustNotCall()); | ||
test('only = false, skip = true', { only: false, skip: true }, common.mustNotCall()); | ||
test('only = false, skip = false', { only: false, skip: false }, common.mustNotCall()); | ||
|
||
// These tests should be skipped based on the 'skip' option. | ||
test('only = true, skip = string', { only: true, skip: 'skip message' }); | ||
test('only = true, skip = true', { only: true, skip: true }); | ||
test('only = true, skip = string', { only: true, skip: 'skip message' }, common.mustNotCall()); | ||
test('only = true, skip = true', { only: true, skip: true }, common.mustNotCall()); | ||
|
||
// An 'only' test with subtests. | ||
test('only = true, with subtests', { only: true }, async (t) => { | ||
test('only = true, with subtests', { only: true }, common.mustCall(async (t) => { | ||
// These subtests should run. | ||
await t.test('running subtest 1'); | ||
await t.test('running subtest 2'); | ||
await t.test('running subtest 1', common.mustCall()); | ||
await t.test('running subtest 2', common.mustCall()); | ||
|
||
// Switch the context to only execute 'only' tests. | ||
t.runOnly(true); | ||
await t.test('skipped subtest 1'); | ||
await t.test('skipped subtest 2'); | ||
await t.test('running subtest 3', { only: true }); | ||
await t.test('skipped subtest 1', common.mustNotCall()); | ||
await t.test('skipped subtest 2'), common.mustNotCall(); | ||
await t.test('running subtest 3', { only: true }, common.mustCall()); | ||
|
||
// Switch the context back to execute all tests. | ||
t.runOnly(false); | ||
await t.test('running subtest 4', async (t) => { | ||
await t.test('running subtest 4', common.mustCall(async (t) => { | ||
// These subtests should run. | ||
await t.test('running sub-subtest 1'); | ||
await t.test('running sub-subtest 2'); | ||
await t.test('running sub-subtest 1', common.mustCall()); | ||
await t.test('running sub-subtest 2', common.mustCall()); | ||
|
||
// Switch the context to only execute 'only' tests. | ||
t.runOnly(true); | ||
await t.test('skipped sub-subtest 1'); | ||
await t.test('skipped sub-subtest 2'); | ||
}); | ||
await t.test('skipped sub-subtest 1', common.mustNotCall()); | ||
await t.test('skipped sub-subtest 2', common.mustNotCall()); | ||
})); | ||
|
||
// Explicitly do not run these tests. | ||
await t.test('skipped subtest 3', { only: false }); | ||
await t.test('skipped subtest 4', { skip: true }); | ||
}); | ||
await t.test('skipped subtest 3', { only: false }, common.mustNotCall()); | ||
await t.test('skipped subtest 4', { skip: true }, common.mustNotCall()); | ||
})); | ||
|
||
describe.only('describe only = true, with subtests', () => { | ||
it.only('`it` subtest 1 should run', () => {}); | ||
describe.only('describe only = true, with subtests', common.mustCall(() => { | ||
it.only('`it` subtest 1 should run', common.mustCall()); | ||
|
||
it('`it` subtest 2 should not run', async () => {}); | ||
}); | ||
it('`it` subtest 2 should not run', common.mustNotCall()); | ||
})); | ||
|
||
describe.only('describe only = true, with a mixture of subtests', () => { | ||
it.only('`it` subtest 1', () => {}); | ||
describe.only('describe only = true, with a mixture of subtests', common.mustCall(() => { | ||
it.only('`it` subtest 1', common.mustCall()); | ||
|
||
it.only('`it` async subtest 1', async () => {}); | ||
it.only('`it` async subtest 1', common.mustCall(async () => {})); | ||
|
||
it('`it` subtest 2 only=true', { only: true }); | ||
it('`it` subtest 2 only=true', { only: true }, common.mustCall()); | ||
|
||
it('`it` subtest 2 only=false', { only: false }, () => { | ||
throw new Error('This should not run'); | ||
}); | ||
it('`it` subtest 2 only=false', { only: false }, common.mustNotCall()); | ||
|
||
it.skip('`it` subtest 3 skip', () => { | ||
throw new Error('This should not run'); | ||
}); | ||
it.skip('`it` subtest 3 skip', common.mustNotCall()); | ||
|
||
it.todo('`it` subtest 4 todo', { only: false }, () => { | ||
throw new Error('This should not run'); | ||
}); | ||
it.todo('`it` subtest 4 todo', { only: false }, common.mustNotCall()); | ||
|
||
test.only('`test` subtest 1', () => {}); | ||
test.only('`test` subtest 1', common.mustCall()); | ||
|
||
test.only('`test` async subtest 1', async () => {}); | ||
test.only('`test` async subtest 1', common.mustCall(async () => {})); | ||
|
||
test('`test` subtest 2 only=true', { only: true }); | ||
test('`test` subtest 2 only=true', { only: true }, common.mustCall()); | ||
|
||
test('`test` subtest 2 only=false', { only: false }, () => { | ||
throw new Error('This should not run'); | ||
}); | ||
test('`test` subtest 2 only=false', { only: false }, common.mustNotCall()); | ||
|
||
test.skip('`test` subtest 3 skip', () => { | ||
throw new Error('This should not run'); | ||
}); | ||
test.skip('`test` subtest 3 skip', common.mustNotCall()); | ||
|
||
test.todo('`test` subtest 4 todo', { only: false }, () => { | ||
throw new Error('This should not run'); | ||
}); | ||
}); | ||
test.todo('`test` subtest 4 todo', { only: false }, common.mustNotCall()); | ||
})); | ||
|
||
describe.only('describe only = true, with subtests', () => { | ||
test.only('subtest should run', () => {}); | ||
describe.only('describe only = true, with subtests', common.mustCall(() => { | ||
test.only('subtest should run', common.mustCall()); | ||
|
||
test('async subtest should not run', async () => {}); | ||
test('async subtest should not run', common.mustNotCall()); | ||
|
||
test('subtest should be skipped', { only: false }, () => {}); | ||
}); | ||
test('subtest should be skipped', { only: false }, common.mustNotCall()); | ||
})); | ||
|
||
describe('describe only = undefined, with subtests', common.mustCall(() => { | ||
test('async subtest should not run', common.mustNotCall()); | ||
})); | ||
|
||
describe('describe only = false, with subtests', { only: false }, common.mustCall(() => { | ||
test('async subtest should not run', common.mustNotCall()); | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.