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

feat: github authenticated registry #506

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

mkykadir
Copy link

@mkykadir mkykadir commented Jan 20, 2025

Description

Utilize authToken in GithubRegistry for authenticated Github requests

Backward compatibility

Yes

works as usual when no auth token is configured

Testing

New unit tests Authenticated GithubRegistry

  • Tests authenticated API rate limit and fallbacks to proxy
  • Test wrong token configuration, i.e. unauthorized access

Copy link

changeset-bot bot commented Jan 20, 2025

🦋 Changeset detected

Latest commit: 79559ad

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@hyperlane-xyz/registry Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

@paulbalaji paulbalaji left a comment

Choose a reason for hiding this comment

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

lgtm % mo's comment

const response = await fetch(url, {
headers: useToken
? { ...this.baseApiHeaders, Authorization: `Bearer ${this.authToken}` }
: undefined,
Copy link
Collaborator

@mshojaei-txfusion mshojaei-txfusion Feb 12, 2025

Choose a reason for hiding this comment

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

Why undefined and not this.baseApiHeaders?

@@ -190,9 +197,9 @@ export class GithubRegistry extends BaseRegistry implements IRegistry {

public async getApiRateLimit(): Promise<GithubRateResponse['resources']['core']> {
const response = await fetch(`${GITHUB_API_URL}/rate_limit`, {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Could not we use this.fetch and handle headers just once there?

Copy link
Collaborator

@mshojaei-txfusion mshojaei-txfusion left a comment

Choose a reason for hiding this comment

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

LGTM!
just requested some changes!

});

it('should fail fetching chains with invalid authentication token', async () => {
expect(invalidTokenGithubRegistry.getChains()).to.eventually.be.rejected;
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
expect(invalidTokenGithubRegistry.getChains()).to.eventually.be.rejected;
return expect(invalidTokenGithubRegistry.getChains()).to.eventually.be.rejected;

});

it('should fetch chains with authenticated token', async () => {
expect(invalidTokenGithubRegistry.getChains()).to.eventually.be.fulfilled;
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
expect(invalidTokenGithubRegistry.getChains()).to.eventually.be.fulfilled;
return expect(authenticatedGithubRegistry.getChains())
.to.eventually.be.fulfilled;

@mshojaei-txfusion
Copy link
Collaborator

Created #610 to main, and mkykadir#1 to @mkykadir repo.
These changes will fix problems in tests and improve the PR.

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.

5 participants