|
4 | 4 |
|
5 | 5 | #[cfg(feature = "TODO")]
|
6 | 6 | use bitcoin::address::{Address, NetworkChecked};
|
| 7 | +#[cfg(any(feature = "0_17_1", feature = "0_18_1"))] |
7 | 8 | use bitcoin::Amount;
|
8 | 9 | use integration_test::{Node, NodeExt as _, Wallet};
|
| 10 | +#[cfg(any(feature = "0_17_1", feature = "0_18_1"))] |
9 | 11 | use node::AddressType;
|
10 | 12 |
|
11 | 13 | #[test]
|
@@ -43,9 +45,6 @@ pub fn bump_fee() {
|
43 | 45 | pub fn create_wallet() {
|
44 | 46 | // Implicitly tests `createwallet` because we create the default wallet.
|
45 | 47 | let _ = Node::with_wallet(Wallet::Default, &[]);
|
46 |
| - |
47 |
| - // TODO: We are not currently testing the `warnings` field. This field was changed from an |
48 |
| - // optional `String` to an optional vector of strings in v25. Needs testing. |
49 | 48 | }
|
50 | 49 |
|
51 | 50 | #[cfg(any(feature = "0_17_1", feature = "0_18_1"))]
|
@@ -188,19 +187,33 @@ fn get_transaction() {
|
188 | 187 |
|
189 | 188 | #[test]
|
190 | 189 | fn load_wallet() {
|
191 |
| - // Implicitly test loadwalled because we load the default wallet. |
192 |
| - let _ = Node::with_wallet(Wallet::Default, &[]); |
| 190 | + create_load_unload_wallet(); |
193 | 191 | }
|
194 | 192 |
|
195 |
| -#[cfg(any(feature = "0_17_1", feature = "0_18_1"))] |
196 | 193 | #[test]
|
197 |
| -#[cfg(not(any(feature = "v17", feature = "v18", feature = "v19", feature = "v20")))] |
198 | 194 | fn unload_wallet() {
|
| 195 | + create_load_unload_wallet(); |
| 196 | +} |
| 197 | + |
| 198 | +fn create_load_unload_wallet() { |
199 | 199 | let node = Node::with_wallet(Wallet::None, &[]);
|
| 200 | + |
200 | 201 | let wallet = format!("wallet-{}", rand::random::<u32>()).to_string();
|
201 | 202 | node.client.create_wallet(&wallet).expect("failed to create wallet");
|
202 |
| - let json = node.client.unload_wallet(&wallet).expect("unloadwallet"); |
203 |
| - assert!(json.into_model().is_ok()) |
| 203 | + |
| 204 | + // Upto version 20 Core returns null for `unloadwallet`. |
| 205 | + #[cfg(any(feature = "v17", feature = "v18", feature = "v19", feature = "v20"))] |
| 206 | + let _ = node.client.unload_wallet(&wallet).expect("unloadwallet"); |
| 207 | + |
| 208 | + // From version 21 Core returns warnings for `unloadwallet`. |
| 209 | + #[cfg(all(not(feature = "v17"), not(feature = "v18"), not(feature = "v19"), not(feature = "v20")))] |
| 210 | + { |
| 211 | + let json = node.client.unload_wallet(&wallet).expect("unloadwallet"); |
| 212 | + let _ = json.into_model(); |
| 213 | + } |
| 214 | + |
| 215 | + let json = node.client.load_wallet(&wallet).expect("loadwallet"); |
| 216 | + let _ = json.into_model(); |
204 | 217 | }
|
205 | 218 |
|
206 | 219 | #[cfg(any(feature = "0_17_1", feature = "0_18_1"))]
|
|
0 commit comments