如何使用RSpec测试此代码?

时间:2012-03-09 17:02:57

标签: ruby-on-rails-3 syntax rspec tdd httparty

我有以下简单类和HTTParty方法:

class Token
  require 'httparty'

  include HTTParty
  base_uri 'https://<some url>'
  headers 'auth_user' => 'user'
  headers 'auth_pass' => 'password'
  headers 'auth_appkey' => 'app_key'

  def self.getToken
    response = get('/auth/token')
    @token = response['auth']['token']
  end
end

我知道它有效因为我可以在Rails控制台中调用该方法并成功获取令牌。

如何在RSpec中测试上述代码?

我最初的捅不起作用:

describe Token do
  before do
    HTTParty.base_uri 'https://<some url>'
    HTTParty.headers 'auth_user' => 'user'
    HTTParty.headers 'auth_pass' => 'password'
    HTTParty.headers 'auth_appkey' => 'app_key'
  end

  it "gets a token" do
    HTTParty.get('auth/authenticate')
    response['auth']['token'].should_not be_nil
  end
end

它说:NoMethodError: undefined method 'base_uri' for HTTParty:Module ...

谢谢!

1 个答案:

答案 0 :(得分:1)

由于您正在测试模块,您可能会尝试这样的事情:

describe Token do
   before do
      @a_class = Class.new do
         include HTTParty
         base_uri 'https://<some url>'
         headers 'auth_user' => 'user'
         headers 'auth_pass' => 'password'
         headers 'auth_appkey' => 'app_key'
      end
   end

   it "gets a token" do
      response = @a_class.get('auth/authenticate')
      response['auth']['token'].should_not be_nil
   end
end

这将创建一个匿名类,并使用HTTPparty的类方法对其进行扩展。但是,我不确定响应会如你所知那样返回。