Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
e11cd3ee
Commit
e11cd3ee
authored
Mar 10, 2017
by
Feng Xiao
Committed by
GitHub
Mar 10, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2818 from xfxyjwf/i1470
Don't expose gson exceptions in JsonFormat.
parents
92064a40
075475f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
3 deletions
+52
-3
JsonFormat.java
...il/src/main/java/com/google/protobuf/util/JsonFormat.java
+18
-3
JsonFormatTest.java
...rc/test/java/com/google/protobuf/util/JsonFormatTest.java
+34
-0
No files found.
java/util/src/main/java/com/google/protobuf/util/JsonFormat.java
View file @
e11cd3ee
...
...
@@ -35,6 +35,7 @@ import com.google.gson.Gson;
import
com.google.gson.GsonBuilder
;
import
com.google.gson.JsonArray
;
import
com.google.gson.JsonElement
;
import
com.google.gson.JsonIOException
;
import
com.google.gson.JsonNull
;
import
com.google.gson.JsonObject
;
import
com.google.gson.JsonParser
;
...
...
@@ -1067,9 +1068,23 @@ public class JsonFormat {
}
void
merge
(
Reader
json
,
Message
.
Builder
builder
)
throws
IOException
{
JsonReader
reader
=
new
JsonReader
(
json
);
reader
.
setLenient
(
false
);
merge
(
jsonParser
.
parse
(
reader
),
builder
);
try
{
JsonReader
reader
=
new
JsonReader
(
json
);
reader
.
setLenient
(
false
);
merge
(
jsonParser
.
parse
(
reader
),
builder
);
}
catch
(
InvalidProtocolBufferException
e
)
{
throw
e
;
}
catch
(
JsonIOException
e
)
{
// Unwrap IOException.
if
(
e
.
getCause
()
instanceof
IOException
)
{
throw
(
IOException
)
e
.
getCause
();
}
else
{
throw
new
InvalidProtocolBufferException
(
e
.
getMessage
());
}
}
catch
(
Exception
e
)
{
// We convert all exceptions from JSON parsing to our own exceptions.
throw
new
InvalidProtocolBufferException
(
e
.
getMessage
());
}
}
void
merge
(
String
json
,
Message
.
Builder
builder
)
throws
InvalidProtocolBufferException
{
...
...
java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java
View file @
e11cd3ee
...
...
@@ -62,6 +62,10 @@ import com.google.protobuf.util.JsonTestProto.TestStruct;
import
com.google.protobuf.util.JsonTestProto.TestTimestamp
;
import
com.google.protobuf.util.JsonTestProto.TestWrappers
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.io.InputStreamReader
;
import
java.io.Reader
;
import
java.io.StringReader
;
import
java.math.BigDecimal
;
import
java.math.BigInteger
;
import
java.util.HashMap
;
...
...
@@ -1417,4 +1421,34 @@ public class JsonFormatTest extends TestCase {
// Expected.
}
}
// Test that we are not leaking out JSON exceptions.
public
void
testJsonException
()
throws
Exception
{
InputStream
throwingInputStream
=
new
InputStream
()
{
public
int
read
()
throws
IOException
{
throw
new
IOException
(
"12345"
);
}
};
InputStreamReader
throwingReader
=
new
InputStreamReader
(
throwingInputStream
);
// When the underlying reader throws IOException, JsonFormat should forward
// through this IOException.
try
{
TestAllTypes
.
Builder
builder
=
TestAllTypes
.
newBuilder
();
JsonFormat
.
parser
().
merge
(
throwingReader
,
builder
);
fail
(
"Exception is expected."
);
}
catch
(
IOException
e
)
{
assertEquals
(
"12345"
,
e
.
getMessage
());
}
Reader
invalidJsonReader
=
new
StringReader
(
"{ xxx - yyy }"
);
// When the JSON parser throws parser exceptions, JsonFormat should turn
// that into InvalidProtocolBufferException.
try
{
TestAllTypes
.
Builder
builder
=
TestAllTypes
.
newBuilder
();
JsonFormat
.
parser
().
merge
(
invalidJsonReader
,
builder
);
fail
(
"Exception is expected."
);
}
catch
(
InvalidProtocolBufferException
e
)
{
// Expected.
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment