miden-client-integration-tests 0.15.5

Integration Tests for the miden client library
Documentation
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
use std::collections::BTreeMap;

use anyhow::{Context, Result};
use miden_client::account::{AccountType, build_wallet_id};
use miden_client::asset::{Asset, FungibleAsset};
use miden_client::auth::RPO_FALCON_SCHEME_ID;
use miden_client::keystore::Keystore;
use miden_client::note::{
    BlockNumber,
    NoteAttachment,
    NoteAttachmentScheme,
    NoteAttachments,
    NoteFile,
    NoteType,
    P2idNote,
};
use miden_client::rpc::{AcceptHeaderError, RpcError};
use miden_client::store::{InputNoteState, NoteFilter, TransactionFilter};
use miden_client::sync::NoteTagSource;
use miden_client::testing::common::*;
use miden_client::transaction::{
    InputNote,
    PaymentNoteDescription,
    TransactionRequestBuilder,
    TransactionStatus,
};
use miden_client::{ClientError, EMPTY_WORD, Word};
use rand::RngCore;
use tracing::info;

use crate::tests::config::ClientConfig;

// TESTS
// ================================================================================================

pub async fn test_onchain_notes_flow(client_config: ClientConfig) -> Result<()> {
    // Client 1 is an private faucet which will mint an onchain note for client 2
    let (mut client_1, keystore_1) = client_config.clone().into_client().await?;
    // Client 2 is an private account which will consume the note that it will sync from the node
    let (mut client_2, keystore_2) = ClientConfig::default()
        .with_rpc_endpoint(client_config.rpc_endpoint())
        .into_client()
        .await?;
    // Client 3 will be transferred part of the assets by client 2's account
    let (mut client_3, keystore_3) = ClientConfig::default()
        .with_rpc_endpoint(client_config.rpc_endpoint())
        .into_client()
        .await?;
    wait_for_node(&mut client_3).await;

    // Create faucet account
    let (faucet_account, _) = insert_new_fungible_faucet(
        &mut client_1,
        AccountType::Private,
        &keystore_1,
        RPO_FALCON_SCHEME_ID,
    )
    .await?;
    // Create regular accounts
    let (basic_wallet_1, ..) =
        insert_new_wallet(&mut client_2, AccountType::Private, &keystore_2, RPO_FALCON_SCHEME_ID)
            .await?;

    // Create regular accounts
    let (basic_wallet_2, ..) =
        insert_new_wallet(&mut client_3, AccountType::Private, &keystore_3, RPO_FALCON_SCHEME_ID)
            .await?;
    client_1.sync_state().await?;
    client_2.sync_state().await?;

    let tx_request = TransactionRequestBuilder::new().build_mint_fungible_asset(
        FungibleAsset::new(faucet_account.id(), MINT_AMOUNT)?,
        basic_wallet_1.id(),
        NoteType::Public,
        client_1.rng(),
    )?;
    let note = tx_request
        .expected_output_own_notes()
        .pop()
        .with_context(|| "no expected output notes found in onchain transaction from faucet")?
        .clone();
    execute_tx_and_sync(&mut client_1, faucet_account.id(), tx_request).await?;

    // Client 2's account should receive the note here:
    client_2.sync_state().await?;

    // Assert that the note is the same
    let received_note: InputNote = client_2
        .get_input_note(note.id())
        .await?
        .with_context(|| format!("Note {} not found in client_2", note.id()))?
        .try_into()?;
    assert_eq!(received_note.note().id(), note.id());

    // TODO: revisit this.
    // The received note has the uri of the note stored in the node, so it may not match with the
    // original note.
    // assert_eq!(received_note.note(), &note);

    // consume the note
    let tx_id =
        consume_notes(&mut client_2, basic_wallet_1.id(), &[received_note.note().clone()]).await;
    wait_for_tx(&mut client_2, tx_id).await?;
    assert_account_has_single_asset(
        &client_2,
        basic_wallet_1.id(),
        faucet_account.id(),
        MINT_AMOUNT,
    )
    .await;

    let p2id_asset = FungibleAsset::new(faucet_account.id(), TRANSFER_AMOUNT)?;
    let tx_request = TransactionRequestBuilder::new().build_pay_to_id(
        PaymentNoteDescription::new(
            vec![p2id_asset.into()],
            basic_wallet_1.id(),
            basic_wallet_2.id(),
        ),
        NoteType::Public,
        client_2.rng(),
    )?;
    execute_tx_and_sync(&mut client_2, basic_wallet_1.id(), tx_request).await?;

    // Create a note for client 3 that is already consumed before syncing
    let tx_request = TransactionRequestBuilder::new().build_pay_to_id(
        PaymentNoteDescription::new(
            vec![p2id_asset.into()],
            basic_wallet_1.id(),
            basic_wallet_2.id(),
        )
        .with_reclaim_height(1.into()),
        NoteType::Public,
        client_2.rng(),
    )?;
    let note = tx_request
        .expected_output_own_notes()
        .pop()
        .with_context(|| "no expected output notes found in onchain transaction from basic wallet")?
        .clone();
    execute_tx_and_sync(&mut client_2, basic_wallet_1.id(), tx_request).await?;

    let tx_request = TransactionRequestBuilder::new().build_consume_notes(vec![note.clone()])?;
    execute_tx_and_sync(&mut client_2, basic_wallet_1.id(), tx_request).await?;

    // sync client 3 (basic account 2)
    client_3.sync_state().await?;

    // client 3 should have two notes, the one directed to them and the one consumed by client 2
    // (which should come from the tag added)
    assert_eq!(client_3.get_input_notes(NoteFilter::Committed).await?.len(), 1);
    assert_eq!(client_3.get_input_notes(NoteFilter::Consumed).await?.len(), 1);

    let note = client_3
        .get_input_notes(NoteFilter::Committed)
        .await?
        .first()
        .with_context(|| "no committed input notes found")?
        .clone()
        .try_into()?;

    let tx_id = consume_notes(&mut client_3, basic_wallet_2.id(), &[note]).await;
    wait_for_tx(&mut client_3, tx_id).await?;
    assert_account_has_single_asset(
        &client_3,
        basic_wallet_2.id(),
        faucet_account.id(),
        TRANSFER_AMOUNT,
    )
    .await;
    Ok(())
}

pub async fn test_onchain_accounts(client_config: ClientConfig) -> Result<()> {
    let (mut client_1, keystore_1) = client_config.clone().into_client().await?;
    let (mut client_2, keystore_2) = ClientConfig::default()
        .with_rpc_endpoint(client_config.rpc_endpoint())
        .into_client()
        .await?;
    wait_for_node(&mut client_2).await;

    let (faucet_account_header, secret_key) = insert_new_fungible_faucet(
        &mut client_1,
        AccountType::Public,
        &keystore_1,
        RPO_FALCON_SCHEME_ID,
    )
    .await?;

    let (first_regular_account, ..) =
        insert_new_wallet(&mut client_1, AccountType::Private, &keystore_1, RPO_FALCON_SCHEME_ID)
            .await?;

    let (second_client_first_regular_account, ..) =
        insert_new_wallet(&mut client_2, AccountType::Private, &keystore_2, RPO_FALCON_SCHEME_ID)
            .await?;

    let target_account_id = first_regular_account.id();
    let second_client_target_account_id = second_client_first_regular_account.id();
    let faucet_account_id = faucet_account_header.id();

    keystore_2.add_key(&secret_key, faucet_account_id).await?;
    client_2.add_account(&faucet_account_header, false).await?;

    // First Mint necessary token
    info!(account_id = %target_account_id, faucet_id = %faucet_account_id, "First client minting note");
    client_1.sync_state().await?;
    let (tx_id, note) =
        mint_note(&mut client_1, target_account_id, faucet_account_id, NoteType::Private).await;
    wait_for_tx(&mut client_1, tx_id).await?;

    // Update the state in the other client and ensure the onchain faucet commitment is consistent
    // between clients
    client_2.sync_state().await?;

    let (client_1_faucet, _) = client_1
        .account_reader(faucet_account_header.id())
        .header()
        .await
        .context("failed to find faucet account in client 1 after sync")?;
    let (client_2_faucet, _) = client_2
        .account_reader(faucet_account_header.id())
        .header()
        .await
        .context("failed to find faucet account in client 2 after sync")?;

    assert_eq!(client_1_faucet.to_commitment(), client_2_faucet.to_commitment());

    // Now use the faucet in the second client to mint to its own account
    info!(account_id = %second_client_target_account_id, faucet_id = %faucet_account_id, "Second client minting note");
    let (tx_id, second_client_note) = mint_note(
        &mut client_2,
        second_client_target_account_id,
        faucet_account_id,
        NoteType::Private,
    )
    .await;
    wait_for_tx(&mut client_2, tx_id).await?;

    // Update the state in the other client and ensure the onchain faucet commitment is consistent
    // between clients
    client_1.sync_state().await?;

    info!(account_id = %target_account_id, "Consuming note on first client");
    let tx_id = consume_notes(&mut client_1, target_account_id, &[note]).await;
    wait_for_tx(&mut client_1, tx_id).await?;
    assert_account_has_single_asset(&client_1, target_account_id, faucet_account_id, MINT_AMOUNT)
        .await;
    let tx_id =
        consume_notes(&mut client_2, second_client_target_account_id, &[second_client_note]).await;
    wait_for_tx(&mut client_2, tx_id).await?;
    assert_account_has_single_asset(
        &client_2,
        second_client_target_account_id,
        faucet_account_id,
        MINT_AMOUNT,
    )
    .await;

    let (client_1_faucet, _) =
        client_1
            .account_reader(faucet_account_header.id())
            .header()
            .await
            .context("failed to find faucet account in client 1 after consume transactions")?;
    let (client_2_faucet, _) =
        client_2
            .account_reader(faucet_account_header.id())
            .header()
            .await
            .context("failed to find faucet account in client 2 after consume transactions")?;

    assert_eq!(client_1_faucet.to_commitment(), client_2_faucet.to_commitment());

    // Now we'll try to do a p2id transfer from an account of one client to the other one
    let from_account_id = target_account_id;
    let to_account_id = second_client_target_account_id;

    // get initial balances
    let from_account_balance = client_1
        .account_reader(from_account_id)
        .get_balance(faucet_account_id)
        .await
        .context("failed to find from account for balance check")?;
    let to_account_balance = client_2
        .account_reader(to_account_id)
        .get_balance(faucet_account_id)
        .await
        .context("failed to find to account for balance check")?;

    let asset = FungibleAsset::new(faucet_account_id, TRANSFER_AMOUNT)?;

    info!(from = %from_account_id, to = %to_account_id, amount = TRANSFER_AMOUNT, "Running P2ID transaction");
    let tx_request = TransactionRequestBuilder::new().build_pay_to_id(
        PaymentNoteDescription::new(vec![Asset::Fungible(asset)], from_account_id, to_account_id),
        NoteType::Public,
        client_1.rng(),
    )?;
    execute_tx_and_sync(&mut client_1, from_account_id, tx_request).await?;

    // sync on second client until we receive the note
    info!("Syncing state on second client");
    client_2.sync_state().await?;
    let notes = client_2.get_input_notes(NoteFilter::Committed).await?;

    //Import the note on the first client so that we can later check its consumer account
    let note_id = notes[0].id().expect("committed note has metadata so id() is Some");
    client_1.import_notes(&[NoteFile::NoteId(note_id)]).await?;

    // Consume the note
    info!(note_id = %note_id, account_id = %to_account_id, "Consuming note on second client");
    let tx_request = TransactionRequestBuilder::new()
        .build_consume_notes(vec![notes[0].clone().try_into().unwrap()])?;
    execute_tx_and_sync(&mut client_2, to_account_id, tx_request).await?;

    // sync on first client
    info!("Syncing state on first client");
    client_1.sync_state().await?;

    // Check that the client doesn't know who consumed the note. A `ConsumedExternal` note has no
    // metadata, so look it up by its details commitment rather than its note ID.
    let details_commitment = notes[0].details_commitment();
    let input_note = client_1
        .get_input_notes(NoteFilter::DetailsCommitments(vec![details_commitment]))
        .await?
        .pop()
        .with_context(|| format!("input note {note_id} not found"))?;
    assert!(matches!(input_note.state(), InputNoteState::ConsumedExternal { .. }));

    let new_from_account_balance = client_1
        .account_reader(from_account_id)
        .get_balance(faucet_account_id)
        .await
        .context("failed to find from account after transfer")?;
    let new_to_account_balance = client_2
        .account_reader(to_account_id)
        .get_balance(faucet_account_id)
        .await
        .context("failed to find to account after transfer")?;

    assert_eq!(new_from_account_balance, from_account_balance - TRANSFER_AMOUNT);
    assert_eq!(new_to_account_balance, to_account_balance + TRANSFER_AMOUNT);
    Ok(())
}

pub async fn test_import_account_by_id(client_config: ClientConfig) -> Result<()> {
    let (mut client_1, keystore_1) = client_config.clone().into_client().await?;
    let (mut client_2, keystore_2) = ClientConfig::default()
        .with_rpc_endpoint(client_config.rpc_endpoint())
        .into_client()
        .await?;
    wait_for_node(&mut client_1).await;

    let mut user_seed = [0u8; 32];
    client_1.rng().fill_bytes(&mut user_seed);

    let (faucet_account_header, _) = insert_new_fungible_faucet(
        &mut client_1,
        AccountType::Public,
        &keystore_1,
        RPO_FALCON_SCHEME_ID,
    )
    .await?;

    let (first_regular_account, secret_key) = insert_new_wallet_with_seed(
        &mut client_1,
        AccountType::Public,
        &keystore_1,
        user_seed,
        RPO_FALCON_SCHEME_ID,
    )
    .await?;

    let target_account_id = first_regular_account.id();
    let faucet_account_id = faucet_account_header.id();

    // First mint and consume in the first client
    let tx_id =
        mint_and_consume(&mut client_1, target_account_id, faucet_account_id, NoteType::Public)
            .await;
    wait_for_tx(&mut client_1, tx_id).await?;

    // Mint a note for the second client
    let (tx_id, note) =
        mint_note(&mut client_1, target_account_id, faucet_account_id, NoteType::Public).await;
    wait_for_tx(&mut client_1, tx_id).await?;

    // Import the public account by id
    let built_wallet_id =
        build_wallet_id(user_seed, &secret_key.public_key(), AccountType::Public)?;
    assert_eq!(built_wallet_id, first_regular_account.id());
    client_2.import_account_by_id(built_wallet_id).await?;
    keystore_2.add_key(&secret_key, built_wallet_id).await?;

    let original_commitment = client_1
        .account_reader(first_regular_account.id())
        .commitment()
        .await
        .with_context(|| {
            format!("Original account {} not found in client_1", first_regular_account.id())
        })?;
    let imported_commitment = client_2
        .account_reader(first_regular_account.id())
        .commitment()
        .await
        .with_context(|| {
            format!("Imported account {} not found in client_2", first_regular_account.id())
        })?;
    assert_eq!(imported_commitment, original_commitment);

    // Now use the wallet in the second client to consume the generated note
    info!(account_id = %target_account_id, "Second client consuming note");
    client_2.sync_state().await?;
    let tx_id = consume_notes(&mut client_2, target_account_id, &[note]).await;
    wait_for_tx(&mut client_2, tx_id).await?;
    assert_account_has_single_asset(
        &client_2,
        target_account_id,
        faucet_account_id,
        MINT_AMOUNT * 2,
    )
    .await;
    Ok(())
}

/// Watched-account flow:
///   - `client_1` owns the wallet and faucet, executes transactions.
///   - `client_2` watches the wallet via `import_watched_account_by_id` (no note tag).
///   - After `client_1` runs another mint+consume on the wallet, `client_2` should observe (a) the
///     new account commitment matching `client_1`, (b) no input note record for the mint targeted
///     at the wallet (no tag → not synced), and (c) no output note record for the consumed note
///     (watched accounts are state-only; note activity is intentionally not surfaced).
pub async fn test_import_watched_account_by_id(client_config: ClientConfig) -> Result<()> {
    let (mut client_1, keystore_1) = client_config.clone().into_client().await?;
    let (mut client_2, _keystore_2) = ClientConfig::default()
        .with_rpc_endpoint(client_config.rpc_endpoint())
        .into_client()
        .await?;
    wait_for_node(&mut client_1).await;

    let (faucet_account, _) = insert_new_fungible_faucet(
        &mut client_1,
        AccountType::Public,
        &keystore_1,
        RPO_FALCON_SCHEME_ID,
    )
    .await?;
    let (wallet, _) =
        insert_new_wallet(&mut client_1, AccountType::Public, &keystore_1, RPO_FALCON_SCHEME_ID)
            .await?;
    let wallet_id = wallet.id();
    let faucet_id = faucet_account.id();

    // Fill the wallet with an asset so the watched account has non-trivial state.
    let tx_id = mint_and_consume(&mut client_1, wallet_id, faucet_id, NoteType::Public).await;
    wait_for_tx(&mut client_1, tx_id).await?;

    // client_2 starts watching the wallet.
    client_2.import_watched_account_by_id(wallet_id).await?;

    let initial_source_commitment = client_1.account_reader(wallet_id).commitment().await?;
    let initial_watched_commitment = client_2.account_reader(wallet_id).commitment().await?;
    assert_eq!(
        initial_watched_commitment, initial_source_commitment,
        "watched account commitment should match source after watch",
    );

    let watched_record = client_2
        .test_store()
        .get_account(wallet_id)
        .await?
        .context("watched account should be tracked in client_2's store")?;
    assert!(watched_record.is_watched(), "watched account must be marked as watched");

    let tags = client_2.test_store().get_note_tags().await?;
    assert!(
        !tags
            .iter()
            .any(|t| matches!(t.source, NoteTagSource::Account(id) if id == wallet_id)),
        "watched account must not register a per-account note tag",
    );

    // client_1 mints another note targeted at the wallet and consumes it. client_2 should
    // observe the commitment advance, but NOT pick up either the input note (no tag) or any
    // output-note record from the consume tx (watched accounts are state-only).
    let (tx_id, mint_note) = mint_note(&mut client_1, wallet_id, faucet_id, NoteType::Public).await;
    wait_for_tx(&mut client_1, tx_id).await?;
    let consume_tx_id =
        consume_notes(&mut client_1, wallet_id, std::slice::from_ref(&mint_note)).await;
    wait_for_tx(&mut client_1, consume_tx_id).await?;

    client_2.sync_state().await?;

    let updated_source_commitment = client_1.account_reader(wallet_id).commitment().await?;
    let updated_watched_commitment = client_2.account_reader(wallet_id).commitment().await?;
    assert_eq!(
        updated_watched_commitment, updated_source_commitment,
        "watched commitment should track source after sync",
    );
    assert_ne!(
        updated_watched_commitment, initial_watched_commitment,
        "watched account state should have advanced",
    );

    // Mint output note (targeted at the wallet) must NOT have been synced as an input note.
    let watched_input_notes = client_2.test_store().get_input_notes(NoteFilter::All).await?;
    assert!(
        watched_input_notes.iter().all(|n| n.id() != Some(mint_note.id())),
        "watched client must not have synced notes targeted at the wallet (no note tag)",
    );

    // No output-note records should have been created for the consume tx either: watched
    // accounts do not surface note activity, only on-chain state.
    let watched_output_notes = client_2.test_store().get_output_notes(NoteFilter::All).await?;
    assert!(
        watched_output_notes.is_empty(),
        "watched client must not surface output notes from followed account txs",
    );

    // Switching an already-tracked watched account to native (or vice versa) is not supported.
    let err = client_2
        .import_account_by_id(wallet_id)
        .await
        .expect_err("import_account_by_id must reject already-tracked watched accounts");
    assert!(
        matches!(err, ClientError::AccountWatchedMismatch(id) if id == wallet_id),
        "expected AccountWatchedMismatch, got {err:?}",
    );

    // Re-importing in the same mode is still a no-op overwrite, and the account stays
    // watched with no per-account tag.
    client_2.import_watched_account_by_id(wallet_id).await?;
    let record = client_2
        .test_store()
        .get_account(wallet_id)
        .await?
        .context("account should still be tracked after re-import")?;
    assert!(record.is_watched(), "account must remain watched");
    let tags = client_2.test_store().get_note_tags().await?;
    assert!(
        !tags
            .iter()
            .any(|t| matches!(t.source, NoteTagSource::Account(id) if id == wallet_id)),
        "watched account must not have a per-account note tag",
    );

    Ok(())
}

pub async fn test_incorrect_genesis(client_config: ClientConfig) -> Result<()> {
    let (builder, _) = client_config.into_client_builder().await?;
    let mut client = builder.build().await?;

    // Set an incorrect genesis commitment
    client.test_rpc_api().set_genesis_commitment(EMPTY_WORD).await?;

    // This request would always be valid as it requests the chain tip. But it should fail
    // because the genesis commitment in the request header does not match the one in the node.
    let result = client.test_rpc_api().get_block_header_by_number(None, false).await;

    match result {
        Err(RpcError::AcceptHeaderError(AcceptHeaderError::NoSupportedMediaRange(_))) => Ok(()),
        Ok(_) => anyhow::bail!("grpc request was unexpectedly successful"),
        _ => anyhow::bail!("expected accept header error"),
    }
}

/// Tests that consumed notes are returned in the correct transaction order when multiple
/// consume transactions for the same account are included in the same block.
///
/// The test mints 3 notes, then submits 3 consume transactions as a single proven batch
/// so they land in the same block. After syncing, it verifies that `InputNoteReader` returns the
/// notes in submission order.
pub async fn test_consumed_note_ordering(client_config: ClientConfig) -> Result<()> {
    let (mut client, keystore) = client_config.clone().into_client().await?;
    wait_for_node(&mut client).await;

    let (faucet_account, _) = insert_new_fungible_faucet(
        &mut client,
        AccountType::Private,
        &keystore,
        RPO_FALCON_SCHEME_ID,
    )
    .await?;

    let (wallet_account, ..) =
        insert_new_wallet(&mut client, AccountType::Private, &keystore, RPO_FALCON_SCHEME_ID)
            .await?;

    client.sync_state().await?;

    // Pre-batch: put the wallet on-chain so the wallet's first batch-tx delta is partial, not
    // full-state — the batch apply path rejects full-state deltas.
    let bootstrap_tx_id =
        mint_and_consume(&mut client, wallet_account.id(), faucet_account.id(), NoteType::Private)
            .await;
    wait_for_tx(&mut client, bootstrap_tx_id).await?;
    client.sync_state().await?;

    // Mint 3 notes, each in a separate transaction.
    let mut minted_notes = Vec::new();
    for i in 0..3 {
        let (tx_id, note) =
            mint_note(&mut client, wallet_account.id(), faucet_account.id(), NoteType::Private)
                .await;
        info!(tx_id = %tx_id, note_id = %note.id(), index = i, "Minted note");
        wait_for_tx(&mut client, tx_id).await?;
        minted_notes.push(note);
    }
    client.sync_state().await?;

    // Build a consume request per minted note and submit them as a single proven batch.
    let mut batch = client.new_transaction_batch();
    for (i, note) in minted_notes.iter().enumerate() {
        let tx_request = TransactionRequestBuilder::new()
            .build_consume_notes(vec![note.clone()])
            .unwrap();
        info!(note_id = %note.id(), index = i, "Pushing consume tx into batch");
        batch = batch.push(wallet_account.id(), tx_request).await?;
    }
    let submission_tip = batch.submit().await?;
    info!(submission_tip = submission_tip.as_u32(), "Submitted 3-tx consume batch");

    // Sync until the three consume txs are committed, then capture their batch block.
    let mut batch_block = None;
    for _ in 0..15 {
        client.sync_state().await?;

        let mut txs_per_block: BTreeMap<BlockNumber, usize> = BTreeMap::new();
        for tx in client.get_transactions(TransactionFilter::All).await? {
            if tx.details.account_id != wallet_account.id() {
                continue;
            }
            if let TransactionStatus::Committed { block_number, .. } = tx.status {
                *txs_per_block.entry(block_number).or_default() += 1;
            }
        }

        if let Some((&block, _)) = txs_per_block.iter().find(|&(_, &count)| count == 3) {
            batch_block = Some(block);
            break;
        }

        wait_for_blocks(&mut client, 1).await;
    }
    let batch_block =
        batch_block.with_context(|| "3 consume txs were not committed in the same block")?;
    info!(
        batch_block = batch_block.as_u32(),
        "All 3 consume txs committed in the same block"
    );

    // Verify all 3 notes are marked as consumed.
    let consumed_notes = client.get_input_notes(NoteFilter::Consumed).await?;
    assert!(
        consumed_notes.len() >= 3,
        "Expected at least 3 consumed notes, got {}",
        consumed_notes.len()
    );

    // Collect consumed notes via InputNoteReader for this wallet.
    let mut reader = client.input_note_reader(wallet_account.id());
    let mut reader_notes = Vec::new();
    while let Some(note) = reader.next().await? {
        reader_notes.push(note);
    }
    assert!(
        reader_notes.len() >= 3,
        "Expected at least 3 notes from reader, got {}",
        reader_notes.len()
    );

    // Extract the nullifier block height from a consumed note state
    let consumed_block_height = |note: &miden_client::store::InputNoteRecord| -> Option<u32> {
        match note.state() {
            InputNoteState::ConsumedAuthenticatedLocal(s) => {
                Some(s.nullifier_block_height.as_u32())
            },
            InputNoteState::ConsumedUnauthenticatedLocal(s) => {
                Some(s.nullifier_block_height.as_u32())
            },
            InputNoteState::ConsumedExternal(s) => Some(s.nullifier_block_height.as_u32()),
            _ => None,
        }
    };
    for window in reader_notes.windows(2) {
        let a = &window[0];
        let b = &window[1];
        let a_block = consumed_block_height(a).expect("consumed note should have block height");
        let b_block = consumed_block_height(b).expect("consumed note should have block height");
        assert!(
            a_block <= b_block,
            "Notes should be ordered by block height: note {:?} at block {} came before note {:?} at block {}",
            a.id(),
            a_block,
            b.id(),
            b_block,
        );
    }

    // The three consumed notes must appear in submission order.
    let reader_note_ids: Vec<_> = reader_notes.iter().filter_map(|n| n.id()).collect();
    let positions: Vec<_> = minted_notes
        .iter()
        .map(|note| {
            reader_note_ids
                .iter()
                .position(|id| *id == note.id())
                .with_context(|| format!("Minted note {} not found in reader output", note.id()))
        })
        .collect::<Result<Vec<_>>>()?;
    assert!(
        positions.windows(2).all(|w| w[0] < w[1]),
        "Notes should appear in submission order, but got positions: {positions:?}"
    );

    Ok(())
}

/// Verifies syncing and consuming notes with attachments, for both a public and a private note.
/// 1. Client 1 mints a public and a private P2ID note, each with an attachment, targeting client 2.
/// 2. Client 2 syncs and discovers both notes via `sync_notes`.
/// 3. The sync triggers a `get_notes_by_id` call that resolves the public note's body and the
///    private note's attachment content.
/// 4. Client 2 consumes both notes.
pub async fn test_sync_note_with_attachment(client_config: ClientConfig) -> Result<()> {
    let (mut client_1, keystore_1) = client_config.clone().into_client().await?;
    let (mut client_2, keystore_2) = ClientConfig::default()
        .with_rpc_endpoint(client_config.rpc_endpoint())
        .into_client()
        .await?;
    wait_for_node(&mut client_1).await;

    // Create faucet in client 1
    let (faucet_account, _) = insert_new_fungible_faucet(
        &mut client_1,
        AccountType::Private,
        &keystore_1,
        RPO_FALCON_SCHEME_ID,
    )
    .await?;

    // Create wallet in client 2
    let (wallet, ..) =
        insert_new_wallet(&mut client_2, AccountType::Private, &keystore_2, RPO_FALCON_SCHEME_ID)
            .await?;

    client_1.sync_state().await?;
    client_2.sync_state().await?;

    // Mint two P2ID notes carrying Word attachments: one public, one private.
    let public_attachments = NoteAttachments::new(vec![NoteAttachment::with_word(
        NoteAttachmentScheme::new(42)?,
        Word::from([1u32, 2, 3, 4]),
    )])?;
    let private_attachments = NoteAttachments::new(vec![NoteAttachment::with_word(
        NoteAttachmentScheme::new(43)?,
        Word::from([5u32, 6, 7, 8]),
    )])?;
    let asset = FungibleAsset::new(faucet_account.id(), MINT_AMOUNT)?;

    let public_note = P2idNote::create(
        faucet_account.id(),
        wallet.id(),
        vec![asset.into()],
        NoteType::Public,
        public_attachments,
        client_1.rng(),
    )?;
    let private_note = P2idNote::create(
        faucet_account.id(),
        wallet.id(),
        vec![asset.into()],
        NoteType::Private,
        private_attachments,
        client_1.rng(),
    )?;

    info!(public = %public_note.id(), private = %private_note.id(), "Minting P2ID notes with attachments");
    let tx_request = TransactionRequestBuilder::new()
        .own_output_notes(vec![public_note.clone(), private_note.clone()])
        .build()?;
    execute_tx_and_sync(&mut client_1, faucet_account.id(), tx_request).await?;

    // A private note's details never appear on-chain, so client 2 must receive the details.
    client_2.add_note_tag(private_note.metadata().tag()).await?;
    client_2
        .import_notes(&[NoteFile::NoteDetails {
            details: private_note.clone().into(),
            after_block_num: 0u32.into(),
            tag: Some(private_note.metadata().tag()),
        }])
        .await?;

    // Client 2 syncs and should discover both notes. sync_notes carries full metadata for both;
    // get_notes_by_id then resolves the public note body and the private note's attachment content.
    info!("Syncing client 2 to discover notes with attachments");
    client_2.sync_state().await?;

    // Both records must retain their attachment content and reconstruct to the same note ID as the
    // on-chain notes.
    let mut received_notes = vec![];
    for original in [&public_note, &private_note] {
        let record = client_2
            .get_input_note(original.id())
            .await?
            .with_context(|| format!("Note {} not found in client_2 after sync", original.id()))?;
        let received: InputNote = record.try_into()?;
        assert_eq!(
            received.note().attachments(),
            original.attachments(),
            "reconstructed note should retain the original attachment content",
        );
        assert_eq!(
            received.note().id(),
            original.id(),
            "reconstructed note must match the on-chain note ID",
        );
        received_notes.push(received.note().clone());
    }

    // Consume both notes — this fails if either note's attachments weren't resolved.
    info!("Consuming both notes with attachments in client 2");
    let tx_id = consume_notes(&mut client_2, wallet.id(), &received_notes).await;
    wait_for_tx(&mut client_2, tx_id).await?;

    assert_account_has_single_asset(&client_2, wallet.id(), faucet_account.id(), MINT_AMOUNT * 2)
        .await;

    Ok(())
}