aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-06-18 00:07:45 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-06-18 00:07:45 +0800
commit5afebc2a4b490bef9618c3f55a8c52e25ab716ef (patch)
tree08e2a122ebc50afd983d3704b7b0e16cb48d4d79 /rpc
parent1f34daccc33d7d4edd3fdf27efbc0c29445f2f1f (diff)
downloadgo-tangerine-5afebc2a4b490bef9618c3f55a8c52e25ab716ef.tar
go-tangerine-5afebc2a4b490bef9618c3f55a8c52e25ab716ef.tar.gz
go-tangerine-5afebc2a4b490bef9618c3f55a8c52e25ab716ef.tar.bz2
go-tangerine-5afebc2a4b490bef9618c3f55a8c52e25ab716ef.tar.lz
go-tangerine-5afebc2a4b490bef9618c3f55a8c52e25ab716ef.tar.xz
go-tangerine-5afebc2a4b490bef9618c3f55a8c52e25ab716ef.tar.zst
go-tangerine-5afebc2a4b490bef9618c3f55a8c52e25ab716ef.zip
unit test coverage for NewDataArgs
Diffstat (limited to 'rpc')
-rw-r--r--rpc/args_test.go54
1 files changed, 54 insertions, 0 deletions
diff --git a/rpc/args_test.go b/rpc/args_test.go
index 81a2972cd..fd20dbab8 100644
--- a/rpc/args_test.go
+++ b/rpc/args_test.go
@@ -2577,3 +2577,57 @@ func TestSigArgsEmpty(t *testing.T) {
t.Error(str)
}
}
+
+func TestDataArgs(t *testing.T) {
+ input := `["0x0123"]`
+ expected := new(NewDataArgs)
+ expected.Data = "0x0123"
+
+ args := new(NewDataArgs)
+ if err := json.Unmarshal([]byte(input), &args); err != nil {
+ t.Error(err)
+ }
+
+ if expected.Data != args.Data {
+ t.Errorf("Data should be %v but is %v", expected.Data, args.Data)
+ }
+}
+
+func TestDataArgsEmptyData(t *testing.T) {
+ input := `[""]`
+
+ args := new(NewDataArgs)
+ str := ExpectValidationError(json.Unmarshal([]byte(input), args))
+ if len(str) > 0 {
+ t.Error(str)
+ }
+}
+
+func TestDataArgsDataType(t *testing.T) {
+ input := `[13]`
+
+ args := new(NewDataArgs)
+ str := ExpectInvalidTypeError(json.Unmarshal([]byte(input), args))
+ if len(str) > 0 {
+ t.Error(str)
+ }
+}
+
+func TestDataArgsEmpty(t *testing.T) {
+ input := `[]`
+ args := new(NewDataArgs)
+ str := ExpectInsufficientParamsError(json.Unmarshal([]byte(input), args))
+ if len(str) > 0 {
+ t.Error(str)
+ }
+}
+
+func TestDataArgsInvalid(t *testing.T) {
+ input := `{}`
+
+ args := new(NewDataArgs)
+ str := ExpectDecodeParamError(json.Unmarshal([]byte(input), args))
+ if len(str) > 0 {
+ t.Error(str)
+ }
+}