-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Fix GraphAdapterBuilder#addType(Type)
delegating to previous creator
#2811
Merged
eamonnmcmanus
merged 4 commits into
google:main
from
Marcono1234:marcono1234/graph-adapter-addType
Feb 22, 2025
+77
−3
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
5329d46
Fix `GraphAdapterBuilder#addType(Type)` delegating to previous creator
Marcono1234 f7d208c
Use lambdas
Marcono1234 0ae55b4
Merge branch 'main' into marcono1234/graph-adapter-addType
Marcono1234 2c78969
Fix GraphAdapterBuilder reuse affecting previous adapters
Marcono1234 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 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 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 |
---|---|---|
|
@@ -80,6 +80,51 @@ public void testDeserializationDirectSelfReference() { | |
assertThat(suicide.beats).isSameInstanceAs(suicide); | ||
} | ||
|
||
@Test | ||
public void testAddTypeCustomInstanceCreator() { | ||
GsonBuilder gsonBuilder = new GsonBuilder(); | ||
new GraphAdapterBuilder() | ||
.addType(Company.class, type -> new Company("custom")) | ||
.addType(Employee.class) | ||
.registerOn(gsonBuilder); | ||
Gson gson = gsonBuilder.create(); | ||
|
||
Company company = | ||
gson.fromJson( | ||
"{'0x1':{'employees':['0x2']},'0x2':{'name':'Jesse','company':'0x1'}}", Company.class); | ||
assertThat(company.name).isEqualTo("custom"); | ||
Employee employee = company.employees.get(0); | ||
assertThat(employee.name).isEqualTo("Jesse"); | ||
assertThat(employee.company).isSameInstanceAs(company); | ||
} | ||
|
||
@Test | ||
public void testAddTypeOverwrite() { | ||
GsonBuilder gsonBuilder = new GsonBuilder(); | ||
new GraphAdapterBuilder() | ||
.addType(Company.class, type -> new Company("custom")) | ||
// Overwrite Company creator with different custom one | ||
.addType(Company.class, type -> new Company("custom-2")) | ||
.addType(Employee.class) | ||
.registerOn(gsonBuilder); | ||
Gson gson = gsonBuilder.create(); | ||
|
||
Company company = gson.fromJson("{'0x1':{}}", Company.class); | ||
assertThat(company.name).isEqualTo("custom-2"); | ||
|
||
gsonBuilder = new GsonBuilder(); | ||
new GraphAdapterBuilder() | ||
.addType(Company.class, type -> new Company("custom")) | ||
// Overwrite Company creator with default one | ||
.addType(Company.class) | ||
.addType(Employee.class) | ||
.registerOn(gsonBuilder); | ||
gson = gsonBuilder.create(); | ||
|
||
company = gson.fromJson("{'0x1':{}}", Company.class); | ||
assertThat(company.name).isNull(); | ||
} | ||
|
||
@Test | ||
public void testSerializeListOfLists() { | ||
Type listOfListsType = new TypeToken<List<List<?>>>() {}.getType(); | ||
|
@@ -156,10 +201,37 @@ public void testDeserializationWithMultipleTypes() { | |
assertThat(company.name).isEqualTo("Google"); | ||
Employee jesse = company.employees.get(0); | ||
assertThat(jesse.name).isEqualTo("Jesse"); | ||
assertThat(jesse.company).isEqualTo(company); | ||
assertThat(jesse.company).isSameInstanceAs(company); | ||
Employee joel = company.employees.get(1); | ||
assertThat(joel.name).isEqualTo("Joel"); | ||
assertThat(joel.company).isEqualTo(company); | ||
assertThat(joel.company).isSameInstanceAs(company); | ||
Comment on lines
-159
to
+207
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not directly related to the main changes of this pull request, but checking for reference equality here is more correct. |
||
} | ||
|
||
@Test | ||
public void testBuilderReuse() { | ||
GsonBuilder gsonBuilder = new GsonBuilder(); | ||
GraphAdapterBuilder graphAdapterBuilder = | ||
new GraphAdapterBuilder() | ||
.addType(Company.class, type -> new Company("custom")) | ||
.addType(Employee.class); | ||
graphAdapterBuilder.registerOn(gsonBuilder); | ||
Gson gson = gsonBuilder.create(); | ||
|
||
Company company = gson.fromJson("{'0x1':{}}", Company.class); | ||
assertThat(company.name).isEqualTo("custom"); | ||
|
||
GsonBuilder gsonBuilder2 = new GsonBuilder(); | ||
// Reuse builder and overwrite creator | ||
graphAdapterBuilder.addType(Company.class, type -> new Company("custom-2")); | ||
graphAdapterBuilder.registerOn(gsonBuilder2); | ||
Gson gson2 = gsonBuilder2.create(); | ||
|
||
company = gson2.fromJson("{'0x1':{}}", Company.class); | ||
assertThat(company.name).isEqualTo("custom-2"); | ||
|
||
// But first adapter should not have been affected | ||
company = gson.fromJson("{'0x1':{}}", Company.class); | ||
assertThat(company.name).isEqualTo("custom"); | ||
} | ||
|
||
static class Roshambo { | ||
|
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.
Check notice
Code scanning / CodeQL
Possible confusion of local and field Note
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.
Intentionally shadowing
this.instanceCreators
, to avoid accidentally referring to it instead of the copy again.