ViewControllerTests.m
5.79 KB
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
//
// ViewControllerTests.m
// YH_Analytics
//
// Created by Zhou Rongjun on 15/4/29.
// Copyright (c) 2015年 YOHO. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import "ViewController.h"
#import "YH_Analytics.h"
//#import "YHCrashReporter.h"
@interface ViewControllerTests : XCTestCase {
@private
ViewController *vc;
id analyticsMock;
}
@end
@implementation ViewControllerTests
- (void)setUp {
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
NSLog(@"%@ setUp", self.name);
analyticsMock = OCMClassMock([YH_Analytics class]);
XCTAssertNotNil(analyticsMock, @"Cannot create YH_Analytics mock");
OCMStub([analyticsMock sharedInstance]).andReturn(analyticsMock);
// 从storyboard中获取一个viewcontrol
UIStoryboard *s = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
vc = [s instantiateViewControllerWithIdentifier:NSStringFromClass([ViewController class])];
[vc view];
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
analyticsMock = nil;
vc = nil;
[super tearDown];
NSLog(@"%@ tearDown", self.name);
}
#pragma mark - 验证UI是否存在
- (void)testEventButtonShouldBeConnected {
NSLog(@"%@ start", self.name);
XCTAssertNotNil([vc eventButton], @"eventButton should be connected.");
NSLog(@"%@ end", self.name);
}
- (void)testErrorButtonShouldBeConnected {
NSLog(@"%@ start", self.name);
XCTAssertNotNil([vc errorButton], @"errorButton should be connected.");
NSLog(@"%@ end", self.name);
}
- (void)testCrashButtonShouldBeConnected {
NSLog(@"%@ start", self.name);
XCTAssertNotNil([vc crashButton], @"crashButton should be connected.");
NSLog(@"%@ end", self.name);
}
- (void)testSegmentShouldBeConnected {
NSLog(@"%@ start", self.name);
XCTAssertNotNil([vc segment], @"segment should be connected.");
NSLog(@"%@ end", self.name);
}
#pragma mark - 验证UI触发的事件是否正确
- (void)testEventButtonAction {
NSLog(@"%@ start", self.name);
UIButton *button = [vc eventButton];
NSArray *selectorArray = [button actionsForTarget:vc forControlEvent:UIControlEventTouchUpInside];
XCTAssert([selectorArray containsObject:@"handleEventButtonClick:"]);
NSLog(@"%@ end", self.name);
}
- (void)testErrorButtonAction {
NSLog(@"%@ start", self.name);
UIButton *button = [vc errorButton];
NSArray *selectorArray = [button actionsForTarget:vc forControlEvent:UIControlEventTouchUpInside];
XCTAssert([selectorArray containsObject:@"handleErrorButtonClick:"]);
NSLog(@"%@ end", self.name);
}
- (void)testCrashButtonAction {
NSLog(@"%@ start", self.name);
UIButton *button = [vc crashButton];
NSArray *selectorArray = [button actionsForTarget:vc forControlEvent:UIControlEventTouchUpInside];
XCTAssert([selectorArray containsObject:@"handleCrashButtonClick:"]);
NSLog(@"%@ end", self.name);
}
- (void)testSegmentControlAction {
NSLog(@"%@ start", self.name);
UISegmentedControl *segment = [vc segment];
NSArray *selectorArray = [segment actionsForTarget:vc forControlEvent:UIControlEventValueChanged];
XCTAssert([selectorArray containsObject:@"handleSegmentClick:"]);
NSLog(@"%@ end", self.name);
}
#pragma mark - 验证UI触发事件后,是否达到预期效果
- (void)testEventButtonResult {
NSLog(@"%@ start", self.name);
OCMExpect([analyticsMock logEvent:[OCMArg any] parameters:[OCMArg any]]);
[vc.eventButton sendActionsForControlEvents: UIControlEventTouchUpInside];
OCMVerifyAll(analyticsMock);
NSLog(@"%@ end", self.name);
}
- (void)testErrorButtonResult {
NSLog(@"%@ start", self.name);
OCMExpect([analyticsMock logError:[OCMArg any] parameters:[OCMArg any]]);
[vc.errorButton sendActionsForControlEvents: UIControlEventTouchUpInside];
OCMVerifyAll(analyticsMock);
NSLog(@"%@ end", self.name);
}
- (void)testCrashButtonResult {
NSLog(@"%@ start", self.name);
// YHCrashReporter *crashReporter = [[YHCrashReporter alloc] init];
// id crashMock = OCMPartialMock(crashReporter);
//
// OCMExpect([crashMock handleNSException:[OCMArg any]]);
XCTAssertThrows([vc.crashButton sendActionsForControlEvents: UIControlEventTouchUpInside]);
// OCMVerifyAll(crashMock);
//
// crashMock = nil;
// crashReporter = nil;
NSLog(@"%@ end", self.name);
}
- (void)testSegmentControlFirstResult {
NSLog(@"%@ start", self.name);
OCMExpect([analyticsMock updateLogStrategy:LogStrategyAppLaunch customInterval:0]);
UISegmentedControl *segment = [vc segment];
segment.selectedSegmentIndex = 0;
[segment sendActionsForControlEvents: UIControlEventValueChanged];
OCMVerifyAll(analyticsMock);
NSLog(@"%@ end", self.name);
}
- (void)testSegmentControlSecondResult {
NSLog(@"%@ start", self.name);
OCMExpect([analyticsMock updateLogStrategy:LogStrategyCustom customInterval:1000]);
UISegmentedControl *segment = [vc segment];
segment.selectedSegmentIndex = 1;
[segment sendActionsForControlEvents: UIControlEventValueChanged];
OCMVerifyAll(analyticsMock);
NSLog(@"%@ end", self.name);
}
- (void)testSegmentControlThirdResult {
NSLog(@"%@ start", self.name);
OCMExpect([analyticsMock updateLogStrategy:LogStrategyImmedi customInterval:0]);
UISegmentedControl *segment = [vc segment];
segment.selectedSegmentIndex = 2;
[segment sendActionsForControlEvents: UIControlEventValueChanged];
OCMVerifyAll(analyticsMock);
NSLog(@"%@ end", self.name);
}
@end