-
Notifications
You must be signed in to change notification settings - Fork 71
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
Avoid using token in testcase #704
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: netomi The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@@ -331,7 +331,7 @@ public void shouldBeAbleToGetExistedPAT() | |||
BitbucketPersonalAccessToken result = bitbucketServer.getPersonalAccessToken("5", "token"); | |||
// then | |||
assertNotNull(result); | |||
assertEquals(result.getToken(), "MTU4OTEwNTMyOTA5Ohc88HcY8k7gWOzl2mP5TtdtY5Qs"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc: @artaleks9 isn't it a dummy token?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess yes..It looks like a dummy token.
Actually it's an unit test/tests, probably @vinokurig can say more.
Anyway the tests of 'git-zero' flow on ci-openshift, where are used actual PATs are hide at all and not visible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fyi: I created that PR due to a secret scanning alert. If the token is a dummy one, this is not necessary, though I suggest to use dummy tokens that are clearly identifiable as such to avoid false alarms, e.g. adding dummy_ as prefix.
/retest |
The tests CI OpenShift are fail on the deploy Che with error:
because the @vinokurig , could you take a look on |
/retest |
The |
so secrets are not provisioned to workflows running for PRs from outside collaborators, so this step should be skipped in PRs afaict. |
@netomi: The following tests failed, say
Full PR test history. Your PR dashboard. 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-sigs/prow repository. I understand the commands that are listed here. |
closing in favor of #707 |
Created an issue about the pull request check: eclipse-che/che#23053 |
This PR is triggered by a security alert wrt a token used in a test case.
I updated the testcase to use a dummy value instead.