|
@@ -244,6 +244,11 @@ func testCodecGroup(t *testing.T) {
|
|
|
t.Run("TestMsgpackMissingFields", TestMsgpackMissingFields)
|
|
t.Run("TestMsgpackMissingFields", TestMsgpackMissingFields)
|
|
|
t.Run("TestBincMissingFields", TestBincMissingFields)
|
|
t.Run("TestBincMissingFields", TestBincMissingFields)
|
|
|
t.Run("TestSimpleMissingFields", TestSimpleMissingFields)
|
|
t.Run("TestSimpleMissingFields", TestSimpleMissingFields)
|
|
|
|
|
+ t.Run("TestJsonMaxDepth", TestJsonMaxDepth)
|
|
|
|
|
+ t.Run("TestCborMaxDepth", TestCborMaxDepth)
|
|
|
|
|
+ t.Run("TestMsgpackMaxDepth", TestMsgpackMaxDepth)
|
|
|
|
|
+ t.Run("TestBincMaxDepth", TestBincMaxDepth)
|
|
|
|
|
+ t.Run("TestSimpleMaxDepth", TestSimpleMaxDepth)
|
|
|
|
|
|
|
|
t.Run("TestJsonInvalidUnicode", TestJsonInvalidUnicode)
|
|
t.Run("TestJsonInvalidUnicode", TestJsonInvalidUnicode)
|
|
|
t.Run("TestCborHalfFloat", TestCborHalfFloat)
|
|
t.Run("TestCborHalfFloat", TestCborHalfFloat)
|
|
@@ -278,6 +283,7 @@ func testJsonGroup(t *testing.T) {
|
|
|
t.Run("TestJsonOmitempty", TestJsonOmitempty)
|
|
t.Run("TestJsonOmitempty", TestJsonOmitempty)
|
|
|
t.Run("TestJsonIntfMapping", TestJsonIntfMapping)
|
|
t.Run("TestJsonIntfMapping", TestJsonIntfMapping)
|
|
|
t.Run("TestJsonMissingFields", TestJsonMissingFields)
|
|
t.Run("TestJsonMissingFields", TestJsonMissingFields)
|
|
|
|
|
+ t.Run("TestJsonMaxDepth", TestJsonMaxDepth)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func testBincGroup(t *testing.T) {
|
|
func testBincGroup(t *testing.T) {
|
|
@@ -304,6 +310,7 @@ func testBincGroup(t *testing.T) {
|
|
|
t.Run("TestBincOmitempty", TestBincOmitempty)
|
|
t.Run("TestBincOmitempty", TestBincOmitempty)
|
|
|
t.Run("TestBincIntfMapping", TestBincIntfMapping)
|
|
t.Run("TestBincIntfMapping", TestBincIntfMapping)
|
|
|
t.Run("TestBincMissingFields", TestBincMissingFields)
|
|
t.Run("TestBincMissingFields", TestBincMissingFields)
|
|
|
|
|
+ t.Run("TestBincMaxDepth", TestBincMaxDepth)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func testCborGroup(t *testing.T) {
|
|
func testCborGroup(t *testing.T) {
|
|
@@ -331,6 +338,7 @@ func testCborGroup(t *testing.T) {
|
|
|
t.Run("TestCborOmitempty", TestCborOmitempty)
|
|
t.Run("TestCborOmitempty", TestCborOmitempty)
|
|
|
t.Run("TestCborIntfMapping", TestCborIntfMapping)
|
|
t.Run("TestCborIntfMapping", TestCborIntfMapping)
|
|
|
t.Run("TestCborMissingFields", TestCborMissingFields)
|
|
t.Run("TestCborMissingFields", TestCborMissingFields)
|
|
|
|
|
+ t.Run("TestCborMaxDepth", TestCborMaxDepth)
|
|
|
t.Run("TestCborHalfFloat", TestCborHalfFloat)
|
|
t.Run("TestCborHalfFloat", TestCborHalfFloat)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -357,6 +365,7 @@ func testMsgpackGroup(t *testing.T) {
|
|
|
t.Run("TestMsgpackOmitempty", TestMsgpackOmitempty)
|
|
t.Run("TestMsgpackOmitempty", TestMsgpackOmitempty)
|
|
|
t.Run("TestMsgpackIntfMapping", TestMsgpackIntfMapping)
|
|
t.Run("TestMsgpackIntfMapping", TestMsgpackIntfMapping)
|
|
|
t.Run("TestMsgpackMissingFields", TestMsgpackMissingFields)
|
|
t.Run("TestMsgpackMissingFields", TestMsgpackMissingFields)
|
|
|
|
|
+ t.Run("TestMsgpackMaxDepth", TestMsgpackMaxDepth)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func testSimpleGroup(t *testing.T) {
|
|
func testSimpleGroup(t *testing.T) {
|
|
@@ -381,6 +390,7 @@ func testSimpleGroup(t *testing.T) {
|
|
|
t.Run("TestSimpleOmitempty", TestSimpleOmitempty)
|
|
t.Run("TestSimpleOmitempty", TestSimpleOmitempty)
|
|
|
t.Run("TestSimpleIntfMapping", TestSimpleIntfMapping)
|
|
t.Run("TestSimpleIntfMapping", TestSimpleIntfMapping)
|
|
|
t.Run("TestSimpleMissingFields", TestSimpleMissingFields)
|
|
t.Run("TestSimpleMissingFields", TestSimpleMissingFields)
|
|
|
|
|
+ t.Run("TestSimpleMaxDepth", TestSimpleMaxDepth)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func testSimpleMammothGroup(t *testing.T) {
|
|
func testSimpleMammothGroup(t *testing.T) {
|