ruby-on-rails-3 – Rails rspec和omniauth(集成测试)
发布时间:2020-12-16 19:30:59 所属栏目:百科 来源:网络整理
导读:我的Rails 3.2应用程序使用OmniAuth和Devise来登录Twitter.身份验证系统工作正常.我想在rspec中编写一个集成测试,以确保一切正常.使用wiki中的信息,我写了以下内容,但我知道我错过了一些东西. 在config / environments中的test.rb下,我有以下几行 OmniAuth.c
我的Rails 3.2应用程序使用OmniAuth和Devise来登录Twitter.身份验证系统工作正常.我想在rspec中编写一个集成测试,以确保一切正常.使用wiki中的信息,我写了以下内容,但我知道我错过了一些东西.
在config / environments中的test.rb下,我有以下几行 OmniAuth.config.test_mode = true OmniAuth.config.mock_auth[:twitter] = {:provider => 'twitter',:uid => '123545'} 我的rspec测试看起来像这样: describe "Authentications" do context "without signing into app" do it "twitter sign in button should lead to twitter authentication page" do visit root_path click_link "Sign in with Twitter" Authentication.last.uid.should == '123545' end end end 身份验证是我的模型的名称,在rails控制台中调用.uid会返回字符串. 运行此测试时出现以下错误: Failure/Error: Authentication.last.uid.should == '123545' NoMethodError: undefined method `uid' for nil:NilClass 任何人都可以帮我弄清楚如何使用提供的OmniAuth模拟?关于它为什么以及如何工作的解释也将受到赞赏. 解决方法
我碰到了类似的东西.
从使用符号键更改我的模拟对象后: OmniAuth.config.mock_auth[:twitter] = { :uid => '1337',:provider => 'twitter',:info => { :name => 'JonnieHallman' } } 使用字符串键: OmniAuth.config.mock_auth[:twitter] = { 'uid' => '1337','provider' => 'twitter','info' => { 'name' => 'JonnieHallman' } } 有效. 你有吗? request.env["omniauth.auth"] = OmniAuth.config.mock_auth[:twitter] 在你的测试用例的某个地方? (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |