YHNetworkServiceTests.m
2.16 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
//
// YHNetworkServiceTests.m
// YH_Analytics
//
// Created by Zhou Rongjun on 15/4/28.
// Copyright (c) 2015年 YOHO. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import "YHNetworkService.h"
@interface YHNetworkService (XCTestCase)
@property (copy, nonatomic, readonly) YHNetworkReachabilityStatusBlock networkReachabilityStatusBlock;
@end
@interface YHNetworkServiceTests : XCTestCase {
@private
id mock;
}
@end
@implementation YHNetworkServiceTests
- (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([YHNetworkService class]);
XCTAssertNotNil(mock, @"Cannot create YHNetworkService 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);
}
- (void)testSetReachabilityStatusChangeBlockMethod {
NSLog(@"%@ start", self.name);
OCMExpect([mock setReachabilityStatusChangeBlock:[OCMArg any]]);
[mock setReachabilityStatusChangeBlock:[OCMArg any]];
OCMVerifyAll(mock);
NSLog(@"%@ end", self.name);
}
- (void)testUploadLogDataMethod {
NSLog(@"%@ start", self.name);
NSURLSessionDataTask *task = [NSURLSessionDataTask new];
OCMExpect([mock uploadLogData:[OCMArg any] completionBlock:[OCMArg any]]).andReturn(operation);
id returnValue = [mock uploadLogData:[OCMArg any] completionBlock:[OCMArg any]];
OCMVerifyAll(mock);
XCTAssertEqualObjects(task, returnValue);
NSLog(@"%@ end", self.name);
}
- (void)testGetNewStrategyMethod {
NSLog(@"%@ start", self.name);
NSURLSessionDataTask *task = [NSURLSessionDataTask new];
OCMExpect([mock getNewLogStrategy:[OCMArg any] completionBlock:[OCMArg any]]).andReturn(operation);
id returnValue = [mock getNewLogStrategy:[OCMArg any] completionBlock:[OCMArg any]];
OCMVerifyAll(mock);
XCTAssertEqualObjects(task, returnValue);
NSLog(@"%@ end", self.name);
}
@end