-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No longer mark test plan reports with skipped tests as final #833
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fbf0c5f
Hide mark as final button
Paul-Clue 3fc00a7
No mark as final for skipped tests in graphql
Paul-Clue 2f4056e
Remove skipped tests from the UI
Paul-Clue 1bbaa84
Add migration for unfinished tests
Paul-Clue d5e12cc
Simplify necessary files
Paul-Clue b55ad67
Merge branch 'main' into no-skipped-tests
Paul-Clue 24620e7
Fix failing tests
Paul-Clue 85ac89a
Merge branch 'main' into no-skipped-tests
Paul-Clue 5a6072f
Add code review fixes
Paul-Clue 25db202
Remove no-longer-necessary style class
Paul-Clue 9729dc8
Remove reference
Paul-Clue File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
'use strict'; | ||
|
||
/** @type {import('sequelize-cli').Migration} */ | ||
module.exports = { | ||
async up(queryInterface /* , Sequelize */) { | ||
return queryInterface.sequelize.transaction(async transaction => { | ||
const [rows] = await queryInterface.sequelize.query( | ||
` | ||
SELECT | ||
"TestPlanReport".id, | ||
"TestPlanReport"."atId", | ||
"TestPlanRun"."testResults", | ||
"TestPlanVersion".tests | ||
FROM | ||
"TestPlanReport" | ||
INNER JOIN "TestPlanVersion" ON "TestPlanVersion".id = "TestPlanReport"."testPlanVersionId" | ||
INNER JOIN "TestPlanRun" ON "TestPlanReport".id = "TestPlanRun"."testPlanReportId" | ||
WHERE | ||
"TestPlanReport"."markedFinalAt" IS NOT NULL | ||
`, | ||
{ transaction } | ||
); | ||
|
||
const dataById = {}; | ||
rows.forEach(({ id, atId, testResults, tests }) => { | ||
if (dataById[id]) { | ||
dataById[id].runLengths.push(testResults.length); | ||
} else { | ||
const runnableTestsLength = tests.filter(test => | ||
test.atIds.includes(atId) | ||
).length; | ||
dataById[id] = { | ||
id, | ||
runnableTestsLength, | ||
runLengths: [testResults.length] | ||
}; | ||
} | ||
}); | ||
|
||
for (const data of Object.values(dataById)) { | ||
const isComplete = data.runLengths.every( | ||
runLength => runLength === data.runnableTestsLength | ||
); | ||
if (!isComplete) { | ||
console.info(`Found incomplete report ${data.id}`); // eslint-disable-line | ||
// Since final test plan reports can | ||
// no longer have skipped tests, we should | ||
// move them to the test queue where incomplete | ||
// runs are still supported. | ||
await queryInterface.sequelize.query( | ||
` | ||
UPDATE "TestPlanReport" SET "markedFinalAt" = NULL WHERE id = ? | ||
`, | ||
{ | ||
replacements: [data.id], | ||
transaction | ||
} | ||
); | ||
} | ||
} | ||
}); | ||
} | ||
}; |
27 changes: 8 additions & 19 deletions
27
server/resolvers/TestPlanReport/finalizedTestResultsResolver.js
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's great getting rid of these lines!