YHDeviceTests.m
6.32 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
//
// YHDeviceTests.m
// YH_Analytics
//
// Created by Zhou Rongjun on 15/4/15.
// Copyright (c) 2015年 YOHO. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import "YHDevice.h"
@interface YHDeviceTests : XCTestCase {
@private
YHDevice *device;
}
@end
@implementation YHDeviceTests
- (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);
device = [[YHDevice alloc] init];
XCTAssertNotNil(device, @"Cannot create YHDevice instance.");
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
device = nil;
[super tearDown];
NSLog(@"%@ tearDown", self.name);
}
#pragma mark - super property
- (void)testDataType {
NSLog(@"%@ start", self.name);
YHItemDataType type = [device dataType];
XCTAssert(type == YHItemDataTypeDevice, @"Device dataType must be YHItemDataTypeDevice.");
NSLog(@"%@ end", self.name);
}
- (void)testJsonDictionaryNotNil {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
XCTAssertNotNil(jsonDictionary, @"Device jsonDictionary can't be nil.");
NSLog(@"%@ end", self.name);
}
#pragma mark - self property
- (void)testSvNotNil {
NSLog(@"%@ start", self.name);
NSString *sv = [device sv];
XCTAssertNotNil(sv, @"Device sv can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testChNotNil {
NSLog(@"%@ start", self.name);
NSString *ch = [device ch];
XCTAssertNotNil(ch, @"Device ch can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testOsNotNil {
NSLog(@"%@ start", self.name);
NSString *os = [device os];
XCTAssertNotNil(os, @"Device os can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testOsvNotNil {
NSLog(@"%@ start", self.name);
NSString *osv = [device osv];
XCTAssertNotNil(osv, @"Device osv can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testDmNotNil {
NSLog(@"%@ start", self.name);
NSString *dm = [device dm];
XCTAssertNotNil(dm, @"Device dm can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testUdidNotNil {
NSLog(@"%@ start", self.name);
NSString *udid = [device udid];
XCTAssertNotNil(udid, @"Device udid can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testIfaNotNil {
NSLog(@"%@ start", self.name);
NSString *ifa = [device ifa];
XCTAssertNotNil(ifa, @"Device ifa can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testIfvNotNil {
NSLog(@"%@ start", self.name);
NSString *ifv = [device ifv];
XCTAssertNotNil(ifv, @"Device ifv can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testResNotNil {
NSLog(@"%@ start", self.name);
NSString *res = [device res];
XCTAssertNotNil(res, @"Device res can't be nil.");
NSLog(@"%@ end", self.name);
}
- (void)testMacNotNil {
NSLog(@"%@ start", self.name);
NSString *mac = [device mac];
XCTAssertNotNil(mac, @"Device mac can't be nil.");
NSLog(@"%@ end", self.name);
}
#pragma mark - value for json key
- (void)testValueForJsonKeyDeviceSV{
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceSV];
XCTAssert(value, @"JsonKeyDeviceSV value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceAK {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceAK];
XCTAssert(value, @"JsonKeyDeviceAK value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceCH {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceCH];
XCTAssert(value, @"JsonKeyDeviceCH value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceOS {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceOS];
XCTAssert(value, @"JsonKeyDeviceOS value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceOSV {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceOSV];
XCTAssert(value, @"JsonKeyDeviceOSV value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceDM {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceDM];
XCTAssert(value, @"JsonKeyDeviceDM value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceUDID {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceUDID];
XCTAssert(value, @"JsonKeyDeviceUDID value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceIFA {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceIFA];
XCTAssert(value, @"JsonKeyDeviceIFA value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceIFV {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceIFV];
XCTAssert(value, @"JsonKeyDeviceIFV value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceRES {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceRES];
XCTAssert(value, @"JsonKeyDeviceRES value doesn't exist.");
NSLog(@"%@ end", self.name);
}
- (void)testValueForJsonKeyDeviceMAC {
NSLog(@"%@ start", self.name);
NSDictionary *jsonDictionary = [device jsonDictionary];
id value = [jsonDictionary objectForKey:JsonKeyDeviceMAC];
XCTAssert(value, @"JsonKeyDeviceMAC value doesn't exist.");
NSLog(@"%@ end", self.name);
}
@end