Skip to content

Commit ca006de

Browse files
authoredOct 16, 2024··
Replace UnmarshalJSON() with UnmarshalText() for transaction statuses (#2220)
* Replace UnmarshalJSON() with UnmarshalText() for transaction statuses UnmarshalText avoids issues with forgetting quotes in JSON, making it simpler for parsing plain text values.
1 parent 935b903 commit ca006de

File tree

2 files changed

+49
-43
lines changed

2 files changed

+49
-43
lines changed
 

‎starknet/transaction.go

+23-31
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ const (
1616
Rejected
1717
)
1818

19-
func (es *ExecutionStatus) UnmarshalJSON(data []byte) error {
20-
switch string(data) {
21-
case `"SUCCEEDED"`:
19+
func (es *ExecutionStatus) UnmarshalText(data []byte) error {
20+
switch str := string(data); str {
21+
case "SUCCEEDED":
2222
*es = Succeeded
23-
case `"REVERTED"`:
23+
case "REVERTED":
2424
*es = Reverted
25-
case `"REJECTED"`:
25+
case "REJECTED":
2626
*es = Rejected
2727
default:
28-
return errors.New("unknown ExecutionStatus")
28+
return fmt.Errorf("unknown ExecutionStatus %q", str)
2929
}
3030
return nil
3131
}
@@ -39,18 +39,18 @@ const (
3939
Received
4040
)
4141

42-
func (fs *FinalityStatus) UnmarshalJSON(data []byte) error {
43-
switch string(data) {
44-
case `"ACCEPTED_ON_L2"`:
42+
func (fs *FinalityStatus) UnmarshalText(data []byte) error {
43+
switch str := string(data); str {
44+
case "ACCEPTED_ON_L2":
4545
*fs = AcceptedOnL2
46-
case `"ACCEPTED_ON_L1"`:
46+
case "ACCEPTED_ON_L1":
4747
*fs = AcceptedOnL1
48-
case `"NOT_RECEIVED"`:
48+
case "NOT_RECEIVED":
4949
*fs = NotReceived
50-
case `"RECEIVED"`:
50+
case "RECEIVED":
5151
*fs = Received
5252
default:
53-
return errors.New("unknown FinalityStatus")
53+
return fmt.Errorf("unknown FinalityStatus %q", str)
5454
}
5555
return nil
5656
}
@@ -83,24 +83,24 @@ func (t TransactionType) String() string {
8383
}
8484
}
8585

86-
func (t TransactionType) MarshalJSON() ([]byte, error) {
87-
return []byte(fmt.Sprintf("%q", t)), nil
86+
func (t TransactionType) MarshalText() ([]byte, error) {
87+
return []byte(t.String()), nil
8888
}
8989

90-
func (t *TransactionType) UnmarshalJSON(data []byte) error {
91-
switch string(data) {
92-
case `"DECLARE"`:
90+
func (t *TransactionType) UnmarshalText(data []byte) error {
91+
switch str := string(data); str {
92+
case "DECLARE":
9393
*t = TxnDeclare
94-
case `"DEPLOY"`:
94+
case "DEPLOY":
9595
*t = TxnDeploy
96-
case `"DEPLOY_ACCOUNT"`:
96+
case "DEPLOY_ACCOUNT":
9797
*t = TxnDeployAccount
98-
case `"INVOKE"`, `"INVOKE_FUNCTION"`:
98+
case "INVOKE", "INVOKE_FUNCTION":
9999
*t = TxnInvoke
100-
case `"L1_HANDLER"`:
100+
case "L1_HANDLER":
101101
*t = TxnL1Handler
102102
default:
103-
return errors.New("unknown TransactionType")
103+
return fmt.Errorf("unknown TransactionType %q", str)
104104
}
105105
return nil
106106
}
@@ -139,14 +139,6 @@ func (r Resource) MarshalText() ([]byte, error) {
139139
}
140140
}
141141

142-
func (r Resource) MarshalJSON() ([]byte, error) {
143-
result, err := r.MarshalText()
144-
if err != nil {
145-
return nil, err
146-
}
147-
return []byte(`"` + string(result) + `"`), nil
148-
}
149-
150142
type DataAvailabilityMode uint32
151143

152144
const (

‎starknet/transaction_test.go

+26-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package starknet_test
22

33
import (
4+
"encoding/json"
45
"testing"
56

67
"github.com/NethermindEth/juno/starknet"
@@ -10,22 +11,35 @@ import (
1011

1112
func TestUnmarshalExecutionStatus(t *testing.T) {
1213
es := new(starknet.ExecutionStatus)
13-
require.NoError(t, es.UnmarshalJSON([]byte(`"SUCCEEDED"`)))
14-
assert.Equal(t, starknet.Succeeded, *es)
1514

16-
require.NoError(t, es.UnmarshalJSON([]byte(`"REVERTED"`)))
17-
assert.Equal(t, starknet.Reverted, *es)
18-
19-
require.ErrorContains(t, es.UnmarshalJSON([]byte("ABC")), "unknown ExecutionStatus")
15+
cases := map[string]starknet.ExecutionStatus{
16+
"SUCCEEDED": starknet.Succeeded,
17+
"REVERTED": starknet.Reverted,
18+
"REJECTED": starknet.Rejected,
19+
}
20+
for str, expected := range cases {
21+
quotedStr := `"` + str + `"`
22+
require.NoError(t, json.Unmarshal([]byte(quotedStr), es))
23+
assert.Equal(t, expected, *es)
24+
}
25+
26+
require.ErrorContains(t, json.Unmarshal([]byte(`"ABC"`), es), "unknown ExecutionStatus")
2027
}
2128

2229
func TestUnmarshalFinalityStatus(t *testing.T) {
2330
fs := new(starknet.FinalityStatus)
24-
require.NoError(t, fs.UnmarshalJSON([]byte(`"ACCEPTED_ON_L1"`)))
25-
assert.Equal(t, starknet.AcceptedOnL1, *fs)
26-
27-
require.NoError(t, fs.UnmarshalJSON([]byte(`"ACCEPTED_ON_L2"`)))
28-
assert.Equal(t, starknet.AcceptedOnL2, *fs)
2931

30-
require.ErrorContains(t, fs.UnmarshalJSON([]byte("ABC")), "unknown FinalityStatus")
32+
cases := map[string]starknet.FinalityStatus{
33+
"ACCEPTED_ON_L2": starknet.AcceptedOnL2,
34+
"ACCEPTED_ON_L1": starknet.AcceptedOnL1,
35+
"NOT_RECEIVED": starknet.NotReceived,
36+
"RECEIVED": starknet.Received,
37+
}
38+
for str, expected := range cases {
39+
quotedStr := `"` + str + `"`
40+
require.NoError(t, json.Unmarshal([]byte(quotedStr), fs))
41+
assert.Equal(t, expected, *fs)
42+
}
43+
44+
require.ErrorContains(t, json.Unmarshal([]byte(`"ABC"`), fs), "unknown FinalityStatus")
3145
}

0 commit comments

Comments
 (0)
Please sign in to comment.