我正在尝试将 OHHTTPStubs 设置为与 Alamofire 一起用于我的单元测试,但在使用 Alamofire 时它们似乎总是从实时网络加载。我已关闭在测试目标中使用主机应用程序,并确保首先使用 OHHTTPStubs。
这是一个示例测试,其中从 Alamofire 加载的结果来自实时网络:
import XCTest
import OHHTTPStubs
import Alamofire
@testable import TestAlamoFireStubs
class TestAlamoFireStubsTests: XCTestCase {
let responseText = "{'data':'val'}"
override func setUp() {
super.setUp()
stub(isHost("httpbin.org")) {request -> OHHTTPStubsResponse in
let stubData = self.responseText.dataUsingEncoding(NSUTF8StringEncoding)
return OHHTTPStubsResponse(data:stubData!, statusCode:200, headers:nil)
}
}
func testNSURLSession(){
let expectation = expectationWithDescription("Check NSURLSession")
let url = NSURL(string:"https://httpbin.org/get")
let dataTask = NSURLSession.sharedSession().dataTaskWithURL(url!){ data, response, error in
let responseString = NSString(data:data!, encoding:NSUTF8StringEncoding) as? String
XCTAssertEqual(responseString, self.responseText) // succeeds
expectation.fulfill()
}
dataTask.resume()
waitForExpectationsWithTimeout(10, handler:nil)
}
func testAlamofire() {
let expectation = expectationWithDescription("Check Alamofire")
Alamofire.request(.GET, "https://httpbin.org/get").response{ request, response, data, error in
let responseString = NSString(data:data!, encoding:NSUTF8StringEncoding) as? String
XCTAssertEqual(responseString, self.responseText) // fails
expectation.fulfill()
}
waitForExpectationsWithTimeout(10, handler:nil)
}
}
以及示例项目的链接: https://www.dropbox.com/s/b0qdvjpk8t6r525/TestAlamoFireStubs.zip
最佳答案
至少在我的特殊情况下,我能够通过使用自定义 NSURLSession 和配置创建自定义管理器将 Alamofire 绑定(bind)到 OHHTTPStubs
import XCTest
import Alamofire
import OHHTTPStubs
@testable import AlamofireOHHTTPStubs
class AlamofireOHHTTPStubsTests: XCTestCase {
let manager: Manager = {
let configuration = NSURLSession.sharedSession().configuration
//The most important string!
OHHTTPStubs.setEnabled(true, forSessionConfiguration: configuration)
configuration.URLCache = nil
let delegate = Manager.SessionDelegate()
let session = NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil)
return Manager(session: session, delegate: delegate)!
}()
let responseText = "{\"data\":\"val\"}"
func testAlamofireOHHTTPStubs() {
stub(isHost("httpbin.org")) { request -> OHHTTPStubsResponse in
let stubData = self.responseText.dataUsingEncoding(NSUTF8StringEncoding)
return OHHTTPStubsResponse(data:stubData!, statusCode:200, headers:nil)
}
let expectation = expectationWithDescription("alamofire request expectation")
manager.request(.GET, "https://httpbin.org/get").responseJSON { (response) in
switch response.result {
case .Success(let json as NSDictionary):
XCTAssertEqual(json["data"] as? String, "val")
default:
XCTFail()
}
expectation.fulfill()
}
waitForExpectationsWithTimeout(1.0, handler: nil)
}
}
关于ios - 让 Alamofire 和 OHHTTPStubs 一起工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36361812/
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我花了三天的时间用头撞墙,试图弄清楚为什么简单的“rake”不能通过我的规范文件。如果您遇到这种情况:任何文件夹路径中都不要有空格!。严重地。事实上,从现在开始,您命名的任何内容都没有空格。这是我的控制台输出:(在/Users/*****/Desktop/LearningRuby/learn_ruby)$rake/Users/*******/Desktop/LearningRuby/learn_ruby/00_hello/hello_spec.rb:116:in`require':cannotloadsuchfile--hello(LoadError) 最佳
关闭。这个问题需要detailsorclarity.它目前不接受答案。想改进这个问题吗?通过editingthispost添加细节并澄清问题.关闭8年前。Improvethisquestion在首页我有:汽车:VolvoSaabMercedesAudistatic_pages_spec.rb中的测试代码:it"shouldhavetherightselect"dovisithome_pathit{shouldhave_select('cars',:options=>['volvo','saab','mercedes','audi'])}end响应是rspec./spec/request
在Rails4.0.2中,我使用s3_direct_upload和aws-sdkgems直接为s3存储桶上传文件。在开发环境中它工作正常,但在生产环境中它会抛出如下错误,ActionView::Template::Error(noimplicitconversionofnilintoString)在View中,create_cv_url,:id=>"s3_uploader",:key=>"cv_uploads/{unique_id}/${filename}",:key_starts_with=>"cv_uploads/",:callback_param=>"cv[direct_uplo
这里有一个很好的答案解释了如何在Ruby中下载文件而不将其加载到内存中:https://stackoverflow.com/a/29743394/4852737require'open-uri'download=open('http://example.com/image.png')IO.copy_stream(download,'~/image.png')我如何验证下载文件的IO.copy_stream调用是否真的成功——这意味着下载的文件与我打算下载的文件完全相同,而不是下载一半的损坏文件?documentation说IO.copy_stream返回它复制的字节数,但是当我还没有下
如果我使用ruby版本2.5.1和Rails版本2.3.18会怎样?我有基于rails2.3.18和ruby1.9.2p320构建的rails应用程序,我只想升级ruby的版本,而不是rails,这可能吗?我必须面对哪些挑战? 最佳答案 GitHub维护apublicfork它有针对旧Rails版本的分支,有各种变化,它们一直在运行。有一段时间,他们在较新的Ruby版本上运行较旧的Rails版本,而不是最初支持的版本,因此您可能会发现一些关于需要向后移植的有用提示。不过,他们现在已经有几年没有使用2.3了,所以充其量只能让更
我正在尝试解析一个文本文件,该文件每行包含可变数量的单词和数字,如下所示:foo4.500bar3.001.33foobar如何读取由空格而不是换行符分隔的文件?有什么方法可以设置File("file.txt").foreach方法以使用空格而不是换行符作为分隔符? 最佳答案 接受的答案将slurp文件,这可能是大文本文件的问题。更好的解决方案是IO.foreach.它是惯用的,将按字符流式传输文件:File.foreach(filename,""){|string|putsstring}包含“thisisanexample”结果的
使用Ruby1.9.2运行IDE提示说需要gemruby-debug-base19x并提供安装它。但是,在尝试安装它时会显示消息Failedtoinstallgems.Followinggemswerenotinstalled:C:/ProgramFiles(x86)/JetBrains/RubyMine3.2.4/rb/gems/ruby-debug-base19x-0.11.30.pre2.gem:Errorinstallingruby-debug-base19x-0.11.30.pre2.gem:The'linecache19'nativegemrequiresinstall
1.错误信息:Errorresponsefromdaemon:Gethttps://registry-1.docker.io/v2/:net/http:requestcanceledwhilewaitingforconnection(Client.Timeoutexceededwhileawaitingheaders)或者:Errorresponsefromdaemon:Gethttps://registry-1.docker.io/v2/:net/http:TLShandshaketimeout2.报错原因:docker使用的镜像网址默认为国外,下载容易超时,需要修改成国内镜像地址(首先阿里