Omniauth嘲笑facebook的回应



我想通过facebook测试我的登录。我使用纯全能,没有设计。我检查了维基页面并做了以下操作:

help for request specs

module IntegrationSpecHelper
  def login_with_oauth(service = :facebook)
    visit "/auth/#{service}"
  end
end

spec_helper.rb

    RSpec.configure do |config|
      config.include IntegrationSpecHelper, :type => :request
    end
    Capybara.default_host = 'http://example.org'
    OmniAuth.config.test_mode = true
    OmniAuth.config.add_mock(:facebook, {
    :provider => 'facebook',
    :uid => '12345',
    :user_info => {
        :name => 'dpsk'
      }
})

我的说明

require 'spec_helper'
describe 'facebook' do
  it "should login with facebook", :js => true do
    login_with_oauth
    visit '/'
    page.should have_content("dpsk")
  end
end

#OmniAuth routes
  match "/auth/:provider/callback" => "sessions#create"
  match "/signout" => "sessions#destroy", :as => :signout
  match "/signin" => "sessions#signin", :as => :signin
  match "/auth/failure" => "sessions#failure", :as => :auth_failure

但是在spec中没有返回而不是我的mock,我得到了一个错误:

Failure/Error: visit "/auth/facebook"
     You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.[]

我的错误在哪里?

我的问题是在模拟,它有错误的结构。

OmniAuth.config.mock_auth[:facebook] = {
  'user_info' => {
    'name' => 'Mario Brothers',
    'image' => '',
    'email' => 'dpsk@email.ru' },
  'uid' => '123545',
  'provider' => 'facebook',
  'credentials' => {'token' => 'token'}
}

这个结构适合我(2016年12月)

OmniAuth.config.mock_auth[:facebook] = OmniAuth::AuthHash.new({
  'provider' => 'facebook', 
  'uid' => '123545', 
  'info' => {
    'email' => 'dpsk@email.ru', 
    'name' => 'Mario Brothers', 
    'image' => '' }, 
  'credentials'=> {
    'token'=> '12345', 
    'expires_at' => 1486718672, 
    'expires' => true }, 
  'extra' => {
    'raw_info' => {
        'email' => 'dpsk@email.ru', 
        'name' => 'Mario Brothers', 
        'id' => '12345' }
    }
})

最新更新