2019-05-31 12:46:16 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe IssuePresenter do
|
2019-05-31 12:46:16 -04:00
|
|
|
include Gitlab::Routing.url_helpers
|
|
|
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:group) { create(:group) }
|
|
|
|
let(:project) { create(:project, group: group) }
|
|
|
|
let(:issue) { create(:issue, project: project) }
|
|
|
|
let(:presenter) { described_class.new(issue, current_user: user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_developer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#web_url' do
|
|
|
|
it 'returns correct path' do
|
2020-03-02 10:08:01 -05:00
|
|
|
expect(presenter.web_url).to eq("http://localhost/#{group.name}/#{project.name}/-/issues/#{issue.iid}")
|
2019-10-01 20:06:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#subscribed?' do
|
|
|
|
subject { presenter.subscribed? }
|
|
|
|
|
|
|
|
it 'returns not subscribed' do
|
|
|
|
is_expected.to be(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns subscribed' do
|
|
|
|
create(:subscription, user: user, project: project, subscribable: issue, subscribed: true)
|
|
|
|
|
|
|
|
is_expected.to be(true)
|
2019-05-31 12:46:16 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#issue_path' do
|
|
|
|
it 'returns correct path' do
|
2020-03-02 10:08:01 -05:00
|
|
|
expect(presenter.issue_path).to eq("/#{group.name}/#{project.name}/-/issues/#{issue.iid}")
|
2019-05-31 12:46:16 -04:00
|
|
|
end
|
|
|
|
end
|
2020-11-08 22:09:03 -05:00
|
|
|
|
|
|
|
describe '#project_emails_disabled?' do
|
|
|
|
subject { presenter.project_emails_disabled? }
|
|
|
|
|
|
|
|
it 'returns false when emails notifications is enabled for project' do
|
|
|
|
is_expected.to be(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when emails notifications is disabled for project' do
|
|
|
|
before do
|
|
|
|
allow(project).to receive(:emails_disabled?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be(true) }
|
|
|
|
end
|
|
|
|
end
|
2019-05-31 12:46:16 -04:00
|
|
|
end
|