@@ -106,7 +106,7 @@ def test_account(acfactory) -> None:
106
106
alice , bob = acfactory .get_online_accounts (2 )
107
107
108
108
bob_addr = bob .get_config ("addr" )
109
- alice_contact_bob = alice .create_contact (bob_addr , "Bob" )
109
+ alice_contact_bob = alice .create_contact (bob , "Bob" )
110
110
alice_chat_bob = alice_contact_bob .create_chat ()
111
111
alice_chat_bob .send_text ("Hello!" )
112
112
@@ -171,8 +171,7 @@ def test_account(acfactory) -> None:
171
171
def test_chat (acfactory ) -> None :
172
172
alice , bob = acfactory .get_online_accounts (2 )
173
173
174
- bob_addr = bob .get_config ("addr" )
175
- alice_contact_bob = alice .create_contact (bob_addr , "Bob" )
174
+ alice_contact_bob = alice .create_contact (bob , "Bob" )
176
175
alice_chat_bob = alice_contact_bob .create_chat ()
177
176
alice_chat_bob .send_text ("Hello!" )
178
177
@@ -238,7 +237,7 @@ def test_contact(acfactory) -> None:
238
237
alice , bob = acfactory .get_online_accounts (2 )
239
238
240
239
bob_addr = bob .get_config ("addr" )
241
- alice_contact_bob = alice .create_contact (bob_addr , "Bob" )
240
+ alice_contact_bob = alice .create_contact (bob , "Bob" )
242
241
243
242
assert alice_contact_bob == alice .get_contact_by_id (alice_contact_bob .id )
244
243
assert repr (alice_contact_bob )
@@ -255,8 +254,7 @@ def test_contact(acfactory) -> None:
255
254
def test_message (acfactory ) -> None :
256
255
alice , bob = acfactory .get_online_accounts (2 )
257
256
258
- bob_addr = bob .get_config ("addr" )
259
- alice_contact_bob = alice .create_contact (bob_addr , "Bob" )
257
+ alice_contact_bob = alice .create_contact (bob , "Bob" )
260
258
alice_chat_bob = alice_contact_bob .create_chat ()
261
259
alice_chat_bob .send_text ("Hello!" )
262
260
@@ -314,8 +312,7 @@ def test_reaction_seen_on_another_dev(acfactory) -> None:
314
312
alice2 = alice .clone ()
315
313
alice2 .start_io ()
316
314
317
- bob_addr = bob .get_config ("addr" )
318
- alice_contact_bob = alice .create_contact (bob_addr , "Bob" )
315
+ alice_contact_bob = alice .create_contact (bob , "Bob" )
319
316
alice_chat_bob = alice_contact_bob .create_chat ()
320
317
alice_chat_bob .send_text ("Hello!" )
321
318
@@ -332,17 +329,15 @@ def test_reaction_seen_on_another_dev(acfactory) -> None:
332
329
alice2 .clear_all_events ()
333
330
alice_chat_bob .mark_noticed ()
334
331
chat_id = alice2 .wait_for_event (EventType .MSGS_NOTICED ).chat_id
335
- alice2_contact_bob = alice2 .get_contact_by_addr (bob_addr )
336
- alice2_chat_bob = alice2_contact_bob .create_chat ()
332
+ alice2_chat_bob = alice2 .create_chat (bob )
337
333
assert chat_id == alice2_chat_bob .id
338
334
339
335
340
336
def test_is_bot (acfactory ) -> None :
341
337
"""Test that we can recognize messages submitted by bots."""
342
338
alice , bob = acfactory .get_online_accounts (2 )
343
339
344
- bob_addr = bob .get_config ("addr" )
345
- alice_contact_bob = alice .create_contact (bob_addr , "Bob" )
340
+ alice_contact_bob = alice .create_contact (bob , "Bob" )
346
341
alice_chat_bob = alice_contact_bob .create_chat ()
347
342
348
343
# Alice becomes a bot.
@@ -412,8 +407,7 @@ def test_wait_next_messages(acfactory) -> None:
412
407
# Bot starts waiting for messages.
413
408
next_messages_task = executor .submit (bot .wait_next_messages )
414
409
415
- bot_addr = bot .get_config ("addr" )
416
- alice_contact_bot = alice .create_contact (bot_addr , "Bot" )
410
+ alice_contact_bot = alice .create_contact (bot , "Bot" )
417
411
alice_chat_bot = alice_contact_bot .create_chat ()
418
412
alice_chat_bot .send_text ("Hello!" )
419
413
@@ -437,9 +431,7 @@ def test_import_export_backup(acfactory, tmp_path) -> None:
437
431
def test_import_export_keys (acfactory , tmp_path ) -> None :
438
432
alice , bob = acfactory .get_online_accounts (2 )
439
433
440
- bob_addr = bob .get_config ("addr" )
441
- alice_contact_bob = alice .create_contact (bob_addr , "Bob" )
442
- alice_chat_bob = alice_contact_bob .create_chat ()
434
+ alice_chat_bob = alice .create_chat (bob )
443
435
alice_chat_bob .send_text ("Hello Bob!" )
444
436
445
437
snapshot = bob .get_message_by_id (bob .wait_for_incoming_msg_event ().msg_id ).get_snapshot ()
@@ -489,9 +481,7 @@ def test_provider_info(rpc) -> None:
489
481
def test_mdn_doesnt_break_autocrypt (acfactory ) -> None :
490
482
alice , bob = acfactory .get_online_accounts (2 )
491
483
492
- bob_addr = bob .get_config ("addr" )
493
-
494
- alice_contact_bob = alice .create_contact (bob_addr , "Bob" )
484
+ alice_contact_bob = alice .create_contact (bob , "Bob" )
495
485
496
486
# Bob creates chat manually so chat with Alice is accepted.
497
487
alice_chat_bob = alice_contact_bob .create_chat ()
@@ -633,9 +623,7 @@ def test_download_limit_chat_assignment(acfactory, tmp_path, n_accounts):
633
623
chat .send_text ("Hello Alice!" )
634
624
assert alice .get_message_by_id (alice .wait_for_incoming_msg_event ().msg_id ).get_snapshot ().text == "Hello Alice!"
635
625
636
- contact_addr = account .get_config ("addr" )
637
- contact = alice .create_contact (contact_addr , "" )
638
-
626
+ contact = alice .create_contact (account )
639
627
alice_group .add_contact (contact )
640
628
641
629
if n_accounts == 2 :
0 commit comments