add a few more tests derived from mystep

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36140 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2013-02-15 09:21:32 +00:00
parent abd50f30b2
commit 862da70b18
2 changed files with 58 additions and 10 deletions

View file

@ -6,6 +6,7 @@
int main()
{
NSAutoreleasePool *arp = [NSAutoreleasePool new];
NSAttributedString *s;
NSString *key1, *val1, *str1;
NSRange r = NSMakeRange(0,6);
NSAttributedString *astr1, *astr2;
@ -13,30 +14,36 @@ int main()
NSRange range = NSMakeRange(0,0);
id obj;
s = [[[NSAttributedString alloc] initWithString: @"string"] autorelease];
PASS_EQUAL([s string], @"string", "equality OK for string value");
PASS([s length] == 6, "length reported correctly");
PASS_EQUAL([s attributesAtIndex: 0 effectiveRange: NULL],
[NSDictionary dictionary], "returnsempty attributes dictionary, not nil");
key1 = @"Helvetica 12-point";
val1 = @"NSFontAttributeName";
str1 = @"Attributed string test";
dict1 = [NSDictionary dictionaryWithObject:val1 forKey:key1];
astr1 = [[NSAttributedString alloc] initWithString:str1 attributes:dict1];
PASS(astr1 != nil && [astr1 isKindOfClass:[NSAttributedString class]] &&
astr1 = [[NSAttributedString alloc] initWithString: str1 attributes: dict1];
PASS(astr1 != nil && [astr1 isKindOfClass: [NSAttributedString class]] &&
[[astr1 string] isEqual: str1],"-initWithString:attributes: works");
obj = [astr1 attributesAtIndex:0 effectiveRange:&range];
PASS(obj != nil && [obj isKindOfClass:[NSDictionary class]] &&
obj = [astr1 attributesAtIndex: 0 effectiveRange: &range];
PASS(obj != nil && [obj isKindOfClass: [NSDictionary class]] &&
[obj count] == 1 && range.length != 0,
"-attributesAtIndex:effectiveRange: works");
obj = [astr1 attribute:key1 atIndex:0 effectiveRange:&range];
PASS(obj != nil && [obj isEqual:val1] && range.length != 0,
obj = [astr1 attribute: key1 atIndex: 0 effectiveRange: &range];
PASS(obj != nil && [obj isEqual: val1] && range.length != 0,
"-attribute:atIndex:effectiveRange: works");
obj = [astr1 attributedSubstringFromRange:r];
PASS(obj != nil && [obj isKindOfClass:[NSAttributedString class]] &&
obj = [astr1 attributedSubstringFromRange: r];
PASS(obj != nil && [obj isKindOfClass: [NSAttributedString class]] &&
[obj length] == r.length,"-attributedSubstringFromRange works");
r = NSMakeRange(0,[astr1 length]);
astr2 = [astr1 attributedSubstringFromRange:r];
PASS(astr2 != nil && [astr1 isEqualToAttributedString:astr2],
astr2 = [astr1 attributedSubstringFromRange: r];
PASS(astr2 != nil && [astr1 isEqualToAttributedString: astr2],
"extract and compare using -isEqualToAttributedString works");
[arp release]; arp = nil;

View file

@ -2,6 +2,25 @@
#import <Foundation/NSAttributedString.h>
#import <Foundation/NSAutoreleasePool.h>
@interface NSColor : NSObject
+ (id) redColor;
+ (id) blueColor;
@end
@implementation NSColor
+ (id) redColor;
{
return [[self new] autorelease];
}
+ (id) blueColor;
{
return [[self new] autorelease];
}
@end
NSString *NSForegroundColorAttributeName = @"NSForegroundColorAttributeName";
@interface NSMutableAttributedString (TestingAdditions)
-(BOOL)checkAttributes:(NSDictionary *)attr location:(int)location;
-(BOOL)checkAttributes:(NSDictionary *)attr range:(NSRange)range;
@ -38,6 +57,28 @@ int main()
NSString *baseString = @"0123456789";
NSDictionary *red, *gray, *blue;
NSMutableAttributedString *s;
s = [[[NSMutableAttributedString alloc]
initWithString: @"string"] autorelease];
PASS_EQUAL([s string], @"string", "equality OK for string value");
PASS([s length] == 6, "length reported correctly");
PASS_EQUAL([s attributesAtIndex: 0 effectiveRange: NULL],
[NSDictionary dictionary], "empty range has empty attributes dictionary");
[s setAttributes: [NSDictionary dictionaryWithObjectsAndKeys:
[NSColor redColor], NSForegroundColorAttributeName, nil]
range: NSMakeRange(0, 3)];
PASS([[s attributesAtIndex: 0 effectiveRange: NULL] count] == 1,
"newly set attribute dictionary contains one attribute");
PASS([[s attributesAtIndex: 3 effectiveRange: NULL] count] == 0,
"attribute dictionary at 3 contains no attributes");
[s setAttributes: [NSDictionary dictionaryWithObjectsAndKeys:
[NSColor blueColor], NSForegroundColorAttributeName, nil]
range: NSMakeRange(3, 3)];
PASS([[s attributesAtIndex: 0 effectiveRange: NULL] count] == 1,
"attribute count at 0 unchanged");
PASS([[s attributesAtIndex: 3 effectiveRange: NULL] count] == 1,
"new attribute count is 1");
red = [NSDictionary dictionaryWithObject:@"Red" forKey:@"Color"];
gray = [NSDictionary dictionaryWithObject:@"Gray" forKey:@"Color"];
blue = [NSDictionary dictionaryWithObject:@"Blue" forKey:@"Color"];