My favorites | Sign in
Logo
                
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
//
// GTMIPhoneUnitTestDelegate.m
//
// Copyright 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 "GTMIPhoneUnitTestDelegate.h"

#import "GTMDefines.h"
#if !GTM_IPHONE_SDK
#error GTMIPhoneUnitTestDelegate for iPhone only
#endif
#import <objc/runtime.h>
#import <stdio.h>
#import <UIKit/UIKit.h>
#import "GTMSenTestCase.h"

@implementation GTMIPhoneUnitTestDelegate

// Run through all the registered classes and run test methods on any
// that are subclasses of SenTestCase. Terminate the application upon
// test completion.
- (void)applicationDidFinishLaunching:(UIApplication *)application {
[self runTests];

if (!getenv("GTM_DISABLE_TERMINATION")) {
// To help using xcodebuild, make the exit status 0/1 to signal the tests
// success/failure.
int exitStatus = (([self totalFailures] == 0U) ? 0 : 1);
// Alternative to exit(status); so it cleanly terminates the UIApplication
// and classes that depend on this signal to exit cleanly.
if ([application respondsToSelector:@selector(_terminateWithStatus:)]) {
[application performSelector:@selector(_terminateWithStatus:)
withObject:(id)exitStatus];
} else {
exit(exitStatus);
}
}
}

// Run through all the registered classes and run test methods on any
// that are subclasses of SenTestCase. Print results and run time to
// the default output.
- (void)runTests {
int count = objc_getClassList(NULL, 0);
NSMutableData *classData
= [NSMutableData dataWithLength:sizeof(Class) * count];
Class *classes = (Class*)[classData mutableBytes];
_GTMDevAssert(classes, @"Couldn't allocate class list");
objc_getClassList(classes, count);
totalFailures_ = 0;
totalSuccesses_ = 0;
NSString *suiteName = [[NSBundle mainBundle] bundlePath];
NSDate *suiteStartDate = [NSDate date];
NSString *suiteStartString
= [NSString stringWithFormat:@"Test Suite '%@' started at %@\n",
suiteName, suiteStartDate];
fputs([suiteStartString UTF8String], stderr);
fflush(stderr);
for (int i = 0; i < count; ++i) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Class currClass = classes[i];
if (class_respondsToSelector(currClass, @selector(conformsToProtocol:)) &&
[currClass conformsToProtocol:@protocol(SenTestCase)]) {
NSDate *fixtureStartDate = [NSDate date];
NSString *fixtureName = NSStringFromClass(currClass);
NSString *fixtureStartString
= [NSString stringWithFormat:@"Test Suite '%@' started at %@\n",
fixtureName, fixtureStartDate];
int fixtureSuccesses = 0;
int fixtureFailures = 0;
fputs([fixtureStartString UTF8String], stderr);
fflush(stderr);
NSArray *invocations = [currClass testInvocations];
if ([invocations count]) {
NSInvocation *invocation;
GTM_FOREACH_OBJECT(invocation, invocations) {
GTMTestCase *testCase
= [[currClass alloc] initWithInvocation:invocation];
BOOL failed = NO;
NSDate *caseStartDate = [NSDate date];
@try {
[testCase performTest];
} @catch (NSException *exception) {
failed = YES;
}
if (failed) {
fixtureFailures += 1;
} else {
fixtureSuccesses += 1;
}
NSTimeInterval caseEndTime
= [[NSDate date] timeIntervalSinceDate:caseStartDate];
NSString *selectorName = NSStringFromSelector([invocation selector]);
NSString *caseEndString
= [NSString stringWithFormat:@"Test Case '-[%@ %@]' %@ (%0.3f "
@"seconds).\n",
fixtureName, selectorName,
failed ? @"failed" : @"passed",
caseEndTime];
fputs([caseEndString UTF8String], stderr);
fflush(stderr);
[testCase release];
}
}
NSDate *fixtureEndDate = [NSDate date];
NSTimeInterval fixtureEndTime
= [fixtureEndDate timeIntervalSinceDate:fixtureStartDate];
NSString *fixtureEndString
= [NSString stringWithFormat:@"Test Suite '%@' finished at %@.\n"
@"Executed %d tests, with %d failures (%d "
@"unexpected) in %0.3f (%0.3f) seconds\n\n",
fixtureName, fixtureEndDate,
fixtureSuccesses + fixtureFailures,
fixtureFailures, fixtureFailures,
fixtureEndTime, fixtureEndTime];

fputs([fixtureEndString UTF8String], stderr);
fflush(stderr);
totalSuccesses_ += fixtureSuccesses;
totalFailures_ += fixtureFailures;
}
[pool release];
}
NSDate *suiteEndDate = [NSDate date];
NSTimeInterval suiteEndTime
= [suiteEndDate timeIntervalSinceDate:suiteStartDate];
NSString *suiteEndString
= [NSString stringWithFormat:@"Test Suite '%@' finished at %@.\n"
@"Executed %d tests, with %d failures (%d "
@"unexpected) in %0.3f (%0.3f) seconds\n\n",
suiteName, suiteEndDate,
totalSuccesses_ + totalFailures_,
totalFailures_, totalFailures_,
suiteEndTime, suiteEndTime];
fputs([suiteEndString UTF8String], stderr);
fflush(stderr);
}

- (NSUInteger)totalSuccesses {
return totalSuccesses_;
}

- (NSUInteger)totalFailures {
return totalFailures_;
}

@end
Show details Hide details

Change log

r225 by gtm.daemon on Sep 18, 2009   Diff
[Author: altse]

 Use [UIApplication _terminateWithStatus:]
rather than exit(status) so that
 parts of the UIApplication can clean up
after a test run. Otherwise
 any tests involving WebKit will crash on
exit.

R=dmaclach
DELTA=8  (7 added, 0 deleted, 1 changed)
Go to: 
Project members, sign in to write a code review

Older revisions

r222 by gtm.daemon on Sep 16, 2009   Diff
[Author: dmaclach]

Fix up the unit testing stack that I
broke on iPhone. This makes the
unittesting stuff on iPhone
...
r77 by thomasvl on Jan 30, 2009   Diff
- Added simple accessor to get the
number of tests that pass/fail from
the
  iphone test delegate, should make it
easy for any app driving tests to
...
r73 by thomasvl on Dec 12, 2008   Diff
- GTMStackTrace works on 10.5+ (and
iPhone) using NSThread to build the
call stack.

- Added GTM_EXTERN that makes it
...
All revisions of this file

File info

Size: 6206 bytes, 160 lines