mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
being confusing. They now both take a simple C-string argument which names the set, and the macros check that each end matches a start of the same name. Since tis means that a START_SET no longer takes an argument sayng whether or notthe set is to be skipped, we now have a SKIP macro to be used inside a set to skip to the end of it. This is actually more versatile as we can have multiple SKIP macros in the same set, each providing a different reason for the set being skipped. Also removed a few obsolete/unused functions and macros. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32355 72102866-910b-0410-8b05-ffd578937521
78 lines
2.7 KiB
Objective-C
78 lines
2.7 KiB
Objective-C
#import "Testing.h"
|
|
#import "ObjectTesting.h"
|
|
#import <Foundation/NSAutoreleasePool.h>
|
|
#import <Foundation/NSData.h>
|
|
#import <Foundation/NSString.h>
|
|
|
|
int main()
|
|
{
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
char *str1,*str2;
|
|
NSData *data1, *data2;
|
|
NSMutableData *mutable;
|
|
unsigned char *hold;
|
|
|
|
str1 = "Test string for data classes";
|
|
str2 = (char *) malloc(sizeof("Test string for data classes not copied"));
|
|
strcpy(str2,"Test string for data classes not copied");
|
|
|
|
mutable = [NSMutableData dataWithLength:100];
|
|
hold = [mutable mutableBytes];
|
|
|
|
/* hmpf is this correct */
|
|
data1 = [NSData dataWithBytes:str1 length:(strlen(str1) * sizeof(void*))];
|
|
PASS(data1 != nil &&
|
|
[data1 isKindOfClass:[NSData class]] &&
|
|
[data1 length] == (strlen(str1) * sizeof(void*)) &&
|
|
[data1 bytes] != str1 &&
|
|
strcmp(str1,[data1 bytes]) == 0,
|
|
"+dataWithBytes:length: works");
|
|
|
|
data2 = [NSData dataWithBytesNoCopy:str2 length:(strlen(str2) * sizeof(void*))];
|
|
PASS(data2 != nil && [data2 isKindOfClass:[NSData class]] &&
|
|
[data2 length] == (strlen(str2) * sizeof(void*)) &&
|
|
[data2 bytes] == str2,
|
|
"+dataWithBytesNoCopy:length: works");
|
|
|
|
data1 = [NSData dataWithBytes:nil length:0];
|
|
PASS(data1 != nil && [data1 isKindOfClass:[NSData class]] &&
|
|
[data1 length] == 0,
|
|
"+dataWithBytes:length works with 0 length");
|
|
|
|
[data2 getBytes:hold range:NSMakeRange(2,6)];
|
|
PASS(strcmp(hold,"st str") == 0, "-getBytes:range works");
|
|
|
|
PASS_EXCEPTION([data2 getBytes:hold
|
|
range:NSMakeRange(strlen(str2)*sizeof(void*),1)];,
|
|
NSRangeException,
|
|
"getBytes:range: with bad location");
|
|
|
|
PASS_EXCEPTION([data2 getBytes:hold
|
|
range:NSMakeRange(1,(strlen(str2)*sizeof(void*)))];,
|
|
NSRangeException,
|
|
"getBytes:range: with bad length");
|
|
|
|
PASS_EXCEPTION([data2 subdataWithRange:NSMakeRange((strlen(str2)*sizeof(void*)),1)];,
|
|
NSRangeException,
|
|
"-subdataWithRange: with bad location");
|
|
|
|
PASS_EXCEPTION([data2 subdataWithRange:NSMakeRange(1,(strlen(str2)*sizeof(void*)))];,
|
|
NSRangeException,
|
|
"-subdataWithRange: with bad length");
|
|
|
|
data2 = [NSData dataWithBytesNoCopy:str1
|
|
length:(strlen(str1) * sizeof(void*))
|
|
freeWhenDone:NO];
|
|
PASS(data2 != nil && [data2 isKindOfClass:[NSData class]] &&
|
|
[data2 length] == (strlen(str1) * sizeof(void*)) &&
|
|
[data2 bytes] == str1,
|
|
"+dataWithBytesNoCopy:length:freeWhenDone: works");
|
|
|
|
[arp release]; arp = nil;
|
|
|
|
{
|
|
BOOL didNotSegfault = YES;
|
|
PASS(didNotSegfault, "+dataWithBytesNoCopy:length:freeWhenDone:NO doesn't free memory");
|
|
}
|
|
return 0;
|
|
}
|