Differences From Artifact [ad2f2ab750]:
- File tests/OFStreamTests.m — part of check-in [498074dab9] at 2021-04-17 22:45:38 on branch new-naming-convention — Rename of_(re)alloc and add OFFreeMemory (user: js, size: 1720) [annotate] [blame] [check-ins using] [more...]
To Artifact [7f38bebd95]:
- File
tests/OFStreamTests.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: 1752) [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 |
* file.
*/
#include "config.h"
#import "TestsAppDelegate.h"
static OFString *const module = @"OFStream";
@interface StreamTest: OFStream
{
int state;
}
@end
@implementation StreamTest
- (bool)lowlevelIsAtEndOfStream
{
return (state > 1);
}
- (size_t)lowlevelReadIntoBuffer: (void *)buffer length: (size_t)size
{
|
| ︙ | ︙ | |||
60 61 62 63 64 65 66 |
@end
@implementation TestsAppDelegate (OFStreamTests)
- (void)streamTests
{
void *pool = objc_autoreleasePoolPush();
size_t pageSize = [OFSystemInfo pageSize];
| | | | | | | | | | | | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
@end
@implementation TestsAppDelegate (OFStreamTests)
- (void)streamTests
{
void *pool = objc_autoreleasePoolPush();
size_t pageSize = [OFSystemInfo pageSize];
StreamTest *test = [[[StreamTest alloc] init] autorelease];
OFString *string;
char *cString;
cString = OFAllocMemory(pageSize - 2, 1);
memset(cString, 'X', pageSize - 3);
cString[pageSize - 3] = '\0';
TEST(@"-[readLine]", [[test readLine] isEqual: @"foo"] &&
(string = [test readLine]).length == pageSize - 3 &&
!strcmp(string.UTF8String, cString))
OFFreeMemory(cString);
objc_autoreleasePoolPop(pool);
}
@end
|