0

我有以下简单的类和 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...

谢谢!

4

1 回答 1

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的类方法对其进行扩展。但是,我不确定响应是否会像您一样返回。

于 2012-03-09T21:48:36.240 回答