-
Notifications
You must be signed in to change notification settings - Fork 437
/
FBSimulatorTestInjectionTests.m
266 lines (211 loc) · 8.69 KB
/
FBSimulatorTestInjectionTests.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import <XCTest/XCTest.h>
#import <XCTestBootstrap/XCTestBootstrap.h>
#import <FBSimulatorControl/FBSimulatorControl.h>
#import "CoreSimulatorDoubles.h"
#import "FBSimulatorControlTestCase.h"
#import "FBSimulatorControlFixtures.h"
#import "FBSimulatorControlAssertions.h"
@interface FBSimulatorTestInjection : FBSimulatorControlTestCase <FBXCTestReporter>
@property (nonatomic, strong, readwrite) NSMutableSet *passedMethods;
@property (nonatomic, strong, readwrite) NSMutableSet *failedMethods;
@end
@implementation FBSimulatorTestInjection
#pragma mark Lifecycle
- (void)setUp
{
[super setUp];
self.passedMethods = [NSMutableSet set];
self.failedMethods = [NSMutableSet set];
}
#pragma mark Tests
- (nullable FBSimulator *)assertObtainsBootedSimulatorWithTableSearch
{
FBSimulator *simulator = [self assertObtainsBootedSimulator];
if (!simulator) {
return nil;
}
NSError *error = nil;
BOOL success = [[simulator installApplicationWithPath:self.tableSearchApplication.path] await:&error] != nil;
XCTAssertNil(error);
XCTAssertTrue(success);
return simulator;
}
- (void)assertLaunchesTestWithConfiguration:(FBTestLaunchConfiguration *)testLaunch reporter:(id<FBXCTestReporter>)reporter simulator:(FBSimulator *)simulator
{
NSError *error = nil;
id result = [[simulator runTestWithLaunchConfiguration:testLaunch reporter:reporter logger:simulator.logger] await:&error];
XCTAssertNil(error);
XCTAssertNotNil(result);
}
- (void)testInjectsApplicationTestIntoSampleApp
{
FBSimulator *simulator = [self assertObtainsBootedSimulatorWithTableSearch];
[self assertLaunchesTestWithConfiguration:self.testLaunchTableSearch reporter:self simulator:simulator];
[self assertPassed:@[@"testIsRunningOnIOS", @"testIsRunningInIOSApp", @"testPossibleCrashingOfHostProcess", @"testPossibleStallingOfHostProcess", @"testWillAlwaysPass", @"testAsyncExpectationPassing"]
failed:@[@"testHostProcessIsMobileSafari", @"testHostProcessIsXctest", @"testIsRunningInMacOSXApp", @"testIsRunningOnMacOSX", @"testWillAlwaysFail", @"testAsyncExpectationFailing"]];
}
- (void)testInjectsApplicationTestIntoSafari
{
FBSimulator *simulator = [self assertObtainsBootedSimulator];
[self assertLaunchesTestWithConfiguration:self.testLaunchSafari reporter:self simulator:simulator];
[self assertPassed:@[@"testIsRunningOnIOS", @"testIsRunningInIOSApp", @"testHostProcessIsMobileSafari", @"testPossibleCrashingOfHostProcess", @"testPossibleStallingOfHostProcess", @"testWillAlwaysPass", @"testAsyncExpectationPassing"]
failed:@[@"testHostProcessIsXctest", @"testIsRunningInMacOSXApp", @"testIsRunningOnMacOSX", @"testWillAlwaysFail", @"testAsyncExpectationFailing"]];
}
- (void)testInjectsApplicationTestWithCustomOutputConfiguration
{
NSString *path = [NSTemporaryDirectory() stringByAppendingPathComponent:NSUUID.UUID.UUIDString];
XCTAssertTrue([[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil]);
NSString *stdErrPath = [path stringByAppendingPathComponent:@"stderr.log"];
NSString *stdOutPath = [path stringByAppendingPathComponent:@"stdout.log"];
FBProcessIO *io = [[FBProcessIO alloc]
initWithStdIn:nil
stdOut:[FBProcessOutput outputForFilePath:stdOutPath]
stdErr:[FBProcessOutput outputForFilePath:stdErrPath]];
FBApplicationLaunchConfiguration *applicationLaunchConfiguration = [[FBApplicationLaunchConfiguration alloc]
initWithBundleID:self.safariAppLaunch.bundleID
bundleName:self.safariAppLaunch.bundleName
arguments:self.safariAppLaunch.arguments
environment:self.safariAppLaunch.environment
waitForDebugger:NO
io:io
launchMode:self.safariAppLaunch.launchMode];
FBTestLaunchConfiguration *testLaunch = [[FBTestLaunchConfiguration alloc]
initWithTestBundle:self.testLaunchSafari.testBundle
applicationLaunchConfiguration:applicationLaunchConfiguration
testHostBundle:nil
timeout:0
initializeUITesting:NO
useXcodebuild:NO
testsToRun:nil
testsToSkip:nil
targetApplicationBundle:nil
xcTestRunProperties:nil
resultBundlePath:nil
reportActivities:NO
coverageDirectoryPath:nil
enableContinuousCoverageCollection:NO
logDirectoryPath:nil
reportResultBundle:NO];
FBSimulator *simulator = [self assertObtainsBootedSimulator];
[self assertLaunchesTestWithConfiguration:testLaunch reporter:self simulator:simulator];
NSFileManager *fileManager = [NSFileManager defaultManager];
XCTAssertTrue([fileManager fileExistsAtPath:stdErrPath]);
XCTAssertTrue([fileManager fileExistsAtPath:stdOutPath]);
NSString *stdErrContent = [[NSString alloc] initWithContentsOfFile:stdErrPath encoding:NSUTF8StringEncoding error:nil];
XCTAssertTrue([stdErrContent containsString:@"Started running iOSUnitTestFixtureTests"]);
}
- (void)assertPassed:(NSArray<NSString *> *)passed failed:(NSArray<NSString *> *)failed
{
XCTAssertEqualObjects(self.passedMethods, [NSSet setWithArray:passed]);
XCTAssertEqualObjects(self.failedMethods, [NSSet setWithArray:failed]);
}
- (void)testInjectsApplicationTestWithTestsToRun
{
FBSimulator *simulator = [self assertObtainsBootedSimulator];
FBTestLaunchConfiguration *testLaunch = [[FBTestLaunchConfiguration alloc]
initWithTestBundle:self.testLaunchSafari.testBundle
applicationLaunchConfiguration:self.safariAppLaunch
testHostBundle:nil
timeout:0
initializeUITesting:NO
useXcodebuild:NO
testsToRun:[NSSet setWithArray:@[@"iOSUnitTestFixtureTests/testIsRunningOnIOS", @"iOSUnitTestFixtureTests/testWillAlwaysFail"]]
testsToSkip:nil
targetApplicationBundle:nil
xcTestRunProperties:nil
resultBundlePath:nil
reportActivities:NO
coverageDirectoryPath:nil
enableContinuousCoverageCollection:NO
logDirectoryPath:nil
reportResultBundle:NO];
[self assertLaunchesTestWithConfiguration:testLaunch reporter:self simulator:simulator];
[self assertPassed:@[@"testIsRunningOnIOS"]
failed:@[@"testWillAlwaysFail"]];
}
- (void)testInjectsApplicationTestWithTestsToSkip
{
FBSimulator *simulator = [self assertObtainsBootedSimulator];
FBTestLaunchConfiguration *testLaunch = [[FBTestLaunchConfiguration alloc]
initWithTestBundle:self.testLaunchSafari.testBundle
applicationLaunchConfiguration:self.safariAppLaunch
testHostBundle:nil
timeout:0
initializeUITesting:NO
useXcodebuild:NO
testsToRun:nil
testsToSkip:[NSSet setWithArray:@[@"iOSUnitTestFixtureTests/testIsRunningOnIOS", @"iOSUnitTestFixtureTests/testWillAlwaysFail"]]
targetApplicationBundle:nil
xcTestRunProperties:nil
resultBundlePath:nil
reportActivities:NO
coverageDirectoryPath:nil
enableContinuousCoverageCollection:NO
logDirectoryPath:nil
reportResultBundle:NO];
[self assertLaunchesTestWithConfiguration:testLaunch reporter:self simulator:simulator];
[self assertPassed:@[@"testIsRunningInIOSApp", @"testHostProcessIsMobileSafari", @"testPossibleCrashingOfHostProcess", @"testPossibleStallingOfHostProcess", @"testWillAlwaysPass"]
failed:@[@"testHostProcessIsXctest", @"testIsRunningInMacOSXApp", @"testIsRunningOnMacOSX"]];
}
#pragma mark FBXCTestReporter
- (void)didBeginExecutingTestPlan
{
}
- (void)testSuite:(NSString *)testSuite didStartAt:(NSString *)startTime
{
}
- (void)testCaseDidFinishForTestClass:(NSString *)testClass method:(NSString *)method withStatus:(FBTestReportStatus)status duration:(NSTimeInterval)duration logs:(NSArray<NSString *> *)logs
{
switch (status) {
case FBTestReportStatusPassed:
[self.passedMethods addObject:method];
break;
case FBTestReportStatusFailed:
[self.failedMethods addObject:method];
case FBTestReportStatusUnknown:
break;
}
}
- (void)testBundleReadyWithProtocolVersion:(NSInteger)protocolVersion minimumVersion:(NSInteger)minimumVersion
{
}
- (void)testCaseDidStartForTestClass:(NSString *)testClass method:(NSString *)method
{
}
- (void)finishedWithSummary:(FBTestManagerResultSummary *)summary
{
XCTAssertNotNil(summary.finishTime);
XCTAssertNotNil(summary.testSuite);
}
- (void)didFinishExecutingTestPlan
{
}
- (void)processUnderTestDidExit
{
}
- (void)didCrashDuringTest:(NSError *)error
{
}
- (void)handleExternalEvent:(NSString *)event
{
}
- (BOOL)printReportWithError:(NSError **)error
{
return YES;
}
- (void)processWaitingForDebuggerWithProcessIdentifier:(pid_t)pid
{
}
- (void)testHadOutput:(NSString *)output
{
}
- (void)testCaseDidFailForTestClass:(nonnull NSString *)testClass method:(nonnull NSString *)method exceptions:(nonnull NSArray<FBExceptionInfo *> *)exceptions
{
}
@end