Conversation
TestManagerChange_EndToEndWorkflow/complete_manager_change_workflow
verified steps 1-3 (request creation, email delivery via mailpit,
status endpoint) and then stopped at step 4 with:
t.Log("Skipping confirmation step - panic in ConfirmManagerChange
needs separate fix")
The referenced panic is unrelated to this workflow — server-generated
tokens are always long enough to slice safely — so the workflow can
be completed without waiting on that fix.
Extend the test with steps 4 and 5:
- Step 4: read the confirmation token directly from pending_mgrchange
via dbPool.QueryRow (parsing it out of the mailpit HTML would be
fragile), then drive GET /channels/:id/manager-confirm?token=... and
assert 200 + status=confirmed + change_type=temporary in the
response body.
- Step 5: verify the DB row's confirmed column is now '1'.
Net effect: the manager-change happy path is now covered end-to-end
against a real Postgres + real mailpit, closing the loop from
submission through email delivery to confirmation.
Up to standards ✅🟢 Issues
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
TestManagerChange_EndToEndWorkflow/complete_manager_change_workflow
verified steps 1-3 (request creation, email delivery via mailpit,
status endpoint) and then stopped at step 4 with:
The referenced panic is unrelated to this workflow — server-generated
tokens are always long enough to slice safely — so the workflow can
be completed without waiting on that fix.
Extend the test with steps 4 and 5:
via dbPool.QueryRow (parsing it out of the mailpit HTML would be
fragile), then drive GET /channels/:id/manager-confirm?token=... and
assert 200 + status=confirmed + change_type=temporary in the
response body.
Net effect: the manager-change happy path is now covered end-to-end
against a real Postgres + real mailpit, closing the loop from
submission through email delivery to confirmation.