-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
check for nil before returning invalid json in rpc streaming calls (#…
…7104) should handle nil having already been written in any rpc call before writing it again causing invalid json to be returned.
- Loading branch information
Showing
2 changed files
with
108 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
package rpc | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"fmt" | ||
"reflect" | ||
"testing" | ||
|
||
jsoniter "github.com/json-iterator/go" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestHandlerDoesNotDoubleWriteNull(t *testing.T) { | ||
|
||
tests := map[string]struct { | ||
params []byte | ||
expected string | ||
}{ | ||
"error_with_stream_write": { | ||
params: []byte("[1]"), | ||
expected: `{"jsonrpc":"2.0","id":1,"result":null,"error":{"code":-32000,"message":"id 1"}}`, | ||
}, | ||
"error_without_stream_write": { | ||
params: []byte("[2]"), | ||
expected: `{"jsonrpc":"2.0","id":1,"result":null,"error":{"code":-32000,"message":"id 2"}}`, | ||
}, | ||
"no_error": { | ||
params: []byte("[3]"), | ||
expected: `{"jsonrpc":"2.0","id":1,"result":{}}`, | ||
}, | ||
} | ||
|
||
for name, testParams := range tests { | ||
t.Run(name, func(t *testing.T) { | ||
msg := jsonrpcMessage{ | ||
Version: "2.0", | ||
ID: []byte{49}, | ||
Method: "test_test", | ||
Params: testParams.params, | ||
Error: nil, | ||
Result: nil, | ||
} | ||
|
||
dummyFunc := func(id int, stream *jsoniter.Stream) error { | ||
if id == 1 { | ||
stream.WriteNil() | ||
return fmt.Errorf("id 1") | ||
} | ||
if id == 2 { | ||
return fmt.Errorf("id 2") | ||
} | ||
stream.WriteEmptyObject() | ||
return nil | ||
} | ||
|
||
var arg1 int | ||
cb := &callback{ | ||
fn: reflect.ValueOf(dummyFunc), | ||
rcvr: reflect.Value{}, | ||
argTypes: []reflect.Type{reflect.TypeOf(arg1)}, | ||
hasCtx: false, | ||
errPos: 0, | ||
isSubscribe: false, | ||
streamable: true, | ||
} | ||
|
||
args, err := parsePositionalArguments((msg).Params, cb.argTypes) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
var buf bytes.Buffer | ||
stream := jsoniter.NewStream(jsoniter.ConfigDefault, &buf, 4096) | ||
|
||
h := handler{} | ||
h.runMethod(context.Background(), &msg, cb, args, stream) | ||
|
||
output := buf.String() | ||
assert.Equal(t, testParams.expected, output, "expected output should match") | ||
}) | ||
} | ||
|
||
} |