aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMNSEnumerator+FilterTest.m
blob: ef0d95569148cd387f8d6a2cd72eb7cf02c712bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//
//  GTMNSEnumerator+FilterTest.m
//
//  Copyright 2007-2008 Google Inc.
//
//  Licensed under the Apache License, Version 2.0 (the "License"); you may not
//  use this file except in compliance with the License.  You may obtain a copy
//  of the License at
// 
//  http://www.apache.org/licenses/LICENSE-2.0
// 
//  Unless required by applicable law or agreed to in writing, software
//  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
//  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
//  License for the specific language governing permissions and limitations under
//  the License.
//

#import "GTMSenTestCase.h"
#import "GTMNSEnumerator+Filter.h"

@interface GTMNSEnumerator_FilterTest : GTMTestCase
@end

@implementation GTMNSEnumerator_FilterTest

- (void)testEnumeratorByMakingEachObjectPerformSelector {
  // test w/ a set of strings
  NSSet *numbers = [NSSet setWithObjects: @"1", @"2", @"3", nil];
  NSEnumerator *e = [[numbers objectEnumerator]
    gtm_enumeratorByMakingEachObjectPerformSelector:@selector(stringByAppendingString:) 
                                         withObject:@" "];
  NSMutableSet *trailingSpaces = [NSMutableSet set];
  id obj;
  while (nil != (obj = [e nextObject])) {
    [trailingSpaces addObject:obj];
  }
  NSSet *trailingSpacesGood = [NSSet setWithObjects: @"1 ", @"2 ", @"3 ", nil];
  STAssertEqualObjects(trailingSpaces, trailingSpacesGood, @"");

  // test an empty set
  NSSet *empty = [NSSet set];
  e = [[empty objectEnumerator]
    gtm_enumeratorByMakingEachObjectPerformSelector:@selector(stringByAppendingString:) 
                                         withObject:@" "];
  STAssertNil([e nextObject],
              @"shouldn't have gotten anything from first advance of enumerator");
}

- (void)testFilteredEnumeratorByMakingEachObjectPerformSelector {
  // test with a dict of strings
  NSDictionary *testDict = [NSDictionary dictionaryWithObjectsAndKeys:
                           @"foo", @"1",
                           @"bar", @"2",
                           @"foobar", @"3",
                           nil];
  // test those that have prefixes
  NSEnumerator *e = [[testDict objectEnumerator]
    gtm_filteredEnumeratorByMakingEachObjectPerformSelector:@selector(hasPrefix:) 
                                                 withObject:@"foo"];
  // since the dictionary iterates in any order, compare as sets
  NSSet *filteredValues = [NSSet setWithArray:[e allObjects]];
  NSSet *expectedValues = [NSSet setWithObjects:@"foo", @"foobar", nil];
  STAssertEqualObjects(filteredValues, expectedValues, @"");

  // test an empty set
  NSSet *empty = [NSSet set];
  e = [[empty objectEnumerator]
    gtm_filteredEnumeratorByMakingEachObjectPerformSelector:@selector(hasPrefix:) 
                                                 withObject:@"foo"];
  STAssertNil([e nextObject],
              @"shouldn't have gotten anything from first advance of enumerator");
  
  // test an set that will filter out
  NSSet *filterAway = [NSSet setWithObjects:@"bar", @"baz", nil];
  e = [[filterAway objectEnumerator]
    gtm_filteredEnumeratorByMakingEachObjectPerformSelector:@selector(hasPrefix:) 
                                                 withObject:@"foo"];
  STAssertNil([e nextObject],
              @"shouldn't have gotten anything from first advance of enumerator");
}

- (void)testEnumeratorByTargetPerformOnEachSelector {
  // test w/ a set of strings
  NSSet *numbers = [NSSet setWithObjects: @"1", @"2", @"3", nil];
  NSString *target = @"foo";
  NSEnumerator *e = [[numbers objectEnumerator]
    gtm_enumeratorByTarget:target
     performOnEachSelector:@selector(stringByAppendingString:)];
  // since the set iterates in any order, compare as sets
  NSSet *collectedValues = [NSSet setWithArray:[e allObjects]];
  NSSet *expectedValues = [NSSet setWithObjects:@"foo1", @"foo2", @"foo3", nil];
  STAssertEqualObjects(collectedValues, expectedValues, @"");
  
  // test an empty set
  NSSet *empty = [NSSet set];
  e = [[empty objectEnumerator]
    gtm_enumeratorByTarget:target
     performOnEachSelector:@selector(stringByAppendingString:)];
  STAssertNil([e nextObject],
              @"shouldn't have gotten anything from first advance of enumerator");
}

- (void)testFilteredEnumeratorByTargetPerformOnEachSelector {
  // test w/ a set of strings
  NSSet *numbers = [NSSet setWithObjects:@"1", @"2", @"3", @"4", nil];
  NSSet *target = [NSSet setWithObjects:@"2", @"4", @"6", nil];
  NSEnumerator *e = [[numbers objectEnumerator]
    gtm_filteredEnumeratorByTarget:target
             performOnEachSelector:@selector(containsObject:)];
  // since the set iterates in any order, compare as sets
  NSSet *filteredValues = [NSSet setWithArray:[e allObjects]];
  NSSet *expectedValues = [NSSet setWithObjects:@"2", @"4", nil];
  STAssertEqualObjects(filteredValues, expectedValues, @"");

  // test an empty set
  NSSet *empty = [NSSet set];
  e = [[empty objectEnumerator]
    gtm_filteredEnumeratorByTarget:target
             performOnEachSelector:@selector(containsObject:)];
  STAssertNil([e nextObject],
              @"shouldn't have gotten anything from first advance of enumerator");

  // test an set that will filter out
  NSSet *filterAway = [NSSet setWithObjects:@"bar", @"baz", nil];
  e = [[filterAway objectEnumerator]
    gtm_filteredEnumeratorByTarget:target
             performOnEachSelector:@selector(containsObject:)];
  STAssertNil([e nextObject],
              @"shouldn't have gotten anything from first advance of enumerator");
}

@end