-
Notifications
You must be signed in to change notification settings - Fork 9
feat(streams): add starter_pack user stream source with tag-aware IDs #2391
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
Merged
Changes from all commits
Commits
Show all changes
3 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
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,98 @@ | ||
| import { describe, expect, it } from 'vitest'; | ||
| import { AppError } from '@/libs/error/error'; | ||
| import { ValidationErrorCode } from '@/libs/error/error.codes'; | ||
| import { ErrorCategory, ErrorService } from '@/libs/error/error.types'; | ||
| import { buildStarterPackStreamId, USER_STREAM_TAG_DELIMITER } from './userStream.helper'; | ||
|
|
||
| const expectValidationError = (fn: () => unknown) => { | ||
|
Orlandohub marked this conversation as resolved.
|
||
| try { | ||
| fn(); | ||
| expect.fail('Should have thrown'); | ||
| } catch (error) { | ||
| expect(error).toBeInstanceOf(AppError); | ||
| const appError = error as AppError; | ||
| expect(appError.category).toBe(ErrorCategory.Validation); | ||
| expect(appError.code).toBe(ValidationErrorCode.INVALID_INPUT); | ||
| expect(appError.service).toBe(ErrorService.Local); | ||
| } | ||
| }; | ||
|
|
||
| describe('buildStarterPackStreamId', () => { | ||
| describe('ID construction', () => { | ||
| it('should join ordered tags under the starter_pack source', () => { | ||
| expect(buildStarterPackStreamId(['bitcoin', 'music'])).toBe('starter_pack:all:all:bitcoin,music'); | ||
| }); | ||
|
|
||
| it('should preserve tag order (reversed lists yield distinct IDs)', () => { | ||
| const forward = buildStarterPackStreamId(['travel', 'music']); | ||
| const reversed = buildStarterPackStreamId(['music', 'travel']); | ||
|
|
||
| expect(forward).toBe('starter_pack:all:all:travel,music'); | ||
| expect(reversed).toBe('starter_pack:all:all:music,travel'); | ||
| expect(forward).not.toBe(reversed); | ||
| }); | ||
|
|
||
| it('should canonicalize labels so casing/whitespace variants map to one ID', () => { | ||
| const fromMixedCase = buildStarterPackStreamId(['Bitcoin ', 'MUSIC']); | ||
| const fromCanonical = buildStarterPackStreamId(['bitcoin', 'music']); | ||
|
|
||
| expect(fromMixedCase).toBe(fromCanonical); | ||
| expect(fromMixedCase).toBe('starter_pack:all:all:bitcoin,music'); | ||
| }); | ||
|
|
||
| it('should deduplicate canonical labels while preserving first-seen order', () => { | ||
| expect(buildStarterPackStreamId(['Bitcoin ', 'music', 'bitcoin', 'MUSIC', 'art'])).toBe( | ||
| 'starter_pack:all:all:bitcoin,music,art', | ||
| ); | ||
| }); | ||
|
|
||
| it('should enforce the tag cap after canonical duplicates are removed', () => { | ||
| expect(buildStarterPackStreamId(['a', 'A', 'b', 'B', 'c', 'C'])).toBe('starter_pack:all:all:a,b,c'); | ||
| }); | ||
|
|
||
| it('should accept the maximum of 5 tags', () => { | ||
| expect(buildStarterPackStreamId(['a', 'b', 'c', 'd', 'e'])).toBe('starter_pack:all:all:a,b,c,d,e'); | ||
| }); | ||
|
|
||
| it('should accept a single tag', () => { | ||
| expect(buildStarterPackStreamId(['bitcoin'])).toBe('starter_pack:all:all:bitcoin'); | ||
| }); | ||
| }); | ||
|
|
||
| describe('validation', () => { | ||
| it('should reject an empty tag list', () => { | ||
| expectValidationError(() => buildStarterPackStreamId([])); | ||
| }); | ||
|
|
||
| it('should reject more than 5 tags', () => { | ||
| expectValidationError(() => buildStarterPackStreamId(['a', 'b', 'c', 'd', 'e', 'f'])); | ||
| }); | ||
|
|
||
| it('should reject empty and whitespace-only labels', () => { | ||
| expectValidationError(() => buildStarterPackStreamId([''])); | ||
| expectValidationError(() => buildStarterPackStreamId([' '])); | ||
| }); | ||
|
|
||
| it('should reject labels with inner whitespace (banned characters)', () => { | ||
| expectValidationError(() => buildStarterPackStreamId(['rock music'])); | ||
| expectValidationError(() => buildStarterPackStreamId(['tab\there'])); | ||
| expectValidationError(() => buildStarterPackStreamId(['new\nline'])); | ||
| }); | ||
|
|
||
| it('should reject labels containing the tag delimiter', () => { | ||
| expectValidationError(() => buildStarterPackStreamId([`bit${USER_STREAM_TAG_DELIMITER}coin`])); | ||
| }); | ||
|
|
||
| it('should reject labels containing the stream ID delimiter', () => { | ||
| expectValidationError(() => buildStarterPackStreamId(['bit:coin'])); | ||
| }); | ||
|
|
||
| it('should reject overlength labels (>20 chars)', () => { | ||
| expectValidationError(() => buildStarterPackStreamId(['a'.repeat(21)])); | ||
| }); | ||
|
|
||
| it('should accept a label at exactly 20 chars', () => { | ||
| expect(buildStarterPackStreamId(['a'.repeat(20)])).toBe(`starter_pack:all:all:${'a'.repeat(20)}`); | ||
| }); | ||
| }); | ||
| }); | ||
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
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
Oops, something went wrong.
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.