YH_AnalyticsTests.m
3.13 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
//
// YH_AnalyticsTests.m
// YH_AnalyticsTests
//
// Created by Tiger on 15/2/2.
// Copyright (c) 2015年 YOHO. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import "YH_Analytics.h"
@interface YH_AnalyticsTests : XCTestCase {
@private
id mock;
}
@end
@implementation YH_AnalyticsTests
- (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);
mock = OCMClassMock([YH_Analytics class]);
XCTAssertNotNil(mock, @"Cannot create YH_Analytics mock");
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
mock = nil;
[super tearDown];
NSLog(@"%@ tearDown", self.name);
}
#pragma mark - 方法存在性验证
- (void)testStartWithAppIdMethodWithConstraint {
NSLog(@"%@ start", self.name); // self.name is the name of the test-case method.
[[mock expect] startWithAppId:[OCMArg isKindOfClass:[NSString class]]];
[mock startWithAppId:@"appId"];
[mock verify];
NSLog(@"%@ end", self.name);
}
- (void)testLogEventMethodWithConstraint {
NSLog(@"%@ start", self.name);
[[mock expect] logEvent:[OCMArg isKindOfClass:[NSString class]] parameters:[OCMArg isKindOfClass:[NSDictionary class]]];
[mock logEvent:@"event" parameters:@{@"key":@"value"}];
[mock verify];
NSLog(@"%@ end", self.name);
}
- (void)testLogErrorMethodWithConstraint {
NSLog(@"%@ start", self.name);
[[mock expect] logError:[OCMArg isKindOfClass:[NSString class]] parameters:[OCMArg isKindOfClass:[NSDictionary class]]];
[mock logError:@"error" parameters:@{@"key":@"value"}];
[mock verify];
NSLog(@"%@ end", self.name);
}
- (void)testUpdateLogStrategyCustomIntervalMethod {
NSLog(@"%@ start", self.name);
[[mock expect] updateLogStrategy:LogStrategyCustom customInterval:1000];
[mock updateLogStrategy:LogStrategyCustom customInterval:1000];
[mock verify];
NSLog(@"%@ end", self.name);
}
#pragma mark - Test Property
- (void)testUid {
NSLog(@"%@ start", self.name);
[[mock expect] uid];
[mock uid];
[mock verify];
NSLog(@"%@ end", self.name);
}
- (void)testChannelId {
NSLog(@"%@ start", self.name);
[[mock expect] channelId];
[mock channelId];
[mock verify];
NSLog(@"%@ end", self.name);
}
- (void)testLogStrategy {
NSLog(@"%@ start", self.name);
[[mock expect] logStrategy];
[mock logStrategy];
[mock verify];
NSLog(@"%@ end", self.name);
}
- (void)testCurrentInterval {
NSLog(@"%@ start", self.name);
[[mock expect] currentInterval];
[mock currentInterval];
[mock verify];
NSLog(@"%@ end", self.name);
}
- (void)testEvent {
NSLog(@"%@ start", self.name);
[[mock expect] event];
[mock event];
[mock verify];
NSLog(@"%@ end", self.name);
}
- (void)testError {
NSLog(@"%@ start", self.name);
[[mock expect] error];
[mock error];
[mock verify];
NSLog(@"%@ end", self.name);
}
@end