-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSenTestProbe.m
219 lines (180 loc) · 7.28 KB
/
SenTestProbe.m
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*$Id: SenTestProbe.m,v 1.23 2005/04/02 03:21:04 phink Exp $*/
// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved.
//
// Use of this source code is governed by the following license:
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// (1) Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// (2) Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Note: this license is equivalent to the FreeBSD license.
//
// This notice may not be removed from this file.
/*" The purpose of this class is to run the tests and exit when the TestingKit
is loaded and testing is on (SenTest default is "All" or "Self")
This class is a bit of hack, to make testing as transparent as possible,
(i.e. without modification to the client code to set testing on or off).
"*/
#import "SenTestProbe.h"
#import "SenTestSuite.h"
#import "SenTestRun.h"
#import "SenTestObserver.h"
#import "SenTestingUtilities.h"
NSString *SenTestedUnitPath = @"SenTestedUnitPath";
NSString *SenTestScopeKey = @"SenTest";
NSString *SenTestScopeAll = @"All";
NSString *SenTestScopeNone = @"None";
NSString *SenTestScopeSelf = @"Self";
@interface SenTestProbe(SenTestProbe_Private)
+ (void) runTestsAtUnitPath:(NSString *)path scope:(NSString *)scope;
+ (void) runTests:(id) ignored;
@end
@implementation SenTestProbe
+ (BOOL) isLoadedFromApplication
{
BOOL result = NO;
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSBundle *mainBundle = [NSBundle mainBundle];
if (mainBundle != nil) {
// -mainBundle returns a value even when we are not running from an .app
// And even ([NSBundle bundleWithPath:[mainBundle bundlePath]] != nil) is not a sufficient test!
// so we have to resort to this:
NSString *extension = [[mainBundle bundlePath] pathExtension];
if (extension != nil) {
NSString *path = [[NSBundle bundleForClass:self] pathForResource:@"ApplicationWrapperExtensions" ofType:@"plist"];
result = [[[NSString stringWithContentsOfFile:path] propertyList] containsObject:extension];
}
}
[pool release];
return result;
}
+ (BOOL) isLoadedFromTool
{
BOOL result = NO;
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSBundle *mainBundle = [NSBundle mainBundle];
if (mainBundle != nil && (![[[NSProcessInfo processInfo] processName] isEqualToString: @"otest"])) {
result = [[NSFileManager defaultManager] fileExistsAtPathOrLink: [[mainBundle bundlePath] stringByAppendingPathComponent: [[NSProcessInfo processInfo] processName]]];
}
[pool release];
return result;
}
+ (NSString *) testScope
{
static NSString *testScope = nil;
if (testScope == nil) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
testScope = [[[NSUserDefaults standardUserDefaults] stringForKey:SenTestScopeKey] copy];
[pool release];
}
return testScope;
}
+ (BOOL) isTesting
{
NSString *testScope = [self testScope];
return (testScope != nil) && (![testScope isEqualToString:@""]) && (![testScope isEqualToString:SenTestScopeNone]);
}
+ (NSString *) testedBundlePath
{
static NSString *testedBundlePath = nil;
if (testedBundlePath == nil) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
if ([self isLoadedFromApplication] || [self isLoadedFromTool]) {
testedBundlePath = [[[NSBundle mainBundle] bundlePath] copy];
}
else {
testedBundlePath = [[[NSUserDefaults standardUserDefaults] stringForKey:SenTestedUnitPath] copy];
}
[pool release];
}
return testedBundlePath;
}
+ (SenTestSuite *) specifiedTestSuite
{
static SenTestSuite *specifiedTestSuite = nil;
if (specifiedTestSuite == nil) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSString *testScope = [self testScope];
if ([testScope isEqualToString:SenTestScopeAll]) {
ASSIGN (specifiedTestSuite, [SenTestSuite defaultTestSuite]);
}
else if ([testScope isEqualToString:SenTestScopeSelf]) {
ASSIGN (specifiedTestSuite, [SenTestSuite testSuiteForBundlePath:[self testedBundlePath]]);
}
else if (![testScope isEqualToString:SenTestScopeNone]) {
ASSIGN (specifiedTestSuite, [SenTestSuite testSuiteForTestCaseWithName:testScope]);
}
[pool release];
}
return specifiedTestSuite;
}
+ (void) runTestsAtUnitPath:(NSString *)path scope:(NSString *)scope
{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:path forKey:SenTestedUnitPath];
[defaults setObject:SenTestScopeSelf forKey:SenTestScopeKey];
[self runTests:nil];
}
+ (void) runTests:(id) ignored
{
BOOL hasFailed = NO;
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[[NSBundle allFrameworks] makeObjectsPerformSelector:@selector (principalClass)];
[SenTestObserver class]; // make sure an observer is loaded
hasFailed = ![[[self specifiedTestSuite] run] hasSucceeded];
[pool release];
exit ((int) hasFailed);
}
+ (void) initialize
{
if ([self isTesting]) {
if ([self isLoadedFromApplication]) {
// wait for the application to complete its own loading
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[self performSelector:@selector(runTests:) withObject:nil afterDelay:0.0];
[pool release];
}
else if (![[[NSProcessInfo processInfo] processName] isEqualToString: @"otest"]) {
#ifndef WIN32
[self runTests:nil];
// hangs on Windows. otest loads tests differently.
#endif
}
}
}
#if !defined(GNUSTEP) || (GNUSTEP && !GS_FAKE_MAIN)
// hangs on GNUstep with fake main defined. You should send a msg
// to initialize SenTestProbe in your main()
+ (void) load
{
[NSObject self];
[self class];
}
#endif
@end
int SenSelfTestMain()
/*" Call this function from your tool project's main() function "*/
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSString *path;
path = [[NSBundle mainBundle] bundlePath];
[SenTestProbe runTestsAtUnitPath:path scope:SenTestScopeSelf];
[pool release];
return 0;
}