-
Notifications
You must be signed in to change notification settings - Fork 81
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
Repair Group management sporadic failure #833
Conversation
Please enter the commit message for your changes. Lines starting
The failure this is trying to fix...
for example in https://github.com/ansible/ansible-hub-ui/runs/3398730289?check_suite_focus=true#step:13:159 |
Not quite sure what it means, galaxykit doesn't interact with the UI, there are no selects in galaxykit. If the failure is in/during But agreed that waiting longer on that screen should fix it :) Tested locally... cd test/
rm cypress/integration/*
git checkout cypress/integration/group_management.js
for n in {1..50}; do echo; echo TEST $n; echo ; npm run cypress:chrome || echo ERR $n >> errors; done
wc -l errors On master, this fails in 15 of the 50 runs, And this still brings us from 30% failure rate down to 6%, LGTM 👍, merging, thanks :) (The new 6% failure is https://gist.github.com/himdel/7dc3e4d342494ebd195894f80e4390c6 , I think this is just the extra |
This comment has been minimized.
This comment has been minimized.
these are no longer used anywhere other than group_management, which is always logged in as admin (previously it was needed for uses replaced by deleteTestUsers) there's no need to change logins inside such a helper now, and it's inconsisent with all the other helpers, removing :) This *may* fix a 6% sporadic failure in group_management, as described in ansible#833 (comment)
( |
* cy.deleteUser, cy.deleteGroup - don't call cy.logout & cy.login these are no longer used anywhere other than group_management, which is always logged in as admin (previously it was needed for uses replaced by deleteTestUsers) there's no need to change logins inside such a helper now, and it's inconsisent with all the other helpers, removing :) This *may* fix a 6% sporadic failure in group_management, as described in #833 (comment) * group_management: move deleteTestUsers & deleteTestGroups to before, not beforeEach the tests actually clean up after themselves, no need to run these helpers in between, and we do cleanup in before not beforeEach everywhere else as well :) * deleteUser, deleteGroup - fix over-eager intercepts the intercept meant for catching group deletion ended in **, so it triggered even on DELETE group/:id/model_permissions/:id making sure the intercepts are as specific as reasonably possible, so `?*` for get, and `*` for DELETE
* cy.deleteUser, cy.deleteGroup - don't call cy.logout & cy.login these are no longer used anywhere other than group_management, which is always logged in as admin (previously it was needed for uses replaced by deleteTestUsers) there's no need to change logins inside such a helper now, and it's inconsisent with all the other helpers, removing :) This *may* fix a 6% sporadic failure in group_management, as described in ansible/ansible-hub-ui#833 (comment) * group_management: move deleteTestUsers & deleteTestGroups to before, not beforeEach the tests actually clean up after themselves, no need to run these helpers in between, and we do cleanup in before not beforeEach everywhere else as well :) * deleteUser, deleteGroup - fix over-eager intercepts the intercept meant for catching group deletion ended in **, so it triggered even on DELETE group/:id/model_permissions/:id making sure the intercepts are as specific as reasonably possible, so `?*` for get, and `*` for DELETE
* cy.deleteUser, cy.deleteGroup - don't call cy.logout & cy.login these are no longer used anywhere other than group_management, which is always logged in as admin (previously it was needed for uses replaced by deleteTestUsers) there's no need to change logins inside such a helper now, and it's inconsisent with all the other helpers, removing :) This *may* fix a 6% sporadic failure in group_management, as described in ansible/ansible-hub-ui#833 (comment) * group_management: move deleteTestUsers & deleteTestGroups to before, not beforeEach the tests actually clean up after themselves, no need to run these helpers in between, and we do cleanup in before not beforeEach everywhere else as well :) * deleteUser, deleteGroup - fix over-eager intercepts the intercept meant for catching group deletion ended in **, so it triggered even on DELETE group/:id/model_permissions/:id making sure the intercepts are as specific as reasonably possible, so `?*` for get, and `*` for DELETE
Another problem in group management was not waiting good enough for user to be deleted by gui. We added contains at the end of deleteUser command. The app works fine.
o be honest Im not sure why this exactly works, because without it, galaxykit fails with 403 on select groups (in deleteTestGroups command in beforeEach).
What was wrong previously:
Before this PR, It fails sometimes in situation after the deleteUser command. It then runs beforeEach which runs deleteTestGroups.
And in deleteTestGroups, there is galaxykit which wants to select groups and this fails with 403.
Removing deleteGroup and deleteUser solves the problem also, but we need to test deletion using GUI. But if we remove only deleteUser, it works. It was maybe because deleteGroup did waited using contains to ensure group is deleted. So we added this contains also to deleteUser and it started working.