forked from gh-unit/gh-unit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGHUnitIOSTestViewController.m
126 lines (110 loc) · 4.88 KB
/
GHUnitIOSTestViewController.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
//
// GHUnitIOSTestViewController.m
// GHUnitIOS
//
// Created by Gabriel Handford on 2/20/09.
// Copyright 2009. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
//
#import "GHUnitIOSTestViewController.h"
#import "GHViewTestCase.h"
@implementation GHUnitIOSTestViewController
- (id)init {
if ((self = [super init])) {
UIBarButtonItem *runButton = [[UIBarButtonItem alloc] initWithTitle:@"Re-run" style:UIBarButtonItemStyleDone
target:self action:@selector(_runTest)];
self.navigationItem.rightBarButtonItem = runButton;
}
return self;
}
- (void)loadView {
testView_ = [[GHUnitIOSTestView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
testView_.controlDelegate = self;
self.view = testView_;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
- (void)_runTest {
id<GHTest> test = [testNode_.test copyWithZone:NULL];
NSLog(@"Re-running: %@", test);
[testView_ setText:@"Running..."];
[test run:GHTestOptionForceSetUpTearDownClass];
[self setTest:test];
}
- (void)_showImageDiff {
if (!imageDiffView_) imageDiffView_ = [[GHImageDiffView alloc] initWithFrame:CGRectZero];
UIImage *savedImage = [testNode_.test.exception.userInfo objectForKey:@"SavedImage"];
UIImage *renderedImage = [testNode_.test.exception.userInfo objectForKey:@"RenderedImage"];
UIImage *diffImage = [testNode_.test.exception.userInfo objectForKey:@"DiffImage"];
[imageDiffView_ setSavedImage:savedImage renderedImage:renderedImage diffImage:diffImage];
UIViewController *viewController = [[UIViewController alloc] init];
viewController.view = imageDiffView_;
[self.navigationController pushViewController:viewController animated:YES];
}
- (NSString *)updateTestView {
NSMutableString *text = [NSMutableString stringWithCapacity:200];
[text appendFormat:@"%@ %@\n", [testNode_ identifier], [testNode_ statusString]];
NSString *log = [testNode_ log];
if (log) [text appendFormat:@"\nLog:\n%@\n", log];
NSString *stackTrace = [testNode_ stackTrace];
if (stackTrace) [text appendFormat:@"\n%@\n", stackTrace];
if ([testNode_.test.exception.name isEqualToString:@"GHViewChangeException"]) {
NSDictionary *exceptionUserInfo = testNode_.test.exception.userInfo;
UIImage *savedImage = [exceptionUserInfo objectForKey:@"SavedImage"];
UIImage *renderedImage = [exceptionUserInfo objectForKey:@"RenderedImage"];
[testView_ setSavedImage:savedImage renderedImage:renderedImage text:text];
} else if ([testNode_.test.exception.name isEqualToString:@"GHViewUnavailableException"]) {
NSDictionary *exceptionUserInfo = testNode_.test.exception.userInfo;
UIImage *renderedImage = [exceptionUserInfo objectForKey:@"RenderedImage"];
[testView_ setSavedImage:nil renderedImage:renderedImage text:text];
} else {
[testView_ setText:text];
}
return text;
}
- (void)setTest:(id<GHTest>)test {
[self view];
self.title = [test name];
testNode_ = [GHTestNode nodeWithTest:test children:nil source:nil];
NSString *text = [self updateTestView];
NSLog(@"%@", text);
}
#pragma mark Delegates (GHUnitIOSTestView)
- (void)testViewDidSelectSavedImage:(GHUnitIOSTestView *)testView {
[self _showImageDiff];
[imageDiffView_ showSavedImage];
}
- (void)testViewDidSelectRenderedImage:(GHUnitIOSTestView *)testView {
[self _showImageDiff];
[imageDiffView_ showRenderedImage];
}
- (void)testViewDidApproveChange:(GHUnitIOSTestView *)testView {
// Save new image as the approved version
NSString *imageFilename = [testNode_.test.exception.userInfo objectForKey:@"ImageFilename"];
UIImage *renderedImage = [testNode_.test.exception.userInfo objectForKey:@"RenderedImage"];
[GHViewTestCase saveApprovedViewTestImage:renderedImage filename:imageFilename];
testNode_.test.status = GHTestStatusSucceeded;
[self _runTest];
}
@end