-
Notifications
You must be signed in to change notification settings - Fork 347
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
start-proxy: Fix bug when language is not provided #2723
base: main
Are you sure you want to change the base?
Conversation
e934ea2
to
88693ea
Compare
88693ea
to
51bb5eb
Compare
src/start-proxy.test.ts
Dismissed
startProxyExports.getCredentials( | ||
getRunnerLogger(true), | ||
undefined, | ||
registryCredentials, | ||
undefined, | ||
), |
Check failure
Code scanning / CodeQL
Untrusted data passed to external API with additional heuristic sources High Experimental
e.password
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 believe this is a false positive because this is part of the call to the test. The input is part of the input in the test.
const parsed = JSON.parse(credentialsStr) as Credential[]; | ||
const out: Credential[] = []; | ||
for (const e of parsed) { | ||
if (e.url === undefined && e.host === undefined) { |
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.
Is it also an error if both url
and host
are defined?
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 am not sure, I believe the proxy will use the url in that case. I will double check.
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.
Added a comment.
|
||
// Filter credentials based on language if specified. `type` is the registry type. | ||
// E.g., "maven_feed" for Java/Kotlin, "nuget_repository" for C#. | ||
if (registryTypeForLanguage && e.type !== registryTypeForLanguage) { |
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.
If registryTypeForLanguage
is undefined and e.type
is defined, do we still want to include this?
eg- if e.type
is maven_feed
and the language is cpp
, is this registry still relevant?
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.
Yes, this is the behavior that want mostly for backwards compatibility. If no language is specified, we keep the information for all registries. Otherwise, older versions that did not have this input will filter everything away.
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.
Thanks for fixing. One more thing. I should have mentioned that in the original comment.
a65575b
to
7c2eafa
Compare
In #2680, I wanted the behavior to consider all existing credentials if the language argument was not provided. This was not the case, though.
I've fixed the bug and added regression tests.
Merge / deployment checklist