Skip to content

Commit

Permalink
fix(core): fix output text for multiple targets
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi committed Sep 23, 2024
1 parent a510b36 commit 62b6b8c
Show file tree
Hide file tree
Showing 2 changed files with 372 additions and 22 deletions.
339 changes: 338 additions & 1 deletion packages/nx/src/tasks-runner/life-cycles/formatting-utils.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { formatFlags } from './formatting-utils';
import { output } from '../../utils/output';
import { formatFlags, formatTargetsAndProjects } from './formatting-utils';

describe('formatFlags', () => {
it('should properly show string values', () => {
Expand Down Expand Up @@ -42,3 +43,339 @@ describe('formatFlags', () => {
);
});
});

describe('formatTargetsAndProjects', () => {
it('should handle single project and target', () => {
expect(
formatTargetsAndProjects(
['myproject'],
['lint', 'build', 'test'],
[
{
id: 'myproject:build',
target: {
project: 'myproject',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(`target ${output.bold('build')} for project myproject`);

expect(
formatTargetsAndProjects(
['myproject'],
['lint', 'build', 'test'],
[
{
id: 'myproject:lint',
target: {
project: 'myproject',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(`target ${output.bold('lint')} for project myproject`);
});

it('should handle single project and multiple targets', () => {
expect(
formatTargetsAndProjects(
['myproject'],
['lint', 'build', 'test'],
[
{
id: 'myproject:build',
target: {
project: 'myproject',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject:test',
target: {
project: 'myproject',
target: 'test',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(
`targets ${output.bold('build')}, ${output.bold(
'test'
)} for project myproject`
);
expect(
formatTargetsAndProjects(
['myproject', 'myproject2'],
['lint', 'build', 'test'],
[
{
id: 'myproject:lint',
target: {
project: 'myproject',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(`target ${output.bold('lint')} for project myproject`);

expect(
formatTargetsAndProjects(
['myproject', 'myproject2'],
['lint', 'build', 'test'],
[
{
id: 'myproject2:lint',
target: {
project: 'myproject2',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(`target ${output.bold('lint')} for project myproject2`);
});

it('should handle multiple projects and targets', () => {
expect(
formatTargetsAndProjects(
['myproject', 'myproject2'],
['lint', 'build', 'test'],
[
{
id: 'myproject:build',
target: {
project: 'myproject',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject2:build',
target: {
project: 'myproject2',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(`target ${output.bold('build')} for 2 projects`);

expect(
formatTargetsAndProjects(
['myproject', 'myproject2'],
['lint', 'build', 'test'],
[
{
id: 'myproject:lint',
target: {
project: 'myproject',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject2:lint',
target: {
project: 'myproject2',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(`target ${output.bold('lint')} for 2 projects`);

expect(
formatTargetsAndProjects(
['myproject', 'myproject2'],
['lint', 'build', 'test'],
[
{
id: 'myproject:lint',
target: {
project: 'myproject',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject2:build',
target: {
project: 'myproject2',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(
`targets ${output.bold('lint')}, ${output.bold('build')} for 2 projects`
);
});

it('should handle dependent tasks', () => {
expect(
formatTargetsAndProjects(
['myproject', 'myproject2'],
['lint', 'build', 'test'],
[
{
id: 'myproject:build',
target: {
project: 'myproject',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject3:build',
target: {
project: 'myproject3',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(
`target ${output.bold('build')} for project myproject and ${output.bold(
1
)} task it depends on`
);

expect(
formatTargetsAndProjects(
['myproject', 'myproject2'],
['lint', 'build', 'test'],
[
{
id: 'myproject:lint',
target: {
project: 'myproject',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject2:lint',
target: {
project: 'myproject2',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject3:lint',
target: {
project: 'myproject3',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(
`target ${output.bold('lint')} for 2 projects and ${output.bold(
1
)} task they depend on`
);

expect(
formatTargetsAndProjects(
['myproject', 'myproject2'],
['lint', 'build', 'test'],
[
{
id: 'myproject:lint',
target: {
project: 'myproject',
target: 'lint',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject2:build',
target: {
project: 'myproject2',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject3:build',
target: {
project: 'myproject3',
target: 'build',
},
overrides: {},
parallelism: false,
outputs: [],
},
{
id: 'myproject3:bundle',
target: {
project: 'myproject3',
target: 'bundle',
},
overrides: {},
parallelism: false,
outputs: [],
},
]
)
).toEqual(
`targets ${output.bold('lint')}, ${output.bold(
'build'
)} for 2 projects and ${output.bold(2)} tasks they depend on`
);
});
});
Loading

0 comments on commit 62b6b8c

Please sign in to comment.