iOS 单元测试异步 Api, MVP + Kiwi + Mock

摘要

现在大部分的iOS应用都是先从网络获取数据,在做相应的处理,数据的获取一般是在异步线程里做,所以做单元测试比较麻烦。这里主要介绍Kiwi 的用法,Kiwi 是 unit test 框架,已经封装好了很多XTest 的Api ,使用起来非常方便。项目结构是用MVP 架构的,因为这种架构比较容易进行测试。项目的测试Demo 已发到Github,https://github.com/Alimjan2009/AAMVPUnitTest

1. 准备好项目

测试demo

我的测试demo 功能很简单,点击获取信息按钮以后,发送http 请求获取数据,再展示到label 里边
相应的代码如下:

  • PlaceInfoViewController.m
//
//  PlaceInfoViewController.m
//  AAMVPUnitTest
//
#import "PlaceInfoViewController.h"
#import "PlaceInfoPresenter.h"
@interface PlaceInfoViewController ()<PlaceInfoViewImpl>
@property (weak, nonatomic) IBOutlet UITextField *place;
@property (weak, nonatomic) IBOutlet UILabel *result;
@end
@implementation PlaceInfoViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    _presenter = [[PlaceInfoPresenter alloc]initWithView:self];
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
- (IBAction)onGetPlaceInfoPressed:(id)sender {
    [_presenter loadDate:_place.text];
}
-(void)showResult:(NSString*)res{
    _result.text = res;
}
@end
  • PlaceInfoViewController.h
#import <UIKit/UIKit.h>
#import "PlaceInfoPresenter.h"
@interface PlaceInfoViewController : UIViewController
@property (nonatomic, strong) PlaceInfoPresenter *presenter;
@end
  • PlaceInfoPresenter.m
//
//  PlaceInfoPresenter.m
//  AAMVPUnitTest
//

#import "PlaceInfoPresenter.h"
#import "AFNetworking.h"
@implementation PlaceInfoPresenter
- (instancetype)initWithView:(id<PlaceInfoViewImpl>) view
{
    self = [super init];
    if (self) {
        self.view = view;
    }
    return self;
}
-(void)loadDate:(NSString*)placeName{
    AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
    [manager.requestSerializer setValue:@"application/json" forHTTPHeaderField:@"Accept"];
    
    manager.responseSerializer =[AFJSONResponseSerializer serializer];
    
    manager.responseSerializer.acceptableContentTypes =  [NSSet setWithObjects:@"application/json",@"text/plain", @"text/html",@"text/json",@"text/javascript", nil];
    //2.设置登录参数
    NSDictionary *dict = @{ @"a":placeName};
    
    //3.请求
    [manager GET:@"http://gc.ditu.aliyun.com/geocoding" parameters:dict success: ^(AFHTTPRequestOperation *operation, id responseObject) {
        NSError *parseError = nil;
        
        NSData *jsonData = [NSJSONSerialization dataWithJSONObject:responseObject options:NSJSONWritingPrettyPrinted error:&parseError];
        
        if(_view!=nil)
            [_view showResult:[[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]];
    } failure: ^(AFHTTPRequestOperation *operation, NSError *error) {
        
    }];
}
@end

  • PlaceInfoPresenter.h
//
//  PlaceInfoPresenter.h
//  AAMVPUnitTest
//
//  Created by Alimjan on 16/5/4.
//  Copyright © 2016年 Alimjan. All rights reserved.
//

#import <Foundation/Foundation.h>

@protocol PlaceInfoViewImpl
-(void)showResult:(NSString*)res;
@end

@protocol PlaceInfoPresenterImpl
-(void)loadDate:(NSString*)placeName;
@end

@interface PlaceInfoPresenter : NSObject<PlaceInfoPresenterImpl>
@property (nonatomic, strong) id<PlaceInfoViewImpl> view;

- (instancetype)initWithView:(id<PlaceInfoViewImpl>) view;
@end

2. 集成kiwi

Kiwi 用cocopods 安装非常方便。以下是我的Podfile

target 'AAMVPUnitTestTests' , :exclusive => true do
  pod 'Kiwi'
end

3. 写测试模块

创建一个m 文件,并按照kiwi 格式写测试模块。我们的presenter 获取数据成功后,会调用showresult ,所以我们只要判断showresult 是否有被调用,就能判断接口是否成功
要是不知道mock 是什么,可以查看Kiwi 的手册。

  • PlaceInfoTestSpec.m
//
//  PlaceInfoTestSpec.m
//  AAMVPUnitTest
//
//  Created by Alimjan on 16/5/4.
//  Copyright 2016年 Alimjan. All rights reserved.
//

#import <Kiwi/Kiwi.h>
#import "PlaceInfoViewController.h"
#import "PlaceInfoPresenter.h"
SPEC_BEGIN(PlaceInfoTestSpec)

describe(@"PlaceInfoTest", ^{
    it(@"place info presenter test", ^{
        //
        // mock the view and stub the showResult method
       // 我们要测试api, 不关心view, 所以我们可以mock view
        id viewMock = [KWMock mockForProtocol:@protocol(PlaceInfoViewImpl)];
        [ [viewMock should] conformToProtocol:@protocol(PlaceInfoViewImpl)];
        
        [viewMock stub:@selector(showResult:) ];
        
        // init presenter
        // 初始化我们的presenter
        PlaceInfoPresenter *presenter = [[PlaceInfoPresenter alloc]initWithView:viewMock];
        
        // send asnc request
        // 测试我们的 业务
        [presenter loadDate:@"北京"];
        
        //wait until the show result called
      // 等待3秒,知道show result 方法被调用。我们的presenter 获取数据成功后,会调用showresult ,所以我们只要判断showresult 是否有被调用,就能判断接口是否成功
        [[viewMock shouldEventuallyBeforeTimingOutAfter(3.0)]receive:@selector(showResult:) withCount:1];
      });
  });
SPEC_END
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容