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

Fix reporting duration error and add tests #84

Conversation

martinkunc
Copy link
Contributor

The retrieve config was doing checks for interval, but the actual error, but it declared new err variable, which was shadowing the original err.
That means any set inside of the block, when the block is left was discarded and err returned to original value from outer scope.
In case of too short interval (under 1 m) the outer 'err' was nil, even thought inner scope set it to "too short" it was discarded and function returned err = nil.

@openshift-ci-robot openshift-ci-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Mar 4, 2020
@alexandrevicenzi
Copy link
Contributor

alexandrevicenzi commented Mar 4, 2020

@martinkunc where is the BZ related to this? Is it just a test for 1753755?


}

var (
Copy link
Contributor

Choose a reason for hiding this comment

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

const perhaps?

actionName = getAction.GetName()
}

//log.Printf("namespace %s resource: %s verb %s Name %s", action.GetNamespace(), action.GetResource(), action.GetVerb(), actionName)
Copy link
Contributor

Choose a reason for hiding this comment

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

remove or uncomment

errS = err.Error()
}
if expErrS != errS {
t.Fatalf("The test expected error doesn't fit actual error.\nExpected: %s Actual: %s", tt.expErr, err)
Copy link
Contributor

Choose a reason for hiding this comment

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

match is a better word then fit.

)

func TestChangeSupportConfig(t *testing.T) {
var cases = []struct {
Copy link
Contributor

Choose a reason for hiding this comment

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

I would rather create 2 tests, each test with only one purpose. It's more clear to read and understand. But up to you.

@openshift-ci-robot openshift-ci-robot added size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. and removed size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Mar 4, 2020
@martinkunc
Copy link
Contributor Author

/retest

6 similar comments
@martinkunc
Copy link
Contributor Author

/retest

@martinkunc
Copy link
Contributor Author

/retest

@martinkunc
Copy link
Contributor Author

/retest

@martinkunc
Copy link
Contributor Author

/retest

@martinkunc
Copy link
Contributor Author

/retest

@martinkunc
Copy link
Contributor Author

/retest

@alexandrevicenzi
Copy link
Contributor

/lgtm

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Mar 5, 2020
@openshift-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: alexandrevicenzi, martinkunc

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

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci-robot openshift-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Mar 5, 2020
@openshift-merge-robot openshift-merge-robot merged commit 0b0a7a2 into openshift:master Mar 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants