mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-09 07:40:58 +00:00
81 lines
2.7 KiB
Objective-C
81 lines
2.7 KiB
Objective-C
#import "Testing.h"
|
|
#import "ObjectTesting.h"
|
|
#import <Foundation/NSAutoreleasePool.h>
|
|
|
|
int main()
|
|
{
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
NSString *key1, *key2, *key3, *val1, *val2, *val3;
|
|
NSArray *keys1, *keys2, *keys3, *vals1, *vals2, *vals3;
|
|
NSDictionary *obj,*old;
|
|
|
|
old = nil;
|
|
key1 = @"Key1";
|
|
key2 = @"Key2";
|
|
key3 = @"Key3";
|
|
keys1 = [NSArray arrayWithObjects: key1, key2, nil];
|
|
keys2 = [NSArray arrayWithObjects: key1, key2, key3, nil];
|
|
/* duplicate keys */
|
|
keys3 = [NSArray arrayWithObjects: key1, key2, key2, nil];
|
|
val1 = @"Kidnapped";
|
|
val2 = @"tied up";
|
|
val3 = @"taken away and helf for ransom";
|
|
vals1 = [NSArray arrayWithObjects: val1, val2, nil];
|
|
/* duplicate values */
|
|
vals2 = [NSArray arrayWithObjects: val1, val2, val2, nil];
|
|
vals3 = [NSArray arrayWithObjects: val1, val2, val3, nil];
|
|
obj = [NSDictionary dictionary];
|
|
PASS(obj != nil
|
|
&& [obj isKindOfClass: [NSDictionary class]]
|
|
&& [obj count] == 0,
|
|
"+new creates an empty dictionary")
|
|
|
|
obj = [NSDictionary dictionary];
|
|
PASS(obj != nil
|
|
&& [obj isKindOfClass: [NSDictionary class]]
|
|
&& [obj count] == 0,
|
|
"+dictionary creates an empty dictionary")
|
|
|
|
PASS_EXCEPTION([NSDictionary dictionaryWithObject: val1 forKey: nil];,
|
|
NSInvalidArgumentException,
|
|
"+dictionaryWithObject:forKey: with nil key")
|
|
|
|
PASS_EXCEPTION([NSDictionary dictionaryWithObject: nil forKey: key1];,
|
|
NSInvalidArgumentException,
|
|
"+dictionaryWithObject:forKey: with nil value")
|
|
|
|
obj = [NSDictionary dictionaryWithObject: val1 forKey: key1];
|
|
PASS(obj != nil
|
|
&& [obj isKindOfClass: [NSDictionary class]]
|
|
&& [obj count] == 1,
|
|
"+dictionaryWithObject:forKey: builds minimal dictionary")
|
|
|
|
obj = [NSDictionary dictionaryWithObjects: vals1 forKeys: keys1];
|
|
PASS(obj != nil
|
|
&& [obj isKindOfClass: [NSDictionary class]]
|
|
&& [obj count] == 2,
|
|
"+dictionaryWithObjects:forKeys: builds a dictionary")
|
|
|
|
PASS_EXCEPTION([NSDictionary dictionaryWithObjects: vals1 forKeys: keys2];,
|
|
NSInvalidArgumentException,
|
|
"+dictionaryWithObjects:forKeys: with arrays of different sizes")
|
|
|
|
obj = [NSDictionary dictionaryWithObjects: vals2 forKeys: keys2];
|
|
PASS(obj != nil
|
|
&& [obj isKindOfClass: [NSDictionary class]]
|
|
&& [obj count] == 3,
|
|
"we can have multiple identical objects in a dictionary")
|
|
|
|
obj = [NSDictionary dictionaryWithObjects: vals3 forKeys: keys3];
|
|
PASS(obj != nil
|
|
&& [obj isKindOfClass: [NSDictionary class]]
|
|
&& [obj count] == 2,
|
|
"we can't have multiple identical keys in a dictionary")
|
|
old = obj;
|
|
obj = [NSDictionary dictionaryWithDictionary: old];
|
|
PASS(obj != nil
|
|
&& [obj isEqual: old], "+dictionaryWithDictionary: copies dictionary")
|
|
|
|
[arp release]; arp = nil;
|
|
return 0;
|
|
}
|