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 annotations test flake #11443

Conversation

juanvallejo
Copy link
Contributor

@juanvallejo juanvallejo commented Oct 19, 2016

Fixes #11442

@danwinship @openshift/cli-review

@@ -13,16 +13,16 @@ trap os::test::junit::reconcile_output EXIT
os::test::junit::declare_suite_start "cmd/annotate"
# This test validates empty values in key-value pairs set by the annotate command
os::cmd::expect_success_and_text 'oc process -f examples/zookeeper/template.json | oc apply -f -' 'pod "zookeeper-1" created'
os::cmd::expect_success_and_text 'oc annotate pod zookeeper-1 node-selector=""' 'pod "zookeeper-1" annotated'
os::cmd::expect_success_and_text 'oc get pod zookeeper-1 --template="{{.metadata.annotations}}"' 'node-selector:'
os::cmd::expect_success_and_text 'oc annotate pod zookeeper-1 nodeselector=""' 'pod "zookeeper-1" annotated'
Copy link
Contributor

Choose a reason for hiding this comment

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

This change seems unrelated?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It is, but it was not testing an empty value annotation well enough before. The line below it actually checks for the annotation's value now, as opposed to just the annotation name and a colon

Copy link
Contributor

Choose a reason for hiding this comment

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

Right, but you can do that without renaming the annotation

Copy link
Contributor Author

Choose a reason for hiding this comment

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

hm, I was getting error: error parsing template {{.metadata.annotations.node-selector}}, template: output:1: bad character U+002D '-' when I gave it the template {{.metadata.annotations.node-selector}}

Copy link
Contributor

Choose a reason for hiding this comment

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

I can't remember my jsonpath well -- is there a object['field-name'] accessor?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

hm, apparently I can use '{{index .metadata.annotations "my-index"}}' whenever a key includes "bad characters"

Copy link
Contributor

Choose a reason for hiding this comment

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

Let's do that

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sounds good a2057c2


echo "annotate: ok"
os::test::junit::declare_suite_end

os::test::junit::declare_suite_start "cmd/label"
# This test validates empty values in key-value pairs set by the label command
os::cmd::expect_success_and_text 'oc label pod zookeeper-1 label2=""' 'pod "zookeeper-1" labeled'
os::cmd::expect_success_and_text 'oc get pod zookeeper-1 --template="{{.metadata.labels}}"' 'label2\: '
os::cmd::expect_success_and_text 'oc get pod zookeeper-1 --template="{{.metadata.labels.label2}}"' ''
Copy link
Contributor

Choose a reason for hiding this comment

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

It is not obvious to me that this will test what you want it to ... I think we need to be explicit in the expected text:

os::cmd::expect_success_and_text 'oc get pod zookeeper-1 --template="{{.metadata.labels.label2}}"' '^$'

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sounds good, will update


echo "annotate: ok"
os::test::junit::declare_suite_end

os::test::junit::declare_suite_start "cmd/label"
# This test validates empty values in key-value pairs set by the label command
os::cmd::expect_success_and_text 'oc label pod zookeeper-1 label2=""' 'pod "zookeeper-1" labeled'
os::cmd::expect_success_and_text 'oc get pod zookeeper-1 --template="{{.metadata.labels}}"' 'label2\: '
os::cmd::expect_success_and_text 'oc get pod zookeeper-1 --template="{{.metadata.labels.label2}}"' ''
Copy link
Contributor

Choose a reason for hiding this comment

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

if you want to ensure the empty value, you need to pin to start and end: '^$'
if the label is completely missing, you'll get '' from the template output and '' will match that since it does substring regex match

os::cmd::expect_success_and_text 'oc annotate pod zookeeper-1 node-selector=""' 'pod "zookeeper-1" annotated'
os::cmd::expect_success_and_text 'oc get pod zookeeper-1 --template="{{.metadata.annotations}}"' 'node-selector:'
os::cmd::expect_success_and_text 'oc annotate pod zookeeper-1 nodeselector=""' 'pod "zookeeper-1" annotated'
os::cmd::expect_success_and_text 'oc get pod zookeeper-1 --template="{{.metadata.annotations.nodeselector}}"' ''
Copy link
Contributor

Choose a reason for hiding this comment

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

same comment here, if you want to test empty value, pin '^$'

@juanvallejo
Copy link
Contributor Author

@stevekuznetsov @liggitt Thanks for the feedback, expecting ^$ was not working since the command output did not have a newline marker at the end

@juanvallejo
Copy link
Contributor Author

@stevekuznetsov or @liggitt do you have any more feedback? Using expect_success_and_not_text 'oc get pod ... --template="{{.metadata.labels.label2}}' '.' seems to be working well

@juanvallejo juanvallejo force-pushed the jvallejo/fix-annotations-test-flake branch from dde5cda to a2057c2 Compare October 21, 2016 15:19
@stevekuznetsov
Copy link
Contributor

Squash, LGTM

@juanvallejo juanvallejo force-pushed the jvallejo/fix-annotations-test-flake branch from a2057c2 to 68cd54a Compare October 21, 2016 16:58
@juanvallejo
Copy link
Contributor Author

@stevekuznetsov

Squash, LGTM

Done!

@stevekuznetsov
Copy link
Contributor

[merge]

@openshift-bot
Copy link
Contributor

openshift-bot commented Oct 21, 2016

continuous-integration/openshift-jenkins/merge SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pr_origin/10424/) (Image: devenv-rhel7_5216)

@openshift-bot
Copy link
Contributor

Evaluated for origin merge up to 68cd54a

@openshift-bot
Copy link
Contributor

[Test]ing while waiting on the merge queue

@openshift-bot
Copy link
Contributor

Evaluated for origin test up to 68cd54a

@openshift-bot
Copy link
Contributor

continuous-integration/openshift-jenkins/test SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pr_origin/10424/) (Base Commit: 2dccff1)

@openshift-bot openshift-bot merged commit fa658ac into openshift:master Oct 21, 2016
@juanvallejo juanvallejo deleted the jvallejo/fix-annotations-test-flake branch October 21, 2016 20:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants