Differences From Artifact [5f6e7408a0]:
- File tests/OFSerializationTests.m — part of check-in [1b82d3bf4f] at 2021-03-07 20:25:21 on branch trunk — *.m: Fold methods into one line where it fits (user: js, size: 2077) [annotate] [blame] [check-ins using] [more...]
To Artifact [c0ded8afa9]:
- File
tests/OFSerializationTests.m
— part of check-in
[14f1e22d79]
at
2021-05-08 23:22:59
on branch trunk
— tests: Align more with ObjFW style
ObjFW's style changed over the years, but the tests were never adjusted
to it. (user: js, size: 2186) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
13 14 15 16 17 18 19 | * file. */ #include "config.h" #import "TestsAppDelegate.h" | | | | | | | | | | | | | | | | | > | | | | | | > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
* file.
*/
#include "config.h"
#import "TestsAppDelegate.h"
static OFString *const module = @"OFSerialization";
@implementation TestsAppDelegate (OFSerializationTests)
- (void)serializationTests
{
void *pool = objc_autoreleasePoolPush();
OFMutableDictionary *dict = [OFMutableDictionary dictionary];
OFMutableArray *array = [OFMutableArray array];
OFList *list = [OFList list];
OFData *data;
OFString *string;
[array addObject: @"Qu\"xbar\ntest"];
[array addObject: [OFNumber numberWithInt: 1234]];
[array addObject: [OFNumber numberWithDouble: 1234.5678]];
[array addObject: [OFMutableString stringWithString: @"asd"]];
[array addObject: [OFDate dateWithTimeIntervalSince1970: 1234.5678]];
[dict setObject: @"Hello" forKey: array];
[dict setObject: @"B\"la" forKey: @"Blub"];
[list appendObject: @"Hello"];
[list appendObject: @"Wo\rld!\nHow are you?"];
[list appendObject: [OFURL URLWithString: @"https://objfw.nil.im/"]];
[list appendObject:
[OFXMLElement elementWithXMLString: @"<x><y/><![CDATA[<]]></x>"]];
[list appendObject:
[OFSet setWithObjects: @"foo", @"foo", @"bar", nil]];
[list appendObject:
[OFCountedSet setWithObjects: @"foo", @"foo", @"bar", nil]];
[dict setObject: @"list" forKey: list];
data = [OFData dataWithItems: "0123456789:;<ABCDEFGHJIKLMNOPQRSTUVWXYZ"
count: 39];
[dict setObject: @"data" forKey: data];
TEST(@"-[stringBySerializing]",
(string = dict.stringBySerializing) && [string isEqual:
[OFString stringWithContentsOfFile: @"serialization.xml"]])
TEST(@"-[objectByDeserializing]",
[string.objectByDeserializing isEqual: dict])
objc_autoreleasePoolPop(pool);
}
@end
|