|
| 1 | +package genesis |
| 2 | + |
| 3 | +import ( |
| 4 | + "encoding/json" |
| 5 | + "testing" |
| 6 | + |
| 7 | + "github.com/stretchr/testify/require" |
| 8 | +) |
| 9 | + |
| 10 | +// TestWithdrawalNetworkValid checks that valid withdrawal networks are detected. |
| 11 | +func TestWithdrawalNetworkValid(t *testing.T) { |
| 12 | + localWithdrawalNetwork := WithdrawalNetwork("local") |
| 13 | + require.True(t, localWithdrawalNetwork.Valid()) |
| 14 | + |
| 15 | + remoteWithdrawalNetwork := WithdrawalNetwork("remote") |
| 16 | + require.True(t, remoteWithdrawalNetwork.Valid()) |
| 17 | + |
| 18 | + invalidWithdrawalNetwork := WithdrawalNetwork("invalid") |
| 19 | + require.False(t, invalidWithdrawalNetwork.Valid()) |
| 20 | +} |
| 21 | + |
| 22 | +// TestWithdrawalNetworkToUint8 checks that withdrawal networks are converted to uint8 correctly. |
| 23 | +func TestWithdrawalNetworkToUint8(t *testing.T) { |
| 24 | + localWithdrawalNetwork := WithdrawalNetwork("local") |
| 25 | + require.EqualValues(t, 1, localWithdrawalNetwork.ToUint8()) |
| 26 | + |
| 27 | + remoteWithdrawalNetwork := WithdrawalNetwork("remote") |
| 28 | + require.EqualValues(t, 0, remoteWithdrawalNetwork.ToUint8()) |
| 29 | + |
| 30 | + invalidWithdrawalNetwork := WithdrawalNetwork("invalid") |
| 31 | + require.EqualValues(t, 1, invalidWithdrawalNetwork.ToUint8()) |
| 32 | +} |
| 33 | + |
| 34 | +// TestWithdrawalNetworkFromUint8 checks that uint8s are converted to withdrawal networks correctly. |
| 35 | +func TestWithdrawalNetworkFromUint8(t *testing.T) { |
| 36 | + require.EqualValues(t, "local", FromUint8(1)) |
| 37 | + require.EqualValues(t, "remote", FromUint8(0)) |
| 38 | + // invalid uint8s are converted to their uint8 string representation |
| 39 | + // this will be caught by the Valid() check |
| 40 | + require.EqualValues(t, "2", FromUint8(2)) |
| 41 | +} |
| 42 | + |
| 43 | +// TestWithdrawalNetworkUnmarshalJSON checks that withdrawal networks are unmarshalled correctly. |
| 44 | +func TestWithdrawalNetworkUnmarshalJSON(t *testing.T) { |
| 45 | + t.Run("LocalInt", func(t *testing.T) { |
| 46 | + var w WithdrawalNetwork |
| 47 | + require.NoError(t, json.Unmarshal([]byte(`1`), &w)) |
| 48 | + require.EqualValues(t, "local", w) |
| 49 | + }) |
| 50 | + |
| 51 | + t.Run("RemoteInt", func(t *testing.T) { |
| 52 | + var w WithdrawalNetwork |
| 53 | + require.NoError(t, json.Unmarshal([]byte(`0`), &w)) |
| 54 | + require.EqualValues(t, "remote", w) |
| 55 | + }) |
| 56 | + |
| 57 | + t.Run("InvalidInt", func(t *testing.T) { |
| 58 | + var w WithdrawalNetwork |
| 59 | + require.Error(t, json.Unmarshal([]byte(`2`), &w)) |
| 60 | + }) |
| 61 | + |
| 62 | + t.Run("LocalString", func(t *testing.T) { |
| 63 | + var w WithdrawalNetwork |
| 64 | + require.NoError(t, json.Unmarshal([]byte(`"local"`), &w)) |
| 65 | + require.EqualValues(t, "local", w) |
| 66 | + }) |
| 67 | + |
| 68 | + t.Run("RemoteString", func(t *testing.T) { |
| 69 | + var w WithdrawalNetwork |
| 70 | + require.NoError(t, json.Unmarshal([]byte(`"remote"`), &w)) |
| 71 | + require.EqualValues(t, "remote", w) |
| 72 | + }) |
| 73 | + |
| 74 | + t.Run("InvalidString", func(t *testing.T) { |
| 75 | + var w WithdrawalNetwork |
| 76 | + require.Error(t, json.Unmarshal([]byte(`"invalid"`), &w)) |
| 77 | + }) |
| 78 | +} |
| 79 | + |
| 80 | +// TestWithdrawalNetworkInlineJSON tests unmarshalling of withdrawal networks in inline JSON. |
| 81 | +func TestWithdrawalNetworkInlineJSON(t *testing.T) { |
| 82 | + type tempNetworks struct { |
| 83 | + BaseFeeVaultWithdrawalNetwork WithdrawalNetwork `json:"baseFeeVaultWithdrawalNetwork"` |
| 84 | + L1FeeVaultWithdrawalNetwork WithdrawalNetwork `json:"l1FeeVaultWithdrawalNetwork"` |
| 85 | + SequencerFeeVaultWithdrawalNetwork WithdrawalNetwork `json:"sequencerFeeVaultWithdrawalNetwork"` |
| 86 | + } |
| 87 | + |
| 88 | + jsonString := `{ |
| 89 | + "baseFeeVaultWithdrawalNetwork": "remote", |
| 90 | + "l1FeeVaultWithdrawalNetwork": "local", |
| 91 | + "sequencerFeeVaultWithdrawalNetwork": "local" |
| 92 | + }` |
| 93 | + |
| 94 | + t.Run("StringMarshaling", func(t *testing.T) { |
| 95 | + decoded := new(tempNetworks) |
| 96 | + require.NoError(t, json.Unmarshal([]byte(jsonString), decoded)) |
| 97 | + |
| 98 | + require.Equal(t, WithdrawalNetwork("remote"), decoded.BaseFeeVaultWithdrawalNetwork) |
| 99 | + require.Equal(t, WithdrawalNetwork("local"), decoded.L1FeeVaultWithdrawalNetwork) |
| 100 | + require.Equal(t, WithdrawalNetwork("local"), decoded.SequencerFeeVaultWithdrawalNetwork) |
| 101 | + |
| 102 | + encoded, err := json.Marshal(decoded) |
| 103 | + require.NoError(t, err) |
| 104 | + require.JSONEq(t, jsonString, string(encoded)) |
| 105 | + }) |
| 106 | + |
| 107 | + t.Run("IntMarshaling", func(t *testing.T) { |
| 108 | + intJsonString := `{ |
| 109 | + "baseFeeVaultWithdrawalNetwork": 0, |
| 110 | + "l1FeeVaultWithdrawalNetwork": 1, |
| 111 | + "sequencerFeeVaultWithdrawalNetwork": 1 |
| 112 | + }` |
| 113 | + |
| 114 | + decoded := new(tempNetworks) |
| 115 | + require.NoError(t, json.Unmarshal([]byte(intJsonString), decoded)) |
| 116 | + |
| 117 | + require.Equal(t, WithdrawalNetwork("remote"), decoded.BaseFeeVaultWithdrawalNetwork) |
| 118 | + require.Equal(t, WithdrawalNetwork("local"), decoded.L1FeeVaultWithdrawalNetwork) |
| 119 | + require.Equal(t, WithdrawalNetwork("local"), decoded.SequencerFeeVaultWithdrawalNetwork) |
| 120 | + |
| 121 | + encoded, err := json.Marshal(decoded) |
| 122 | + require.NoError(t, err) |
| 123 | + require.JSONEq(t, jsonString, string(encoded)) |
| 124 | + }) |
| 125 | +} |
0 commit comments