summaryrefslogtreecommitdiffstats
path: root/tdeioslave/smtp/test_headergeneration.cc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-12-07 22:58:44 +0900
committerMichele Calgaro <[email protected]>2020-12-07 22:58:44 +0900
commit145abc15d57fb29701a12e8a14dcb9c1fd72e9be (patch)
treefbb4f2f737ec6f4e8a85bea5f2ca2257d20d7e22 /tdeioslave/smtp/test_headergeneration.cc
parentd95494d97233919fa0b2eebf60759537b793e05b (diff)
downloadtdebase-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.cc')
-rw-r--r--tdeioslave/smtp/test_headergeneration.cc86
1 files changed, 0 insertions, 86 deletions
diff --git a/tdeioslave/smtp/test_headergeneration.cc b/tdeioslave/smtp/test_headergeneration.cc
deleted file mode 100644
index 83d999c4a..000000000
--- a/tdeioslave/smtp/test_headergeneration.cc
+++ /dev/null
@@ -1,86 +0,0 @@
-#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"
- "Cc: [email protected]\r\n"
- "\n"
- "From: Marc Mutz <[email protected]>\r\n"
- "Subject: missing subject\r\n"
- "To: [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"
- "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"
- "Cc: [email protected]\r\n"
- "\n"
- "From: [email protected]\r\n"
- "Subject: =?utf-8?b?QmzDtmRlcyBTdWJqZWN0?=\r\n"
- "To: [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"
- "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"
- "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"
- "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.cc"
-