You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pEpPythonAdapter/test
David 566d0a2162 opdate from optparse to argparse PYADAPT-61 3 years ago
..
README.md added imap module for sync_test and sync_handshake PYADPT-47 4 years ago
basic_doctest.py we have sweet texts now instead of numbers 4 years ago
codec_doctest.py PYADPT-54: Add codec for distribution protocol (keyreset) / adding test/codec_doctest.py 3 years ago
miniimap.py clean code 4 years ago
minimail.py random timing for minimail 3 years ago
sync_handshake.py opdate from optparse to argparse PYADAPT-61 3 years ago
sync_test.py opdate from optparse to argparse PYADAPT-61 3 years ago

README.md

= Tests in this directory =

$ HOME=$PWD python3 basic_doctest.py -v do some basic tests of p≡p

CAVEAT: set environment variable HOME to a test directory before executing
this test

$ python3 sync_test.py start two processes representing two devices and do a sync test

Once started sync_handshake.py is creating a trace of all sent messages in TestInbox. There's a file named Laptop or Phone, respectively, which is working as a marker; the modification timestamp of this file is showing the mails being considered as “already received”. If you delete the file and start i.e.

$ cd Phone $ rm ../TestInbox/Phone $ HOME=$PWD lldb python3 -- ../sync_handshake.py -e Phone

Then this side is doing a replay in the debugger. Using touch to set a different timestamp on the marker will only partly replay.

In order to work with IMAP you need to create a imap_settings.py file with the following variables:

IMAP_HOST = 'domain.ch' IMAP_PORT = '993' IMAP_USER = 'your_username' IMAP_PWD = 'password' IMAP_EMAIL = 'user@domain.ch'

= Hint =

installing termcolor and lxml will beautify the output