How to mock location service using KIF-framework(如何使用 KIF 框架模拟位置服务)
问题描述
我使用 KIF 框架(
可能是最好的:无需更改代码.
I use KIF framework (http://github.com/kif-framework/KIF) for UI Tests and I need to mock location service.
The problem is location service starts BEFORE KIF method -beforeAll invoked. So it's too late to mock.
Any suggestions would be appreciated.
In my KIF target I have a BaseKIFSearchTestCase : KIFTestCase
, where I overwrite CLLocationManager`s startUpdatingLocation in a category.
Note that this is the only category overwrite I ever made as this is really not a good idea in general. but in a test target I can accept it.
#import <CoreLocation/CoreLocation.h>
#ifdef TARGET_IPHONE_SIMULATOR
@interface CLLocationManager (Simulator)
@end
@implementation CLLocationManager (Simulator)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wobjc-protocol-method-implementation"
-(void)startUpdatingLocation
{
CLLocation *fakeLocation = [[CLLocation alloc] initWithLatitude:41.0096334 longitude:28.9651646];
[self.delegate locationManager:self didUpdateLocations:@[fakeLocation]];
}
#pragma clang diagnostic pop
@end
#endif // TARGET_IPHONE_SIMULATOR
#import "BaseKIFSearchTestCase.h"
@interface BaseKIFSearchTestCase ()
@end
@implementation BaseKIFSearchTestCase
//...
@end
Cleaner would be to have a subclass of CLLocationManager
in your application target and another subclass with the same name in your test target that send fake location like shown above. But if this is possible depends on how your test target is set up, as it actually need to be an application target as Calabash uses it.
Yet another way:
in your project create another configuration "Testing", cloning "Debug"
add the
Preprocessor Macro
TESTING=1
to that configuration.Subclass
CLLocationManager
use that subclass where you would use CLLocaltionManger
conditionally compile that class
#import "GELocationManager.h" @implementation GELocationManager -(void)startUpdatingLocation { #if TESTING==1 #warning Testmode dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ CLLocation *fakeLocation = [[CLLocation alloc] initWithLatitude:41.0096334 longitude:28.9651646]; [self.delegate locationManager:self didUpdateLocations:@[fakeLocation]]; }); #else [super startUpdatingLocation]; #endif } @end
in your test targets scheme choose the new configuration
And yet another option:
Probably the best: no code needs to be changed.
这篇关于如何使用 KIF 框架模拟位置服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 KIF 框架模拟位置服务


基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01