1# lws api test smtp client 2 3Performs unit tests on the lws SMTP client abstract protocol 4implementation. 5 6The first test "sends mail to a server" (actually is prompted by 7test vectors that look like a server) and the second test 8confirm it can handle rejection by the "server" cleanly. 9 10## build 11 12Requires lws was built with `-DLWS_WITH_SMTP=1` at cmake. 13 14``` 15 $ cmake . && make 16``` 17 18## usage 19 20Commandline option|Meaning 21---|--- 22-d <loglevel>|Debug verbosity in decimal, eg, -d15 23-r <recipient@whatever.com>|Send the test email to this email address 24 25 26``` 27 $ ./lws-api-test-smtp_client 28[2019/06/28 21:56:41:0711] USER: LWS API selftest: SMTP client unit tests 29[2019/06/28 21:56:41:1114] NOTICE: test_sequencer_cb: test-seq: created 30[2019/06/28 21:56:41:1259] NOTICE: unit_test_sequencer_cb: unit-test-seq: created 31[2019/06/28 21:56:41:1272] NOTICE: lws_atcut_client_conn: smtp: test 'sending': start 32[2019/06/28 21:56:41:1441] NOTICE: unit_test_sequencer_cb: unit-test-seq: created 33[2019/06/28 21:56:41:1442] NOTICE: lws_atcut_client_conn: smtp: test 'rejected': start 34[2019/06/28 21:56:41:1453] NOTICE: lws_smtp_client_abs_rx: bad response from server: 500 (state 4) 500 Service Unavailable 35[2019/06/28 21:56:41:1467] USER: test_sequencer_cb: sequence completed OK 36[2019/06/28 21:56:41:1474] USER: main: 2 tests 0 fail 37[2019/06/28 21:56:41:1476] USER: test 0: PASS 38[2019/06/28 21:56:41:1478] USER: test 1: PASS 39[2019/06/28 21:56:41:1480] USER: Completed: PASS 40``` 41 42