2011-02-16 08:21:17 +00:00
|
|
|
|
#if defined(GNUSTEP_BASE_LIBRARY)
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
#import <GNUstepBase/GSMime.h>
|
|
|
|
|
#import "Testing.h"
|
2019-02-14 11:19:33 +00:00
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
strnstr(const uint8_t *buf, unsigned len, const uint8_t *str)
|
|
|
|
|
{
|
|
|
|
|
int l = strlen(str);
|
|
|
|
|
int max = len - l;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < max; i++)
|
|
|
|
|
{
|
|
|
|
|
if (strncmp(buf + i, str, l) == 0)
|
|
|
|
|
{
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-16 08:21:17 +00:00
|
|
|
|
int main(int argc,char **argv)
|
|
|
|
|
{
|
|
|
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
2016-02-25 11:55:58 +00:00
|
|
|
|
NSData *data = nil;
|
|
|
|
|
NSString *string = nil;
|
2011-02-16 08:21:17 +00:00
|
|
|
|
GSMimeDocument *doc = [[GSMimeDocument alloc] init];
|
|
|
|
|
NSMutableDictionary *par = [[NSMutableDictionary alloc] init];
|
2016-02-25 11:55:58 +00:00
|
|
|
|
|
2011-02-16 08:21:17 +00:00
|
|
|
|
[par setObject: @"my/type" forKey: @"type"];
|
|
|
|
|
[doc setContent: @"Hello\r\n"];
|
|
|
|
|
[doc setHeader: [[GSMimeHeader alloc] initWithName: @"content-type"
|
|
|
|
|
value: @"text/plain"
|
|
|
|
|
parameters: par]];
|
|
|
|
|
|
2016-02-25 11:55:58 +00:00
|
|
|
|
[doc setHeader:
|
|
|
|
|
[[GSMimeHeader alloc] initWithName: @"content-transfer-encoding"
|
|
|
|
|
value: @"binary"
|
|
|
|
|
parameters: nil]];
|
2011-02-16 08:21:17 +00:00
|
|
|
|
|
|
|
|
|
data = [NSData dataWithContentsOfFile: @"mime8.dat"];
|
|
|
|
|
PASS([[doc rawMimeData] isEqual: data], "Can make a simple document");
|
2016-02-25 11:55:58 +00:00
|
|
|
|
|
2016-02-25 13:07:08 +00:00
|
|
|
|
string = @"ABCD credit card account − more information about Peach Pay.";
|
2016-02-25 11:55:58 +00:00
|
|
|
|
[doc setHeader:
|
|
|
|
|
[[GSMimeHeader alloc] initWithName: @"subject"
|
|
|
|
|
value: string
|
|
|
|
|
parameters: nil]];
|
|
|
|
|
data = [doc rawMimeData];
|
|
|
|
|
PASS(data != nil, "Can use non-ascii character in subject");
|
|
|
|
|
doc = [GSMimeParser documentFromData: data];
|
|
|
|
|
PASS_EQUAL([[doc headerNamed: @"subject"] value], string,
|
|
|
|
|
"Can restore non-ascii character in subject");
|
|
|
|
|
|
2016-08-03 09:24:53 +00:00
|
|
|
|
data = [[GSMimeSerializer smtp7bitSerializer] encodeDocument: doc];
|
|
|
|
|
PASS(data != nil, "Can serialize with non-ascii character in subject");
|
|
|
|
|
doc = [GSMimeParser documentFromData: data];
|
|
|
|
|
PASS_EQUAL([[doc headerNamed: @"subject"] value], string,
|
|
|
|
|
"Can restore non-ascii character in subject form serialized document");
|
|
|
|
|
|
2019-02-14 11:19:33 +00:00
|
|
|
|
[doc setHeader:
|
|
|
|
|
[[GSMimeHeader alloc] initWithName: @"subject"
|
|
|
|
|
value: @"€"
|
|
|
|
|
parameters: nil]];
|
|
|
|
|
data = [doc rawMimeData];
|
|
|
|
|
const char *bytes = "MIME-Version: 1.0\r\n"
|
|
|
|
|
"Content-Type: text/plain; type=\"my/type\"\r\n"
|
|
|
|
|
"Subject: =?utf-8?B?4oKs?=\r\n\r\n";
|
|
|
|
|
PASS(strnstr([data bytes], [data length], "?B?4oKs?=") > 0,
|
|
|
|
|
"encodes utf-8 euro in subject");
|
|
|
|
|
|
2011-02-16 08:21:17 +00:00
|
|
|
|
[arp release]; arp = nil;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
int main(int argc,char **argv)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|