Add kn revision delete command#207
Conversation
|
Hi @navidshaikh. Thanks for your PR. I'm waiting for a knative member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
|
/ok-to-test |
|
@navidshaikh: Cannot trigger testing until a trusted user reviews the PR and leaves an DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
|
/ok-to-test |
|
Is think there's a race in the test |
|
Or update is broken. |
maximilien
left a comment
There was a problem hiding this comment.
Unit and integration tests?
|
@maximilien : Thanks for review, I've updated the PR with unit and integration tests (added TestRevisionWorkflow, as IMO this isn't basic workflow). |
@rhuss : Yup, in this e2e run TestBasicWorkflow passed. |
Added revision delete command tests in new workflow namely TestRevisionWorkflow.
Also adds check for 'No resources found' while grabbing revision name.
|
Oops, test failures ;-( |
|
/retest |
rhuss
left a comment
There was a problem hiding this comment.
Some minor nit-picks, otherwise looks fine for me. Thanks !
|
@rhuss : Thanks for the review, updated the PR, PTAL. |
|
| } else if name != revName { | ||
| t.Errorf("Bad revision name returned after delete.") | ||
| } | ||
| commands.TestContains(t, output, []string{"Revision", revName, "deleted", "namespace", commands.FakeNamespace}, "word in output") |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: navidshaikh, rhuss The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
The following is the coverage report on pkg/.
|
|
/lgtm |
* Adds kn revision delete command * Adds unit tests for revision delete command * Adds integration tests for revision delete command Added revision delete command tests in new workflow namely TestRevisionWorkflow. * Removes extra line and renames an import alias * Adds 10 seconds sleep between service create and revision delete Also adds check for 'No resources found' while grabbing revision name. * Clean up imports * Removes the pause after service create * Updates testing output strings in unit and e2e * Updates post goimports on hack and test dirs
Fixes #203