mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
![]() Establish a new distributed CMake architecture with CMake code related to a source directory moving to be in the subdir in its own CMakeLists.txt. In particular, there's now one in ./lib which calls through to ones further down the directory tree like ./lib/plat/xxx, ./lib/roles/xxx etc. This cuts the main CMakelists.txt from 98KB -> 33KB, about a 66% reduction, and it's much easier to maintain sub-CMakeLists.txt that are in the same directory as the sources they manage, and conceal all the details that that level. Child CMakelists.txt become responsible for: - include_directories() definition (this is not supported by CMake directly, it passes it back up via PARENT_SCOPE vars in helper macros) - Addition child CMakeLists.txt inclusion, for example toplevel -> role -> role subdir - Source file addition to the build - Dependent library path resolution... this is now a private thing in the child CMakeLists.txt, it just passes back any adaptations to include_directories() and the LIB_LIST without filling the parent namespace with the details |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
main.c | ||
README.md |
lws api test smtp client
Performs unit tests on the lws SMTP client abstract protocol implementation.
The first test "sends mail to a server" (actually is prompted by test vectors that look like a server) and the second test confirm it can handle rejection by the "server" cleanly.
build
Requires lws was built with -DLWS_WITH_SMTP=1
at cmake.
$ cmake . && make
usage
Commandline option | Meaning |
---|---|
-d | Debug verbosity in decimal, eg, -d15 |
-r recipient@whatever.com | Send the test email to this email address |
$ ./lws-api-test-smtp_client
[2019/06/28 21:56:41:0711] USER: LWS API selftest: SMTP client unit tests
[2019/06/28 21:56:41:1114] NOTICE: test_sequencer_cb: test-seq: created
[2019/06/28 21:56:41:1259] NOTICE: unit_test_sequencer_cb: unit-test-seq: created
[2019/06/28 21:56:41:1272] NOTICE: lws_atcut_client_conn: smtp: test 'sending': start
[2019/06/28 21:56:41:1441] NOTICE: unit_test_sequencer_cb: unit-test-seq: created
[2019/06/28 21:56:41:1442] NOTICE: lws_atcut_client_conn: smtp: test 'rejected': start
[2019/06/28 21:56:41:1453] NOTICE: lws_smtp_client_abs_rx: bad response from server: 500 (state 4) 500 Service Unavailable
[2019/06/28 21:56:41:1467] USER: test_sequencer_cb: sequence completed OK
[2019/06/28 21:56:41:1474] USER: main: 2 tests 0 fail
[2019/06/28 21:56:41:1476] USER: test 0: PASS
[2019/06/28 21:56:41:1478] USER: test 1: PASS
[2019/06/28 21:56:41:1480] USER: Completed: PASS