blvm-node 0.1.2

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
//! Integration tests for Payment REST endpoints
//!
//! Tests REST API endpoints for vaults, pools, and congestion control:
//! - Vault REST endpoints (POST /api/v1/vaults, POST /api/v1/vaults/{id}/unvault, etc.)
//! - Pool REST endpoints (POST /api/v1/pools, POST /api/v1/pools/{id}/join, etc.)
//! - Congestion REST endpoints (POST /api/v1/batches, GET /api/v1/congestion, etc.)

#![cfg(all(feature = "ctv", feature = "bip70-http", feature = "rest-api"))]

use blvm_node::config::PaymentConfig;
use blvm_node::payment::processor::PaymentProcessor;
use blvm_node::payment::state_machine::PaymentStateMachine;
#[cfg(feature = "rest-api")]
use blvm_node::rpc::rest::congestion::handle_congestion_request;
#[cfg(feature = "rest-api")]
use blvm_node::rpc::rest::pool::handle_pool_request;
#[cfg(feature = "rest-api")]
use blvm_node::rpc::rest::vault::handle_vault_request;
use blvm_node::storage::Storage;
use bytes::Bytes;
use http_body_util::BodyExt;
use http_body_util::Full;
use hyper::{Method, Response, StatusCode};
use serde_json::json;
use std::sync::Arc;
use tempfile::TempDir;
use uuid::Uuid;

/// Helper to create test payment state machine
fn create_test_state_machine() -> Arc<PaymentStateMachine> {
    let config = PaymentConfig::default();
    let processor =
        Arc::new(PaymentProcessor::new(config).expect("Failed to create payment processor"));
    Arc::new(PaymentStateMachine::new(processor))
}

/// Helper to create test payment state machine with storage
fn create_test_state_machine_with_storage() -> (Arc<PaymentStateMachine>, TempDir) {
    let temp_dir = TempDir::new().unwrap();
    let storage_path = temp_dir.path();
    let storage = Storage::new(storage_path).expect("Failed to create storage");
    let storage_arc = Arc::new(storage);

    let config = PaymentConfig::default();
    let processor =
        Arc::new(PaymentProcessor::new(config).expect("Failed to create payment processor"));
    let state_machine = Arc::new(
        PaymentStateMachine::with_storage(processor, Some(storage_arc.clone()))
            .with_congestion_manager(
                None,
                Some(storage_arc),
                blvm_node::payment::congestion::BatchConfig::default(),
            ),
    );
    (state_machine, temp_dir)
}

/// Helper to extract response body as JSON
async fn extract_response_body(
    response: Response<Full<Bytes>>,
) -> Result<serde_json::Value, Box<dyn std::error::Error + Send + Sync>> {
    let (_, body) = response.into_parts();
    let body_bytes = body.collect().await?.to_bytes();
    let json: serde_json::Value = serde_json::from_slice(&body_bytes)?;
    Ok(json)
}

// ============================================================================
// Vault REST Tests
// ============================================================================

/// Test POST /api/v1/vaults - Create vault
#[tokio::test]
async fn test_rest_create_vault() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();
    let body = Some(json!({
        "vault_id": "test_vault_rest_1",
        "deposit_amount": 100000,
        "withdrawal_script": "5176a914000000000000000000000000000000000000000087"
    }));

    let response = handle_vault_request(
        state_machine,
        &Method::POST,
        "/api/v1/vaults",
        body,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::OK);
    let body_json = extract_response_body(response).await.unwrap();
    assert_eq!(body_json["data"]["vault_id"], "test_vault_rest_1");
}

/// Test POST /api/v1/vaults - Missing required fields
#[tokio::test]
async fn test_rest_create_vault_missing_fields() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();
    let body = Some(json!({
        "vault_id": "test_vault_rest_2"
        // Missing deposit_amount and withdrawal_script
    }));

    let response = handle_vault_request(
        state_machine,
        &Method::POST,
        "/api/v1/vaults",
        body,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}

/// Test POST /api/v1/vaults/{id}/unvault - Unvault funds
#[tokio::test]
async fn test_rest_unvault_vault() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();

    // First create vault
    let create_body = Some(json!({
        "vault_id": "test_vault_rest_3",
        "deposit_amount": 100000,
        "withdrawal_script": "5176a914000000000000000000000000000000000000000087",
        "config": {
            "require_unvault": true
        }
    }));
    handle_vault_request(
        Arc::clone(&state_machine),
        &Method::POST,
        "/api/v1/vaults",
        create_body,
        request_id.clone(),
    )
    .await;

    // Then unvault
    let unvault_body = Some(json!({
        "unvault_script": "5276a914000000000000000000000000000000000000000087"
    }));

    let response = handle_vault_request(
        state_machine,
        &Method::POST,
        "/api/v1/vaults/test_vault_rest_3/unvault",
        unvault_body,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::OK);
    let body_json = extract_response_body(response).await.unwrap();
    assert_eq!(body_json["data"]["vault_id"], "test_vault_rest_3");
}

/// Test GET /api/v1/vaults/{id} - Get vault state
#[tokio::test]
async fn test_rest_get_vault_state() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();

    // Create vault
    let create_body = Some(json!({
        "vault_id": "test_vault_rest_4",
        "deposit_amount": 100000,
        "withdrawal_script": "5176a914000000000000000000000000000000000000000087"
    }));
    handle_vault_request(
        Arc::clone(&state_machine),
        &Method::POST,
        "/api/v1/vaults",
        create_body,
        request_id.clone(),
    )
    .await;

    // Get vault state
    let response = handle_vault_request(
        state_machine,
        &Method::GET,
        "/api/v1/vaults/test_vault_rest_4",
        None,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::OK);
    let body_json = extract_response_body(response).await.unwrap();
    assert_eq!(body_json["data"]["vault_id"], "test_vault_rest_4");
}

// ============================================================================
// Pool REST Tests
// ============================================================================

/// Test POST /api/v1/pools - Create pool
#[tokio::test]
async fn test_rest_create_pool() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();
    let body = Some(json!({
        "pool_id": "test_pool_rest_1",
        "initial_participants": [
            {
                "participant_id": "participant_1",
                "contribution": 10000,
                "script_pubkey": "5176a914000000000000000000000000000000000000000087"
            },
            {
                "participant_id": "participant_2",
                "contribution": 20000,
                "script_pubkey": "5276a914000000000000000000000000000000000000000087"
            }
        ]
    }));

    let response = handle_pool_request(
        state_machine,
        &Method::POST,
        "/api/v1/pools",
        body,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::OK);
    let body_json = extract_response_body(response).await.unwrap();
    assert_eq!(body_json["data"]["pool_id"], "test_pool_rest_1");
}

/// Test POST /api/v1/pools/{id}/join - Join pool
#[tokio::test]
async fn test_rest_join_pool() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();

    // Create pool
    let create_body = Some(json!({
        "pool_id": "test_pool_rest_2",
        "initial_participants": [
            {
                "participant_id": "participant_1",
                "contribution": 10000,
                "script_pubkey": "5176a914000000000000000000000000000000000000000087"
            }
        ]
    }));
    handle_pool_request(
        Arc::clone(&state_machine),
        &Method::POST,
        "/api/v1/pools",
        create_body,
        request_id.clone(),
    )
    .await;

    // Join pool
    let join_body = Some(json!({
        "participant_id": "participant_2",
        "contribution": 20000,
        "script_pubkey": "5276a914000000000000000000000000000000000000000087"
    }));

    let response = handle_pool_request(
        state_machine,
        &Method::POST,
        "/api/v1/pools/test_pool_rest_2/join",
        join_body,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::OK);
    let body_json = extract_response_body(response).await.unwrap();
    assert_eq!(body_json["data"]["pool_id"], "test_pool_rest_2");
}

/// Test GET /api/v1/pools/{id} - Get pool state
#[tokio::test]
async fn test_rest_get_pool_state() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();

    // Create pool
    let create_body = Some(json!({
        "pool_id": "test_pool_rest_3",
        "initial_participants": [
            {
                "participant_id": "participant_1",
                "contribution": 10000,
                "script_pubkey": "5176a914000000000000000000000000000000000000000087"
            }
        ]
    }));
    handle_pool_request(
        Arc::clone(&state_machine),
        &Method::POST,
        "/api/v1/pools",
        create_body,
        request_id.clone(),
    )
    .await;

    // Get pool state
    let response = handle_pool_request(
        state_machine,
        &Method::GET,
        "/api/v1/pools/test_pool_rest_3",
        None,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::OK);
    let body_json = extract_response_body(response).await.unwrap();
    assert_eq!(body_json["data"]["pool_id"], "test_pool_rest_3");
}

// ============================================================================
// Congestion REST Tests
// ============================================================================

/// Test POST /api/v1/batches - Create batch
#[tokio::test]
async fn test_rest_create_batch() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();
    let body = Some(json!({
        "batch_id": "test_batch_rest_1",
        "target_fee_rate": 10
    }));

    let response = handle_congestion_request(
        state_machine,
        &Method::POST,
        "/api/v1/batches",
        body,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::OK);
    let body_json = extract_response_body(response).await.unwrap();
    assert_eq!(body_json["data"]["batch_id"], "test_batch_rest_1");
}

/// Test GET /api/v1/batches/{id} - Get batch state
#[tokio::test]
async fn test_rest_get_batch_state() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();

    // Create batch
    let create_body = Some(json!({
        "batch_id": "test_batch_rest_2"
    }));
    handle_congestion_request(
        Arc::clone(&state_machine),
        &Method::POST,
        "/api/v1/batches",
        create_body,
        request_id.clone(),
    )
    .await;

    // Get batch state
    let response = handle_congestion_request(
        state_machine,
        &Method::GET,
        "/api/v1/batches/test_batch_rest_2",
        None,
        request_id.clone(),
    )
    .await;

    assert_eq!(response.status(), StatusCode::OK);
    let body_json = extract_response_body(response).await.unwrap();
    assert_eq!(body_json["data"]["batch_id"], "test_batch_rest_2");
}

/// Test GET /api/v1/congestion - Get congestion metrics
#[tokio::test]
async fn test_rest_get_congestion_metrics() {
    let (state_machine, _temp_dir) = create_test_state_machine_with_storage();
    let request_id = Uuid::new_v4().to_string();

    // Note: get_congestion_metrics requires mempool manager
    // Without mempool, it will return an error
    let response = handle_congestion_request(
        state_machine,
        &Method::GET,
        "/api/v1/congestion",
        None,
        request_id.clone(),
    )
    .await;

    // Should return error when mempool not available
    assert_eq!(response.status(), StatusCode::INTERNAL_SERVER_ERROR);
}