Skip to content

Commit f67639d

Browse files
authored
[patch] fix duplicate step when using custom commands with groupping (#171)
1 parent dae2331 commit f67639d

File tree

4 files changed

+91
-14
lines changed

4 files changed

+91
-14
lines changed

src/plugins/allure-reporter-plugin.ts

+37
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,7 @@ export class AllureReporter {
448448
this.filterSteps(this.currentHook.wrappedItem);
449449
this.currentHook.wrappedItem.stop = date ?? Date.now();
450450
this.setExecutableStatus(this.currentHook, result, details);
451+
this.mergeStepsWithSingleChild(this.currentHook.wrappedItem.steps);
451452

452453
this.hooks.pop();
453454

@@ -970,6 +971,7 @@ export class AllureReporter {
970971
if (!this.currentTest) {
971972
return;
972973
}
974+
this.mergeStepsWithSingleChild(this.currentTest.wrappedItem.steps);
973975

974976
if (this.currentTestAll) {
975977
this.currentTestAll.status = result;
@@ -1010,6 +1012,41 @@ export class AllureReporter {
10101012
copyFileToWatch({ test: testFile, attachments }, this.allureResultsWatch);
10111013
}
10121014

1015+
/**
1016+
* Recursively merge the steps when a step has single child with the same name
1017+
* Delete first child when it has the same name as parent
1018+
* @param steps
1019+
*/
1020+
mergeStepsWithSingleChild(steps: ExecutableItem[]): void {
1021+
function mergeSteps(step: ExecutableItem): ExecutableItem {
1022+
if (!step.steps || step.steps.length === 0) {
1023+
return step;
1024+
}
1025+
1026+
// If the step has exactly one child with the same name, merge them
1027+
if (step.steps.length === 1 && step.steps[0].name === step.name) {
1028+
const mergedChild = mergeSteps(step.steps[0]);
1029+
step.steps = mergedChild.steps;
1030+
step.attachments.push(...mergedChild.attachments);
1031+
1032+
return step;
1033+
}
1034+
1035+
step.steps = step.steps.map(mergeSteps);
1036+
1037+
// If the first child has the same name as the parent, delete it
1038+
if (step.steps.length > 0 && step.steps[0].name === step.name) {
1039+
step.steps.shift();
1040+
}
1041+
1042+
return step;
1043+
}
1044+
1045+
for (let i = 0; i < steps.length; i++) {
1046+
steps[i] = mergeSteps(steps[i]);
1047+
}
1048+
}
1049+
10131050
startStep(arg: AllureTaskArgs<'stepStarted'>) {
10141051
const { name, date } = arg;
10151052

tests/test-folder/mocha-events/commands/custom-command.test.ts

+54-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ describe('custom commands', () => {
1818
Cypress.log({ name: 'tasklogWithCypressLog', message: 'something' });
1919
cy.task('log', message);
2020
});
21+
22+
Cypress.Commands.add('cmdWithGroup', (message: string) => {
23+
Cypress.log({ name: 'cmdWithGroup', message, groupStart: true });
24+
cy.log('more steps withing custom');
25+
cy.task('log', message).then(()=> {
26+
Cypress.log({emitOnly: true, groupEnd: true});
27+
});
28+
});
2129
2230
Cypress.Commands.add('returnGet', { prevSubject: true }, (subj, message: string) => {
2331
cy.task('log', message);
@@ -75,6 +83,11 @@ describe('custom commands', () => {
7583
it('promises returned from commands', () => {
7684
cy.get('div:eq(0)').promiseTest(10).should('exist').promiseTest(10);
7785
});
86+
87+
it('cmd with group', () => {
88+
cy.cmdWithGroup('my step');
89+
cy.cmdWithGroup('my step2');
90+
})
7891
});
7992
`,
8093
],
@@ -144,6 +157,7 @@ describe('custom commands', () => {
144157
},
145158
]);
146159
});
160+
147161
it('should have nested steps for custom command which returns something', () => {
148162
const tests = resFixed.filter(t => t.name === 'returnGet');
149163
expect(tests.length).toEqual(1);
@@ -319,15 +333,53 @@ describe('custom commands', () => {
319333
]);
320334
});
321335

336+
it('should merge commands when group', () => {
337+
const tests = resFixed.filter(t => t.name === 'cmd with group');
338+
expect(tests.length).toEqual(1);
339+
340+
const steps = mapSteps(tests[0].steps, t => ({ name: t.name }))
341+
.filter(t => t.name.indexOf('"after each"') === -1)
342+
.filter(t => t.name.indexOf('"before each"') === -1);
343+
344+
expect(steps).toEqual([
345+
{
346+
name: 'cmdWithGroup: my step',
347+
steps: [
348+
{
349+
name: 'log: more steps withing custom',
350+
steps: [],
351+
},
352+
{
353+
name: 'task: log, my step',
354+
steps: [],
355+
},
356+
],
357+
},
358+
{
359+
name: 'cmdWithGroup: my step2',
360+
steps: [
361+
{
362+
name: 'log: more steps withing custom',
363+
steps: [],
364+
},
365+
{
366+
name: 'task: log, my step2',
367+
steps: [],
368+
},
369+
],
370+
},
371+
]);
372+
});
373+
322374
it('should have results', () => {
323375
// should not fail run
324376
checkCyResults(res?.result?.res, {
325-
totalPassed: 8,
377+
totalPassed: 9,
326378
totalFailed: 0,
327379
totalPending: 0,
328380
totalSkipped: 0,
329381
totalSuites: 1,
330-
totalTests: 8,
382+
totalTests: 9,
331383
});
332384
});
333385
});

tests/test-folder/mocha-events/cucumber/session-gherkin.test.ts

-5
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,6 @@ Feature: test cucumber
6969
name: 'session: user',
7070
status: 'passed',
7171
steps: [
72-
{
73-
name: 'session: user',
74-
status: 'passed',
75-
steps: [],
76-
},
7772
{
7873
name: 'Create new session',
7974
status: 'passed',

tests/test-folder/mocha-events/steps/group-logs/data-group-log-session.ts

-7
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,6 @@ describe('${rootSuite}', { defaultCommandTimeout: 300 },() => {
5858
status: 'passed',
5959
statusDetails: {},
6060
steps: [
61-
{
62-
attachments: [],
63-
name: 'session: user123',
64-
status: 'passed',
65-
statusDetails: {},
66-
steps: [],
67-
},
6861
{
6962
attachments: [],
7063
name: 'Create new session',

0 commit comments

Comments
 (0)