-
Notifications
You must be signed in to change notification settings - Fork 435
Fix stack overflow when converting arrays with circular references to primitives #695
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,123 @@ | ||
| package goja | ||
|
|
||
| import ( | ||
| "testing" | ||
| ) | ||
|
|
||
| func TestArrayCircularReferenceToString(t *testing.T) { | ||
| const SCRIPT = ` | ||
| var T = [1, 2, 3]; | ||
| T[42] = T; // Create circular reference | ||
| var str = String(T); | ||
| // Circular reference should be replaced with empty string | ||
| str === "1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"; | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } | ||
|
|
||
| func TestArrayCircularReferenceNumericOperation(t *testing.T) { | ||
| const SCRIPT = ` | ||
| var T = [1, 2, 3]; | ||
| T[42] = T; // Create circular reference | ||
| try { | ||
| var x = T % 2; // This should not crash | ||
| true; | ||
| } catch (e) { | ||
| false; | ||
| } | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } | ||
|
|
||
| func TestArrayCircularReferenceJoin(t *testing.T) { | ||
| const SCRIPT = ` | ||
| var T = [1, 2, 3]; | ||
| T[42] = T; // Create circular reference | ||
| var str = T.join(','); | ||
| // Circular reference should be replaced with empty string | ||
| str === "1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"; | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } | ||
|
|
||
| func TestArrayCircularReferenceConcat(t *testing.T) { | ||
| const SCRIPT = ` | ||
| var T = [1, 2, 3]; | ||
| T[42] = T; // Create circular reference | ||
| var str = '' + T; // String concatenation | ||
| // Circular reference should be replaced with empty string | ||
| str === "1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"; | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } | ||
|
|
||
| func TestArrayCircularReferenceToLocaleString(t *testing.T) { | ||
| const SCRIPT = ` | ||
| var T = [1, 2, 3]; | ||
| T[42] = T; // Create circular reference | ||
| var str = T.toLocaleString(); | ||
| // Circular reference should be replaced with empty string | ||
| str === "1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"; | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } | ||
|
|
||
| func TestArrayMultipleCircularReferences(t *testing.T) { | ||
| const SCRIPT = ` | ||
| var T = [1, 2, 3]; | ||
| T[42] = T; | ||
| T[76] = T; | ||
| T[80] = T; | ||
| var str = String(T); | ||
| // Should handle multiple circular references - all should be empty strings | ||
| str.split(',').length === 81; | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } | ||
|
|
||
| func TestArrayNestedCircularReference(t *testing.T) { | ||
| const SCRIPT = ` | ||
| var A = [1, 2]; | ||
| var B = [3, 4]; | ||
| A[2] = B; | ||
| B[2] = A; // Mutual circular reference | ||
| var str = String(A); | ||
| // A contains B which contains A - circular refs should be empty | ||
| str === "1,2,3,4,"; | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } | ||
|
|
||
| func TestArrayCircularReferenceAccessOK(t *testing.T) { | ||
| const SCRIPT = ` | ||
| // These operations should still work fine | ||
| var T = [1, 2, 3]; | ||
| T[42] = T; | ||
|
|
||
| // Accessing circular reference is OK | ||
| var same = T[42] === T; | ||
|
|
||
| // Accessing elements through circular reference is OK | ||
| var first = T[42][0]; | ||
|
|
||
| // Deep nesting is OK | ||
| var deep = T[42][42][42][42][42][0]; | ||
|
|
||
| same && first === 1 && deep === 1; | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } | ||
|
|
||
| func TestArrayCircularReferenceComparison(t *testing.T) { | ||
| const SCRIPT = ` | ||
| var T = [1, 2, 3]; | ||
| T[42] = T; // Create circular reference | ||
| try { | ||
| var result = T == 5; // Comparison should not crash | ||
| true; | ||
| } catch (e) { | ||
| false; | ||
| } | ||
| ` | ||
| testScript(SCRIPT, valueTrue, t) | ||
| } |
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.