diff options
author | Michele Calgaro <[email protected]> | 2020-12-07 22:58:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-12-07 22:58:44 +0900 |
commit | 145abc15d57fb29701a12e8a14dcb9c1fd72e9be (patch) | |
tree | fbb4f2f737ec6f4e8a85bea5f2ca2257d20d7e22 /tdeioslave/smtp/test_headergeneration.cpp | |
parent | d95494d97233919fa0b2eebf60759537b793e05b (diff) | |
download | tdebase-145abc15d57fb29701a12e8a14dcb9c1fd72e9be.tar.gz tdebase-145abc15d57fb29701a12e8a14dcb9c1fd72e9be.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeioslave/smtp/test_headergeneration.cpp')
-rw-r--r-- | tdeioslave/smtp/test_headergeneration.cpp | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/tdeioslave/smtp/test_headergeneration.cpp b/tdeioslave/smtp/test_headergeneration.cpp new file mode 100644 index 000000000..9e4cb971f --- /dev/null +++ b/tdeioslave/smtp/test_headergeneration.cpp @@ -0,0 +1,86 @@ +#include "request.h" + +//#include <iostream> + +//using std::cout; +//using std::endl; + +int main( int , char ** ) { + static TQCString expected = + "From: [email protected]\r\n" + "Subject: missing subject\r\n" + "To: [email protected],\r\n" + "\[email protected]\r\n" + "Cc: [email protected]\r\n" + "\n" + "From: Marc Mutz <[email protected]>\r\n" + "Subject: missing subject\r\n" + "To: [email protected],\r\n" + "\[email protected]\r\n" + "Cc: [email protected]\r\n" + "\n" + "From: \"Mutz, Marc\" <[email protected]>\r\n" + "Subject: missing subject\r\n" + "To: [email protected],\r\n" + "\[email protected]\r\n" + "Cc: [email protected]\r\n" + "\n" + "From: =?utf-8?b?TWFyYyBNw7Z0eg==?= <[email protected]>\r\n" + "Subject: missing subject\r\n" + "To: [email protected],\r\n" + "\[email protected]\r\n" + "Cc: [email protected]\r\n" + "\n" + "From: [email protected]\r\n" + "Subject: =?utf-8?b?QmzDtmRlcyBTdWJqZWN0?=\r\n" + "To: [email protected],\r\n" + "\[email protected]\r\n" + "Cc: [email protected]\r\n" + "\n" + "From: Marc Mutz <[email protected]>\r\n" + "Subject: =?utf-8?b?QmzDtmRlcyBTdWJqZWN0?=\r\n" + "To: [email protected],\r\n" + "\[email protected]\r\n" + "Cc: [email protected]\r\n" + "\n" + "From: \"Mutz, Marc\" <[email protected]>\r\n" + "Subject: =?utf-8?b?QmzDtmRlcyBTdWJqZWN0?=\r\n" + "To: [email protected],\r\n" + "\[email protected]\r\n" + "Cc: [email protected]\r\n" + "\n" + "From: =?utf-8?b?TWFyYyBNw7Z0eg==?= <[email protected]>\r\n" + "Subject: =?utf-8?b?QmzDtmRlcyBTdWJqZWN0?=\r\n" + "To: [email protected],\r\n" + "\[email protected]\r\n" + "Cc: [email protected]\r\n" + "\n"; + + KioSMTP::Request request; + TQCString result; + + request.setEmitHeaders( true ); + request.setFromAddress( "[email protected]" ); + request.addTo( "[email protected]" ); + request.addTo( "[email protected]" ); + request.addCc( "[email protected]" ); + + result += request.headerFields() + '\n'; + result += request.headerFields( "Marc Mutz" ) + '\n'; + result += request.headerFields( "Mutz, Marc" ) + '\n'; + result += request.headerFields( "Marc M�tz" ) + '\n'; + + request.setSubject( "Bl�des Subject" ); + + result += request.headerFields() + '\n'; + result += request.headerFields( "Marc Mutz" ) + '\n'; + result += request.headerFields( "Mutz, Marc" ) + '\n'; + result += request.headerFields( "Marc M�tz" ) + '\n'; + + //cout << "Result:\n" << result.data() << endl; + + return result == expected ? 0 : 1 ; +} + +#include "request.cpp" + |