redmine_tracker_spec.rb
1.19 KB
require 'spec_helper'
describe RedmineTracker do
it "should create an issue on Redmine with err params, and set issue link for err" do
notice = Factory :notice
tracker = Factory :redmine_tracker, :app => notice.err.app, :project_id => 10
err = notice.err
number = 5
@issue_link = "#{tracker.account}/issues/#{number}.xml?project_id=#{tracker.project_id}"
body = "<issue><subject>my subject</subject><id>#{number}</id></issue>"
stub_request(:post, "#{tracker.account}/issues.xml").
to_return(:status => 201, :headers => {'Location' => @issue_link}, :body => body )
err.app.issue_tracker.create_issue(err)
err.reload
requested = have_requested(:post, "#{tracker.account}/issues.xml")
WebMock.should requested.with(:headers => {'X-Redmine-API-Key' => tracker.api_token})
WebMock.should requested.with(:body => /<project-id>#{tracker.project_id}<\/project-id>/)
WebMock.should requested.with(:body => /<subject>\[#{ err.environment }\]\[#{err.where}\] #{err.message.to_s.truncate(100)}<\/subject>/)
WebMock.should requested.with(:body => /<description>.+<\/description>/m)
err.issue_link.should == @issue_link.sub(/\.xml/, '')
end
end