Add integration test for RSA and Ed25519 keys

Test that two chat clients using different key types can communicate
using Autocrypt.
This commit is contained in:
Alexander Krotov
2020-02-18 02:41:01 +03:00
committed by holger krekel
parent 7368c01a8f
commit d9dda44409
2 changed files with 41 additions and 7 deletions

View File

@@ -213,9 +213,10 @@ def acfactory(pytestconfig, tmpdir, request, session_liveconfig, datadir):
return ac, dict(configdict)
def get_online_configuring_account(self, mvbox=False, sentbox=False,
pre_generated_key=True):
pre_generated_key=True, config={}):
ac, configdict = self.get_online_config(
pre_generated_key=pre_generated_key)
configdict.update(config)
ac.configure(**configdict)
ac.start_threads(mvbox=mvbox, sentbox=sentbox)
return ac