bitly引发错误异常rspec测试

时间:2016-07-16 00:38:34

标签: ruby-on-rails ruby rspec capybara bit.ly

我正在尝试为bitly raise错误异常编写一个简单的rspec测试。如何编写期望与错误消息ALREADY_A_BITLY_LINK - '500'匹配raise_error(BitlyError)。这个rspec实际上通过了。但是如果我对无效的URL使用相同的raise_error。它也将通过。如何测试特定的异常消息?

bitly_spec.rb

require 'rails_helper'

describe Bitly do
  before do
    @bitly = Bitly.new(username, api_key)
  end
  let(:bitly_url) { 'bitly_url' } #stackoverflow doesn't allow URL shortener

  it 'should return exception error if given url is bitly' do
    expect { @bitly.shorten(bitly_url) }.to raise_error(BitlyError)
  end
end

调试器

@bitly.shorten(bitly_url)返回*** BitlyError Exception: ALREADY_A_BITLY_LINK - '500'

raise_error(BitlyError)返回#<RSpec::Matchers::BuiltIn::RaiseError:0x007fa229c56f48 @block=nil, @actual_error=nil, @warn_about_bare_error=false, @expected_error=BitlyError, @expected_message=nil>

1 个答案:

答案 0 :(得分:1)

从文档中可以看到 - https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers/raise-error-matcher - 引发错误匹配器可以使用字符串或正则表达式的第二个参数来匹配异常消息

expect { whatever }.to raise_error(BitlyError, "ALREADY_A_BITLY_LINK")