我正在使用twitter gem编写测试应用程序,我想编写集成测试,但我无法弄清楚如何在Twitter命名空间中模拟对象。这是我要测试的功能:
def build_twitter(omniauth)
Twitter.configure do |config|
config.consumer_key = TWITTER_KEY
config.consumer_secret = TWITTER_SECRET
config.oauth_token = omniauth['credentials']['token']
config.oauth_token_secret = omniauth['credentials']['secret']
end
client = Twitter::Client.new
user = client.current_user
self.name = user.name
end
这是我正在尝试编写的rspec测试:
feature 'testing oauth' do
before(:each) do
@twitter = double("Twitter")
@twitter.stub!(:configure).and_return true
@client = double("Twitter::Client")
@client.stub!(:current_user).and_return(@user)
@user = double("Twitter::User")
@user.stub!(:name).and_return("Tester")
end
scenario 'twitter' do
visit root_path
login_with_oauth
page.should have_content("Pages#home")
end
end
但是,我收到了这个错误:
1) testing oauth twitter
Failure/Error: login_with_oauth
Twitter::Error::Unauthorized:
GET https://api.twitter.com/1/account/verify_credentials.json: 401: Invalid / expired Token
# ./app/models/user.rb:40:in `build_twitter'
# ./app/models/user.rb:16:in `build_authentication'
# ./app/controllers/authentications_controller.rb:47:in `create'
# ./spec/support/integration_spec_helper.rb:3:in `login_with_oauth'
# ./spec/integration/twit_test.rb:16:in `block (2 levels) in <top (required)>'
上面的模拟使用的是rspec,但我也很乐意尝试mocha。任何帮助将不胜感激。
好的,感谢大家的帮助,我设法弄明白这一点。这是最后的测试:
feature 'testing oauth' do
before(:each) do
@client = double("Twitter::Client")
@user = double("Twitter::User")
Twitter.stub!(:configure).and_return true
Twitter::Client.stub!(:new).and_return(@client)
@client.stub!(:current_user).and_return(@user)
@user.stub!(:name).and_return("Tester")
end
scenario 'twitter' do
visit root_path
login_with_oauth
page.should have_content("Pages#home")
end
end
诀窍是弄清楚我需要在真实对象上存根:configure
和:new
,并在一个dobuled对象实例上存根:current_user
和:name
。
答案 0 :(得分:4)
我认为问题只是你使用mock的方式,你创建了模拟@twitter,但你实际上从未使用它。我认为你可能会觉得任何对Twitter的调用都会使用你指定的存根方法,但这不是它的工作原理,只有对@twitter的调用才会被删除。
我使用双红宝石,而不是rspec模拟,但我相信你想做这样的事情:
Twitter.stub!(:configure).and_return true
...
Twitter::Client.stub!(:current_user).and_return @user
这可以确保无论何时调用Twitter,Twitter :: Client上的方法,它们都会以你想要的方式响应。
此外,这似乎很奇怪,这是作为视图的一部分进行测试,应该真正成为控制器测试的一部分,除非我错过了什么。
答案 1 :(得分:0)
您可以尝试使用http://jondot.github.com/moxy/之类的内容。模拟Web请求