mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Small array keyword fixes for NSPredicate
This commit is contained in:
parent
e58b83c1f3
commit
531d3b8559
3 changed files with 32 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2023-10-08 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSPredicate.m: fixup for array access keywords
|
||||
* Tests/base/NSPredicate/basic.m: add simple testcases for array
|
||||
|
||||
2023-10-07 Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Headers/Foundation/NSKeyValueObserving.h
|
||||
|
|
|
@ -2634,17 +2634,17 @@ GSICUStringMatchesRegex(NSString *string, NSString *regex, NSStringCompareOption
|
|||
if ([self scanPredicateKeyword: @"FIRST"])
|
||||
{
|
||||
left = [NSExpression expressionForFunction: @"_first"
|
||||
arguments: [NSArray arrayWithObject: [self parseExpression]]];
|
||||
arguments: [NSArray arrayWithObject: left]];
|
||||
}
|
||||
else if ([self scanPredicateKeyword: @"LAST"])
|
||||
{
|
||||
left = [NSExpression expressionForFunction: @"_last"
|
||||
arguments: [NSArray arrayWithObject: [self parseExpression]]];
|
||||
arguments: [NSArray arrayWithObject: left]];
|
||||
}
|
||||
else if ([self scanPredicateKeyword: @"SIZE"])
|
||||
{
|
||||
left = [NSExpression expressionForFunction: @"count"
|
||||
arguments: [NSArray arrayWithObject: [self parseExpression]]];
|
||||
arguments: [NSArray arrayWithObject: left]];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -151,6 +151,28 @@ testBlock(NSDictionary* dict)
|
|||
# endif
|
||||
END_SET("Block predicates");
|
||||
}
|
||||
|
||||
void testArray(void)
|
||||
{
|
||||
NSArray *array;
|
||||
NSPredicate *predicate;
|
||||
|
||||
array = [NSArray arrayWithObjects:
|
||||
[NSNumber numberWithInteger: 1],
|
||||
[NSNumber numberWithInteger: 2],
|
||||
[NSNumber numberWithInteger: 0],
|
||||
nil];
|
||||
|
||||
predicate = [NSPredicate predicateWithFormat: @"SELF[FIRST] = 1"];
|
||||
PASS([predicate evaluateWithObject: array], "first is one")
|
||||
|
||||
predicate = [NSPredicate predicateWithFormat: @"SELF[LAST] = 0"];
|
||||
PASS([predicate evaluateWithObject: array], "last is zero")
|
||||
|
||||
predicate = [NSPredicate predicateWithFormat: @"SELF[SIZE] = 3"];
|
||||
PASS([predicate evaluateWithObject: array], "size is three")
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
NSArray *filtered;
|
||||
|
@ -257,6 +279,8 @@ int main()
|
|||
PASS_EQUAL([a description], @"(yes)",
|
||||
"predicate created with format can filter an array")
|
||||
|
||||
testArray();
|
||||
|
||||
END_SET("basic")
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue