debian-mirror-gitlab/spec/lib/gitlab/slash_commands/presenters/deploy_spec.rb

36 lines
1.1 KiB
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe Gitlab::SlashCommands::Presenters::Deploy do
2017-08-17 22:00:37 +05:30
let(:build) { create(:ci_build) }
describe '#present' do
subject { described_class.new(build).present('staging', 'prod') }
it { is_expected.to have_key(:text) }
it { is_expected.to have_key(:response_type) }
it { is_expected.to have_key(:status) }
it { is_expected.not_to have_key(:attachments) }
it 'messages the channel of the deploy' do
expect(subject[:response_type]).to be(:in_channel)
expect(subject[:text]).to start_with("Deployment started from staging to prod")
end
end
2017-09-10 17:25:29 +05:30
describe '#action_not_found' do
subject { described_class.new(nil).action_not_found }
2017-08-17 22:00:37 +05:30
it { is_expected.to have_key(:text) }
it { is_expected.to have_key(:response_type) }
it { is_expected.to have_key(:status) }
it { is_expected.not_to have_key(:attachments) }
it 'tells the user there is no action' do
expect(subject[:response_type]).to be(:ephemeral)
2017-09-10 17:25:29 +05:30
expect(subject[:text]).to eq "Couldn't find a deployment manual action."
2017-08-17 22:00:37 +05:30
end
end
end