Skip to content
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

Add error messages to test framework when changing user #17827

Conversation

tnozicka
Copy link
Contributor

Helps uncover #17805 and those error mesages should have been there anyways.

@openshift-ci-robot openshift-ci-robot added the size/S Denotes a PR that changes 10-29 lines, ignoring generated files. label Dec 15, 2017
@tnozicka
Copy link
Contributor Author

/cc @deads2k

@tnozicka
Copy link
Contributor Author

flake #17829
/retest

@tnozicka
Copy link
Contributor Author

flake #17829 again
/retest

@deads2k
Copy link
Contributor

deads2k commented Dec 15, 2017

@tnozicka This ends up hiding the original error types. That causes some calling code (sometimes multiple levels up) to fail. See comment on error handling for RequestToken call sites.

@mfojtik
Copy link
Contributor

mfojtik commented Dec 18, 2017

@tnozicka agree with David, can we throw there some V(5) glog.Infos instead?

@tnozicka
Copy link
Contributor Author

I'll check it but I don't think that any non direct caller should check those error types for exactly this reason, or am I wrong?

@tnozicka
Copy link
Contributor Author

/retest

@tnozicka
Copy link
Contributor Author

@deads2k would you mind sharing where that is used? I've found possibly only

accessToken, err := tokencmd.RequestToken(&anonConfig, nil, expectedLogin, expectedPassword)
// Expected error
if !tc.ExpectSuccess {
if err == nil {
t.Errorf("%s: Expected error, got token=%v", k, accessToken)
} else if statusErr, ok := err.(*apierrs.StatusError); !ok {
t.Errorf("%s: expected status error, got %#v", k, err)
} else if statusErr.ErrStatus.Code != tc.ExpectErrStatus {
t.Errorf("%s: expected error status %d, got %#v", k, tc.ExpectErrStatus, statusErr)
}
continue
}
and integration passed.

@tnozicka tnozicka force-pushed the add-error-messages-to-test-framework branch from 6193852 to 1243086 Compare December 20, 2017 15:27
@openshift-ci-robot
Copy link

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: tnozicka
We suggest the following additional approver: smarterclayton

Assign the PR to them by writing /assign @smarterclayton in a comment when ready.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these OWNERS Files:

You can indicate your approval by writing /approve in a comment
You can cancel your approval by writing /approve cancel in a comment

@openshift-ci-robot openshift-ci-robot added size/M Denotes a PR that changes 30-99 lines, ignoring generated files. and removed size/S Denotes a PR that changes 10-29 lines, ignoring generated files. labels Dec 20, 2017
@tnozicka
Copy link
Contributor Author

thanks @deads2k, I didn't want to abuse your time but I though you already knew the place (based on your previous comment) and the path to it from the low level seemed like backtracing all the calls 7 level up with exponential growth.

I went with github.com/pkg/errors so the underlying type can be unwrapped.

@tnozicka
Copy link
Contributor Author

tnozicka commented Dec 20, 2017

flakes: #17605 #17901 #17900
/retest

@tnozicka tnozicka force-pushed the add-error-messages-to-test-framework branch from 1243086 to 1781ee7 Compare December 20, 2017 19:39
@tnozicka
Copy link
Contributor Author

/retest

Copy link
Contributor

@soltysh soltysh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This lgtm, but I'll defer to David for final signoff.

@deads2k
Copy link
Contributor

deads2k commented Jan 2, 2018

The problem with doing it this way is that it's no longer the standard way of dealing with a golang error and our project standard isn't to attempt unwrapping. Having done this in java, you either have to convert the entire code base or you don't do it at all. Mix and match fails unexpectedly in frustrating spots.

@tnozicka
Copy link
Contributor Author

tnozicka commented Jan 2, 2018

I would look at it from different point. The way it was done was non-standard - checking error type is "allowed" only for the direct caller and this rouge code did it several layers up. The standard Go way is to wrap an error into a string (erasing the type), adding context. This wrapping makes the error look the same way as if it was wrapped normally into a string for any caller not aware of the wrapping - fulfilling the standard we have. In addition it allows unwrapping to fix the places where we were breaking the standard way by checking error type several layers up.

Also the package is already vendored.

@openshift-merge-robot
Copy link
Contributor

@tnozicka PR needs rebase

@openshift-merge-robot openshift-merge-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jan 13, 2018
@openshift-bot
Copy link
Contributor

Issues go stale after 90d of inactivity.

Mark the issue as fresh by commenting /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.
Exclude this issue from closing by commenting /lifecycle frozen.

If this issue is safe to close now please do so with /close.

/lifecycle stale

@openshift-ci-robot openshift-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Apr 13, 2018
@openshift-bot
Copy link
Contributor

Stale issues rot after 30d of inactivity.

Mark the issue as fresh by commenting /remove-lifecycle rotten.
Rotten issues close after an additional 30d of inactivity.
Exclude this issue from closing by commenting /lifecycle frozen.

If this issue is safe to close now please do so with /close.

/lifecycle rotten
/remove-lifecycle stale

@openshift-ci-robot openshift-ci-robot added lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. and removed lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. labels May 13, 2018
@openshift-bot
Copy link
Contributor

Rotten issues close after 30d of inactivity.

Reopen the issue by commenting /reopen.
Mark the issue as fresh by commenting /remove-lifecycle rotten.
Exclude this issue from closing again by commenting /lifecycle frozen.

/close

@tnozicka tnozicka deleted the add-error-messages-to-test-framework branch June 15, 2018 11:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants