blvm-node 0.1.9

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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
//! Comprehensive tests for blockchain API module

use blvm_node::module::api::blockchain::BlockchainApi;
use blvm_node::storage::Storage;
use blvm_protocol::{tx_inputs, tx_outputs};
use blvm_protocol::{
    Block, BlockHeader, OutPoint, Transaction, TransactionInput, TransactionOutput, UTXO,
};
use std::sync::Arc;
use tempfile::TempDir;

fn create_test_storage() -> (TempDir, Arc<Storage>) {
    let temp_dir = TempDir::new().unwrap();
    let storage = Arc::new(Storage::new(temp_dir.path()).unwrap());
    (temp_dir, storage)
}

fn create_test_block(height: u64) -> Block {
    let mut prev_hash = [0u8; 32];
    prev_hash[0] = (height % 256) as u8;

    Block {
        header: BlockHeader {
            version: 1,
            prev_block_hash: prev_hash,
            merkle_root: [0u8; 32],
            timestamp: 1231006505 + height,
            bits: 0x1d00ffff,
            nonce: 0,
        },
        transactions: vec![].into_boxed_slice(),
    }
}

#[tokio::test]
async fn test_blockchain_api_creation() {
    let (_temp_dir, storage) = create_test_storage();
    let _api = BlockchainApi::new(storage);
    // Should create successfully
    assert!(true);
}

#[tokio::test]
async fn test_get_block_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store a block
    let block = create_test_block(0);
    let block_hash = storage.blocks().get_block_hash(&block);
    storage.blocks().store_block(&block).unwrap();
    storage.blocks().store_height(0, &block_hash).unwrap();

    // Retrieve it
    let result = api.get_block(&block_hash).await;
    assert!(result.is_ok());
    let retrieved = result.unwrap();
    assert!(retrieved.is_some());
    assert_eq!(retrieved.unwrap().header.version, block.header.version);
}

#[tokio::test]
async fn test_get_block_header_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store a block
    let block = create_test_block(0);
    let block_hash = storage.blocks().get_block_hash(&block);
    storage.blocks().store_block(&block).unwrap();

    // Retrieve header
    let result = api.get_block_header(&block_hash).await;
    assert!(result.is_ok());
    let retrieved = result.unwrap();
    assert!(retrieved.is_some());
    assert_eq!(retrieved.unwrap().version, block.header.version);
}

#[tokio::test]
async fn test_get_block_by_height_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store a block at height 0
    let block = create_test_block(0);
    let block_hash = storage.blocks().get_block_hash(&block);
    storage.blocks().store_block(&block).unwrap();
    storage.blocks().store_height(0, &block_hash).unwrap();

    // Retrieve by height
    let result = api.get_block_by_height(0).await;
    assert!(result.is_ok());
    let retrieved = result.unwrap();
    assert!(retrieved.is_some());
    assert_eq!(retrieved.unwrap().header.version, block.header.version);
}

#[tokio::test]
async fn test_get_hash_by_height_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store a block at height 0
    let block = create_test_block(0);
    let block_hash = storage.blocks().get_block_hash(&block);
    storage.blocks().store_block(&block).unwrap();
    storage.blocks().store_height(0, &block_hash).unwrap();

    // Retrieve hash by height
    let result = api.get_hash_by_height(0).await;
    assert!(result.is_ok());
    let retrieved = result.unwrap();
    assert!(retrieved.is_some());
    assert_eq!(retrieved.unwrap(), block_hash);
}

#[tokio::test]
async fn test_get_height_by_hash_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store a block at height 0
    let block = create_test_block(0);
    let block_hash = storage.blocks().get_block_hash(&block);
    storage.blocks().store_block(&block).unwrap();
    storage.blocks().store_height(0, &block_hash).unwrap();

    // Retrieve height by hash
    let result = api.get_height_by_hash(&block_hash).await;
    assert!(result.is_ok());
    let retrieved = result.unwrap();
    assert!(retrieved.is_some());
    assert_eq!(retrieved.unwrap(), 0);
}

#[tokio::test]
async fn test_get_blocks_by_height_range_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store multiple blocks
    for height in 0..5 {
        let block = create_test_block(height);
        let block_hash = storage.blocks().get_block_hash(&block);
        storage.blocks().store_block(&block).unwrap();
        storage.blocks().store_height(height, &block_hash).unwrap();
    }

    // Retrieve range
    let result = api.get_blocks_by_height_range(0, 4).await;
    assert!(result.is_ok());
    let blocks = result.unwrap();
    assert_eq!(blocks.len(), 5);
}

#[tokio::test]
async fn test_get_block_metadata_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store a block
    let block = create_test_block(0);
    let block_hash = storage.blocks().get_block_hash(&block);
    storage.blocks().store_block(&block).unwrap();

    // Retrieve metadata
    let result = api.get_block_metadata(&block_hash).await;
    assert!(result.is_ok());
    let retrieved = result.unwrap();
    assert!(retrieved.is_some());
    assert_eq!(retrieved.unwrap().n_tx, 0); // Empty transactions
}

#[tokio::test]
async fn test_has_block_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store a block
    let block = create_test_block(0);
    let block_hash = storage.blocks().get_block_hash(&block);
    storage.blocks().store_block(&block).unwrap();

    // Check existence
    let result = api.has_block(&block_hash).await;
    assert!(result.is_ok());
    assert!(result.unwrap());

    // Check non-existent block
    let fake_hash = [0xFFu8; 32];
    let result = api.has_block(&fake_hash).await;
    assert!(result.is_ok());
    assert!(!result.unwrap());
}

#[tokio::test]
async fn test_block_count_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Initially empty
    let result = api.block_count().await;
    assert!(result.is_ok());
    assert_eq!(result.unwrap(), 0);

    // Store some blocks
    for height in 0..3 {
        let block = create_test_block(height);
        storage.blocks().store_block(&block).unwrap();
    }

    // Check count
    let result = api.block_count().await;
    assert!(result.is_ok());
    assert_eq!(result.unwrap(), 3);
}

#[tokio::test]
async fn test_get_recent_headers_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Store some blocks with heights
    for height in 0..5 {
        let block = create_test_block(height);
        let block_hash = storage.blocks().get_block_hash(&block);
        storage.blocks().store_block(&block).unwrap();
        storage.blocks().store_height(height, &block_hash).unwrap();
        storage
            .blocks()
            .store_recent_header(height, &block.header)
            .unwrap();
    }

    // Retrieve recent headers
    let result = api.get_recent_headers(3).await;
    assert!(result.is_ok());
    let headers = result.unwrap();
    assert!(headers.len() <= 3);
}

#[tokio::test]
async fn test_get_transaction_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Create and store a transaction
    let tx = Transaction {
        version: 1,
        inputs: tx_inputs![TransactionInput {
            prevout: OutPoint {
                hash: [0u8; 32],
                index: 0,
            },
            script_sig: vec![],
            sequence: 0xFFFFFFFF,
        }],
        outputs: tx_outputs![TransactionOutput {
            value: 1000,
            script_pubkey: vec![0x51].into(), // OP_1
        }],
        lock_time: 0,
    };

    let tx_hash = blvm_protocol::block::calculate_tx_id(&tx);
    let block_hash = [0u8; 32];
    storage
        .transactions()
        .index_transaction(&tx, &block_hash, 0, 0)
        .unwrap();

    // Retrieve transaction
    let result = api.get_transaction(&tx_hash).await;
    assert!(result.is_ok());
    let retrieved = result.unwrap();
    assert!(retrieved.is_some());
    assert_eq!(retrieved.unwrap().version, tx.version);
}

#[tokio::test]
async fn test_has_transaction_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Create and store a transaction
    let tx = Transaction {
        version: 1,
        inputs: tx_inputs![],
        outputs: tx_outputs![TransactionOutput {
            value: 1000,
            script_pubkey: vec![0x51].into(),
        }],
        lock_time: 0,
    };

    let tx_hash = blvm_protocol::block::calculate_tx_id(&tx);
    let block_hash = [0u8; 32];
    storage
        .transactions()
        .index_transaction(&tx, &block_hash, 0, 0)
        .unwrap();

    // Check existence
    let result = api.has_transaction(&tx_hash).await;
    assert!(result.is_ok());
    assert!(result.unwrap());

    // Check non-existent transaction
    let fake_hash = [0xFFu8; 32];
    let result = api.has_transaction(&fake_hash).await;
    assert!(result.is_ok());
    assert!(!result.unwrap());
}

#[tokio::test]
async fn test_get_utxo_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Create and store a UTXO
    let outpoint = OutPoint {
        hash: [0x42u8; 32],
        index: 0,
    };

    let utxo = UTXO {
        value: 1000000,
        script_pubkey: vec![0x51].into(), // OP_1
        height: 0,
        is_coinbase: false,
    };

    storage.utxos().add_utxo(&outpoint, &utxo).unwrap();

    // Retrieve UTXO
    let result = api.get_utxo(&outpoint).await;
    assert!(result.is_ok());
    let retrieved = result.unwrap();
    assert!(retrieved.is_some());
    assert_eq!(retrieved.unwrap().value, utxo.value);
}

#[tokio::test]
async fn test_has_utxo_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Create and store a UTXO
    let outpoint = OutPoint {
        hash: [0x42u8; 32],
        index: 0,
    };

    let utxo = UTXO {
        value: 1000000,
        script_pubkey: vec![0x51].into(),
        height: 0,
        is_coinbase: false,
    };

    storage.utxos().add_utxo(&outpoint, &utxo).unwrap();

    // Check existence
    let result = api.has_utxo(&outpoint).await;
    assert!(result.is_ok());
    assert!(result.unwrap());

    // Check non-existent UTXO
    let fake_outpoint = OutPoint {
        hash: [0xFFu8; 32],
        index: 999,
    };
    let result = api.has_utxo(&fake_outpoint).await;
    assert!(result.is_ok());
    assert!(!result.unwrap());
}

#[tokio::test]
async fn test_get_chain_info_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Initialize chain with genesis
    let genesis_header = BlockHeader {
        version: 1,
        prev_block_hash: [0u8; 32],
        merkle_root: [0u8; 32],
        timestamp: 1231006505,
        bits: 0x1d00ffff,
        nonce: 0,
    };

    storage.chain().initialize(&genesis_header).unwrap();

    // Retrieve chain info
    let result = api.get_chain_info().await;
    assert!(result.is_ok());
    let chain_info = result.unwrap();
    assert!(chain_info.is_some());
    assert_eq!(chain_info.unwrap().height, 0);
}

#[tokio::test]
async fn test_get_chain_tip_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Initialize chain with genesis
    let genesis_header = BlockHeader {
        version: 1,
        prev_block_hash: [0u8; 32],
        merkle_root: [0u8; 32],
        timestamp: 1231006505,
        bits: 0x1d00ffff,
        nonce: 0,
    };

    storage.chain().initialize(&genesis_header).unwrap();

    // Retrieve chain tip
    let result = api.get_chain_tip().await;
    assert!(result.is_ok());
    let tip = result.unwrap();
    // Tip should be genesis hash - calculate it using storage method
    let genesis_block = Block {
        header: genesis_header.clone(),
        transactions: vec![].into_boxed_slice(),
    };
    let genesis_hash = storage.blocks().get_block_hash(&genesis_block);
    assert_eq!(tip, genesis_hash);
}

#[tokio::test]
async fn test_get_block_height_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Initialize chain with genesis
    let genesis_header = BlockHeader {
        version: 1,
        prev_block_hash: [0u8; 32],
        merkle_root: [0u8; 32],
        timestamp: 1231006505,
        bits: 0x1d00ffff,
        nonce: 0,
    };

    storage.chain().initialize(&genesis_header).unwrap();

    // Retrieve block height
    let result = api.get_block_height().await;
    assert!(result.is_ok());
    assert_eq!(result.unwrap(), 0);
}

#[tokio::test]
async fn test_get_chain_params_with_data() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(Arc::clone(&storage));

    // Initialize chain with genesis
    let genesis_header = BlockHeader {
        version: 1,
        prev_block_hash: [0u8; 32],
        merkle_root: [0u8; 32],
        timestamp: 1231006505,
        bits: 0x1d00ffff,
        nonce: 0,
    };

    storage.chain().initialize(&genesis_header).unwrap();

    // Retrieve chain params
    let result = api.get_chain_params().await;
    assert!(result.is_ok());
    let params = result.unwrap();
    assert!(params.is_some());
    assert_eq!(params.unwrap().network, "mainnet");
}

#[tokio::test]
async fn test_concurrent_block_queries() {
    let (_temp_dir, storage) = create_test_storage();
    let api = Arc::new(BlockchainApi::new(Arc::clone(&storage)));

    // Store a block
    let block = create_test_block(0);
    let block_hash = storage.blocks().get_block_hash(&block);
    storage.blocks().store_block(&block).unwrap();
    storage.blocks().store_height(0, &block_hash).unwrap();

    // Make concurrent queries
    let mut handles = vec![];
    for _ in 0..10 {
        let api_clone = Arc::clone(&api);
        let hash = block_hash;
        handles.push(tokio::spawn(
            async move { api_clone.get_block(&hash).await },
        ));
    }

    // Wait for all
    let results: Vec<_> = futures::future::join_all(handles).await;

    // All should succeed
    for result in results {
        assert!(result.is_ok());
        let block_result = result.unwrap();
        assert!(block_result.is_ok());
        assert!(block_result.unwrap().is_some());
    }
}

#[tokio::test]
async fn test_error_handling_invalid_height_range() {
    let (_temp_dir, storage) = create_test_storage();
    let api = BlockchainApi::new(storage);

    // Try to get blocks with invalid range (end < start)
    let result = api.get_blocks_by_height_range(10, 5).await;
    assert!(result.is_ok());
    // Should return empty vector, not error
    assert!(result.unwrap().is_empty());
}