use std::collections::HashMap; use std::str::FromStr; use sdk_client::api::{ add_validation_token_to_prd, create_commit_message, create_device_from_sp_wallet, create_update_transaction, dump_device, dump_process_cache, get_address, get_outputs, get_update_proposals, pair_device, parse_cipher, reset_device, response_prd, restore_device, set_process_cache, setup, ApiReturn }; use sdk_common::log::{debug, info}; use sdk_common::pcd::{Member, RoleDefinition}; use sdk_common::sp_client::bitcoin::consensus::deserialize; use sdk_common::sp_client::bitcoin::hex::FromHex; use sdk_common::sp_client::bitcoin::{OutPoint, Transaction}; use sdk_common::sp_client::spclient::OwnedOutput; use sdk_common::sp_client::silentpayments::utils::SilentPaymentAddress; use sdk_common::secrets::SecretsStore; use serde_json::{json, Value}; use tsify::JsValueSerdeExt; use wasm_bindgen_test::*; mod utils; use utils::*; wasm_bindgen_test_configure!(run_in_browser); #[wasm_bindgen_test] fn test_pairing() { setup(); let mut alice_process_cache = HashMap::new(); let mut bob_process_cache = HashMap::new(); let mut alice_secrets_store = SecretsStore::new(); let mut bob_secrets_store = SecretsStore::new(); debug!("==============================================\nStarting test_pairing\n=============================================="); // ========================= Alice reset_device().unwrap(); create_device_from_sp_wallet(ALICE_LOGIN_WALLET.to_owned()).unwrap(); // we get our own address let alice_address = get_address().unwrap(); // we scan the qr code or get the address by any other means let bob_address = helper_get_bob_address(); // we add some shared_secret in both secrets_store let shared_secret = "c3f1a64e15d2e8d50f852c20b7f0b47cbe002d9ef80bc79582d09d6f38612d45"; alice_secrets_store.confirm_secret_for_address(shared_secret, bob_address.try_into().unwrap()); bob_secrets_store.confirm_secret_for_address(shared_secret, alice_address.try_into().unwrap()); // Alice creates the new member with Bob address let new_member = Member::new(vec![ alice_address.as_str().try_into().unwrap(), bob_address.as_str().try_into().unwrap(), ]) .unwrap(); let initial_session_privkey = [0u8; 32]; let initial_session_pubkey = [0u8; 32]; let pairing_init_state = json!({ "description": "AliceBob", "roles": { "owner": { "members": [ new_member ], "validation_rules": [ { "quorum": 1.0, "fields": [ "description", "roles", "session_privkey", "session_pubkey", "key_parity" ], "min_sig_member": 1.0 } ] } }, "session_privkey": initial_session_privkey, "session_pubkey": initial_session_pubkey, "key_parity": true, // This allows us to use a 32 bytes array in serialization }); debug!("Alice pairs her device"); // we can update our local device now, first with an empty txid pair_device(OutPoint::null().to_string(), vec![helper_get_bob_address()]).unwrap(); debug!("Alice sends a transaction commiting to an update prd to Bob"); let alice_pairing_return = create_update_transaction(None, pairing_init_state.to_string(), 1).unwrap(); let (root_outpoint, alice_init_process) = alice_pairing_return.updated_process.unwrap(); alice_process_cache.insert(root_outpoint.clone(), alice_init_process.clone()); let pairing_tx_msg = alice_pairing_return.new_tx_to_send.unwrap(); // This is only for testing, the relay takes care of that in prod let get_outputs_result = get_outputs().unwrap(); let alice_outputs: HashMap = get_outputs_result.into_serde().unwrap(); let alice_pairing_tweak_data = helper_get_tweak_data(&pairing_tx_msg.transaction, alice_outputs); // End of the test only part // Alice parses her own transaction helper_parse_transaction(&pairing_tx_msg.transaction, &alice_pairing_tweak_data); // this is only for testing, as we're playing both parts let alice_device = dump_device().unwrap(); let alice_processes = dump_process_cache().unwrap(); // ======================= Bob reset_device().unwrap(); create_device_from_sp_wallet(BOB_LOGIN_WALLET.to_owned()).unwrap(); // Bob receives Alice pairing transaction debug!("Bob parses Alice pairing transaction"); helper_parse_transaction(&pairing_tx_msg.transaction, &alice_pairing_tweak_data); debug!("Bob receives the prd"); let mut bob_retrieved_prd: ApiReturn = ApiReturn::default(); for cipher in alice_pairing_return.ciphers_to_send.iter() { // debug!("Parsing cipher: {:#?}", cipher); match parse_cipher(cipher.clone()) { Ok(res) => bob_retrieved_prd = res, Err(e) => { debug!("Error parsing cipher: {:#?}", e); continue; } } } assert!(bob_retrieved_prd.ciphers_to_send.len() == 1); assert!(bob_retrieved_prd.updated_process.is_some()); debug!("Bob retrieved prd: {:#?}", bob_retrieved_prd); let (root_commitment, relevant_process) = bob_retrieved_prd.updated_process.unwrap(); bob_process_cache.insert(root_commitment.clone(), relevant_process); let prd_confirm_cipher = bob_retrieved_prd.ciphers_to_send.iter().next().unwrap(); debug!("Bob sends a Confirm Prd to Alice"); // this is only for testing, as we're playing both parts let bob_device = dump_device().unwrap(); let bob_processes = dump_process_cache().unwrap(); // ======================= Alice reset_device().unwrap(); restore_device(alice_device).unwrap(); set_process_cache(alice_processes).unwrap(); debug!("Alice receives the Confirm Prd"); let alice_parsed_confirm = parse_cipher(prd_confirm_cipher.clone()).unwrap(); debug!( "Alice parsed Bob's Confirm Prd: {:#?}", alice_parsed_confirm ); // Alice simply shoots back the return value in the ws let bob_received_pcd = alice_parsed_confirm.ciphers_to_send[0].clone(); // Now that we're sure that bob got the prd udpate we also produce the prd response and shoot it let alice_prd_update_commitment = alice_init_process .get_impending_requests() .get(0) .unwrap() .create_commitment(); let (_, alice_validated_prd) = add_validation_token_to_prd( root_outpoint.clone(), alice_prd_update_commitment.to_string(), true, ) .unwrap() .updated_process .unwrap(); alice_process_cache.insert(root_outpoint.clone(), alice_validated_prd); let alice_prd_response = response_prd(root_outpoint, alice_prd_update_commitment.to_string(), true).unwrap(); let bob_received_response = alice_prd_response.ciphers_to_send.get(0).unwrap().clone(); // ======================= Bob reset_device().unwrap(); restore_device(bob_device).unwrap(); set_process_cache(bob_processes).unwrap(); debug!("Bob parses Alice's pcd"); let bob_parsed_pcd_return = parse_cipher(bob_received_pcd).unwrap(); debug!("bob_parsed_pcd: {:#?}", bob_parsed_pcd_return); // Here we would update our database bob_process_cache.insert( root_commitment.clone(), bob_parsed_pcd_return.updated_process.unwrap().1, ); // We now need Alice prd response, and update our process with it debug!("Bob also parses alice prd response"); let bob_parsed_response = parse_cipher(bob_received_response).unwrap(); debug!("bob_parsed_response: {:#?}", bob_parsed_response); bob_process_cache.insert( root_commitment.clone(), bob_parsed_response.updated_process.unwrap().1, ); debug!("{:#?}", bob_process_cache.get(&root_commitment).unwrap()); // At this point, user must validate the pairing proposal received from Alice // We decrypt the content of the pcd so that we can display to user what matters let alice_proposal = get_update_proposals(root_commitment.clone()).unwrap(); debug!("Alice proposal: {:#?}", alice_proposal); let proposal = Value::from_str(&alice_proposal.get(0).unwrap()).unwrap(); debug!("proposal: {:#?}", proposal); // get the roles from the proposal let roles = proposal .get("roles") .and_then(|v| Value::from_str(v.as_str().unwrap()).ok()) .unwrap() .as_object() .unwrap() .iter() .map(|(role_name, role_value)| { let role_def: RoleDefinition = serde_json::from_value(role_value.clone())?; Ok((role_name.clone(), role_def)) }) .collect::, anyhow::Error>>(); let roles = roles.unwrap(); // we check that the proposal contains only one member assert!(roles.len() == 1); assert!(roles["owner"].members.len() == 1); // we get all the addresses of the members of the proposal let proposal_members = roles .iter() .flat_map(|(_, members)| members.members.iter().flat_map(|m| m.get_addresses())) .collect::>(); // we can automatically check that a pairing member contains local device address + the one that sent the proposal assert!(proposal_members.contains(&alice_address)); assert!(proposal_members.contains(&bob_address)); assert!(proposal_members.len() == 2); // no free riders // We remove the local address, but maybe that's the responsibility of the Member type let proposal_members = proposal_members .into_iter() .filter(|m| m != &bob_address) .collect::>(); debug!("proposal_members: {:?}", proposal_members); // we can now show all the addresses to the user on device to prompt confirmation info!("Pop-up: User confirmation"); // If user is ok, we can add our own validation token let prd_to_respond = bob_process_cache .get(&root_commitment) .unwrap() .get_impending_requests() .get(0) .unwrap() .to_owned(); let bob_added_validation = add_validation_token_to_prd(root_commitment.clone(), prd_to_respond.create_commitment().to_string(), true).unwrap(); bob_process_cache.insert( root_commitment.clone(), bob_added_validation.updated_process.unwrap().1, ); // We create the commit msg for the relay that includes Alice and Bob's proofs let commit_msg = create_commit_message(root_commitment.clone(), "tsp1qqvfm6wvd55r68ltysdhmagg7qavxrzlmm9a7tujsp8qqy6x2vr0muqajt5p2jdxfw450wyeygevypxte29sxlxzgprmh2gwnutnt09slrcqqy5h4".to_owned(), 1).unwrap().commit_to_send.unwrap(); let tx: Transaction = deserialize(&Vec::from_hex(&commit_msg.init_tx).unwrap()).unwrap(); // We send the commit_msg to the relay we got the address from // We also send // We can just take the txid of the transaction we created for the commitment let commitment_outpoint = OutPoint::new(tx.txid(), 0); debug!("Bob pairs device with Alice"); pair_device(commitment_outpoint.to_string(), proposal_members).unwrap(); // To make the pairing effective, alice and bob must now creates a new transaction where they both control one output // login(); }