1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
use evmc_sys as ffi;
pub type Address = ffi::evmc_address;
pub type Bytes32 = ffi::evmc_bytes32;
pub type Uint256 = ffi::evmc_uint256be;
pub type MessageKind = ffi::evmc_call_kind;
pub type MessageFlags = ffi::evmc_flags;
pub type Capabilities = ffi::evmc_capabilities;
pub type StatusCode = ffi::evmc_status_code;
pub type StorageStatus = ffi::evmc_storage_status;
pub type Revision = ffi::evmc_revision;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn address_smoke_test() {
let a = ffi::evmc_address::default();
let b = Address::default();
assert_eq!(a.clone(), b.clone());
}
#[test]
fn bytes32_smoke_test() {
let a = ffi::evmc_bytes32::default();
let b = Bytes32::default();
assert_eq!(a.clone(), b.clone());
}
#[test]
fn uint26be_smoke_test() {
let a = ffi::evmc_uint256be::default();
let b = Uint256::default();
assert_eq!(a.clone(), b.clone());
}
#[test]
fn message_kind() {
assert_eq!(MessageKind::EVMC_CALL, ffi::evmc_call_kind::EVMC_CALL);
assert_eq!(
MessageKind::EVMC_CALLCODE,
ffi::evmc_call_kind::EVMC_CALLCODE
);
assert_eq!(
MessageKind::EVMC_DELEGATECALL,
ffi::evmc_call_kind::EVMC_DELEGATECALL
);
assert_eq!(MessageKind::EVMC_CREATE, ffi::evmc_call_kind::EVMC_CREATE);
}
#[test]
fn message_flags() {
assert_eq!(MessageFlags::EVMC_STATIC, ffi::evmc_flags::EVMC_STATIC);
}
#[test]
fn capabilities() {
assert_eq!(
Capabilities::EVMC_CAPABILITY_EVM1,
ffi::evmc_capabilities::EVMC_CAPABILITY_EVM1
);
assert_eq!(
Capabilities::EVMC_CAPABILITY_EWASM,
ffi::evmc_capabilities::EVMC_CAPABILITY_EWASM
);
assert_eq!(
Capabilities::EVMC_CAPABILITY_PRECOMPILES,
ffi::evmc_capabilities::EVMC_CAPABILITY_PRECOMPILES
);
}
#[test]
fn status_code() {
assert_eq!(
StatusCode::EVMC_SUCCESS,
ffi::evmc_status_code::EVMC_SUCCESS
);
assert_eq!(
StatusCode::EVMC_FAILURE,
ffi::evmc_status_code::EVMC_FAILURE
);
}
#[test]
fn storage_status() {
assert_eq!(
StorageStatus::EVMC_STORAGE_UNCHANGED,
ffi::evmc_storage_status::EVMC_STORAGE_UNCHANGED
);
assert_eq!(
StorageStatus::EVMC_STORAGE_MODIFIED,
ffi::evmc_storage_status::EVMC_STORAGE_MODIFIED
);
}
#[test]
fn revision() {
assert_eq!(Revision::EVMC_FRONTIER, ffi::evmc_revision::EVMC_FRONTIER);
assert_eq!(Revision::EVMC_ISTANBUL, ffi::evmc_revision::EVMC_ISTANBUL);
}
}