-
Notifications
You must be signed in to change notification settings - Fork 581
fix: prevent CI analytics GitHub quota amplification #5225
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
Merged
JhaSourav07
merged 2 commits into
JhaSourav07:main
from
Krishnx21:fix/5224-ci-analytics-quota-amplification
Jun 12, 2026
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| import { beforeEach, describe, expect, it, vi } from 'vitest'; | ||
| import { GET } from './route'; | ||
| import { RateLimiter } from '@/lib/rate-limit'; | ||
| import { fetchCIAnalytics } from '@/services/github/ci-analytics'; | ||
|
|
||
| vi.mock('@/services/github/ci-analytics', () => ({ | ||
| fetchCIAnalytics: vi.fn(), | ||
| })); | ||
|
|
||
| describe('GET /api/ci-analytics', () => { | ||
| beforeEach(() => { | ||
| vi.clearAllMocks(); | ||
| vi.spyOn(RateLimiter.prototype, 'check').mockResolvedValue(true); | ||
| }); | ||
|
|
||
| it('rejects requests when the endpoint abuse budget is exhausted', async () => { | ||
| vi.spyOn(RateLimiter.prototype, 'check').mockResolvedValueOnce(false); | ||
|
|
||
| const response = await GET(new Request('http://localhost/api/ci-analytics?username=octocat')); | ||
|
|
||
| expect(response.status).toBe(429); | ||
| expect(fetchCIAnalytics).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('uses a fixed endpoint bucket that cannot be rotated with usernames', async () => { | ||
| vi.mocked(fetchCIAnalytics).mockResolvedValue({} as never); | ||
| const checkSpy = vi.spyOn(RateLimiter.prototype, 'check').mockResolvedValue(true); | ||
|
|
||
| await GET(new Request('http://localhost/api/ci-analytics?username=octocat')); | ||
| await GET(new Request('http://localhost/api/ci-analytics?username=torvalds')); | ||
|
|
||
| expect(checkSpy).toHaveBeenNthCalledWith(1, 'ci-analytics'); | ||
| expect(checkSpy).toHaveBeenNthCalledWith(2, 'ci-analytics'); | ||
| }); | ||
|
|
||
| it('rejects invalid GitHub usernames before the service fan-out', async () => { | ||
| const response = await GET( | ||
| new Request('http://localhost/api/ci-analytics?username=invalid%20username') | ||
| ); | ||
|
|
||
| expect(response.status).toBe(400); | ||
| expect(fetchCIAnalytics).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('fetches analytics for a validated username', async () => { | ||
| vi.mocked(fetchCIAnalytics).mockResolvedValue({ totalRuns: 0 } as never); | ||
|
|
||
| const response = await GET(new Request('http://localhost/api/ci-analytics?username=octocat')); | ||
|
|
||
| expect(response.status).toBe(200); | ||
| expect(fetchCIAnalytics).toHaveBeenCalledWith('octocat'); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| import { describe, expect, it, vi } from 'vitest'; | ||
|
|
||
| vi.mock('@/lib/github', () => ({ | ||
| getGitHubTokens: vi.fn(() => ['test-token']), | ||
| fetchWithRetry: vi.fn(async (url: string) => { | ||
| if (url.includes('/users/') && url.includes('/repos?')) { | ||
| return new Response( | ||
| JSON.stringify( | ||
| Array.from({ length: 20 }, (_, index) => ({ | ||
| name: `repo-${index}`, | ||
| owner: { login: 'octocat' }, | ||
| fork: false, | ||
| })) | ||
| ), | ||
| { status: 200 } | ||
| ); | ||
| } | ||
|
|
||
| return new Response( | ||
| JSON.stringify(url.includes('/runs') ? { workflow_runs: [] } : { workflows: [] }), | ||
| { | ||
| status: 200, | ||
| } | ||
| ); | ||
| }), | ||
| })); | ||
|
|
||
| import { fetchWithRetry } from '@/lib/github'; | ||
| import { fetchCIAnalytics } from './ci-analytics'; | ||
|
|
||
| describe('CI analytics request fan-out budget', () => { | ||
| it('caps workflow fetch targets even when a user has many repositories', async () => { | ||
| await fetchCIAnalytics(`security-budget-${Date.now()}`); | ||
|
|
||
| const actionCalls = vi | ||
| .mocked(fetchWithRetry) | ||
| .mock.calls.filter(([url]) => String(url).includes('/actions/')); | ||
|
|
||
| expect(actionCalls).toHaveLength(10); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.