debian-mirror-gitlab/spec/lib/gitlab/quick_actions/command_definition_spec.rb

322 lines
8.4 KiB
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
2016-09-13 17:45:13 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::QuickActions::CommandDefinition do
2016-09-13 17:45:13 +05:30
subject { described_class.new(:command) }
describe "#all_names" do
context "when the command has aliases" do
before do
subject.aliases = [:alias1, :alias2]
end
it "returns an array with the name and aliases" do
expect(subject.all_names).to eq([:command, :alias1, :alias2])
end
end
context "when the command doesn't have aliases" do
it "returns an array with the name" do
expect(subject.all_names).to eq([:command])
end
end
end
describe "#noop?" do
context "when the command has an action block" do
before do
subject.action_block = proc { }
end
it "returns false" do
expect(subject.noop?).to be false
end
end
context "when the command doesn't have an action block" do
it "returns true" do
expect(subject.noop?).to be true
end
end
end
describe "#available?" do
2018-03-27 19:54:05 +05:30
let(:opts) { OpenStruct.new(go: false) }
2016-09-13 17:45:13 +05:30
context "when the command has a condition block" do
before do
subject.condition_block = proc { go }
end
context "when the condition block returns true" do
before do
opts[:go] = true
end
it "returns true" do
expect(subject.available?(opts)).to be true
end
end
context "when the condition block returns false" do
it "returns false" do
expect(subject.available?(opts)).to be false
end
end
end
context "when the command doesn't have a condition block" do
it "returns true" do
expect(subject.available?(opts)).to be true
end
end
2019-07-07 11:18:12 +05:30
context "when the command has types" do
before do
subject.types = [Issue, Commit]
end
context "when the command target type is allowed" do
it "returns true" do
opts[:quick_action_target] = Issue.new
expect(subject.available?(opts)).to be true
end
end
context "when the command target type is not allowed" do
it "returns true" do
opts[:quick_action_target] = MergeRequest.new
expect(subject.available?(opts)).to be false
end
end
end
context "when the command has no types" do
it "any target type is allowed" do
opts[:quick_action_target] = Issue.new
expect(subject.available?(opts)).to be true
opts[:quick_action_target] = MergeRequest.new
expect(subject.available?(opts)).to be true
end
end
2016-09-13 17:45:13 +05:30
end
describe "#execute" do
2019-07-07 11:18:12 +05:30
let(:context) { OpenStruct.new(run: false, commands_executed_count: nil) }
2016-09-13 17:45:13 +05:30
context "when the command is a noop" do
it "doesn't execute the command" do
expect(context).not_to receive(:instance_exec)
2018-03-27 19:54:05 +05:30
subject.execute(context, nil)
2016-09-13 17:45:13 +05:30
2019-07-07 11:18:12 +05:30
expect(context.commands_executed_count).to be_nil
2016-09-13 17:45:13 +05:30
expect(context.run).to be false
end
end
context "when the command is not a noop" do
before do
subject.action_block = proc { self.run = true }
end
context "when the command is not available" do
before do
subject.condition_block = proc { false }
end
it "doesn't execute the command" do
2018-03-27 19:54:05 +05:30
subject.execute(context, nil)
2016-09-13 17:45:13 +05:30
2019-07-07 11:18:12 +05:30
expect(context.commands_executed_count).to be_nil
2016-09-13 17:45:13 +05:30
expect(context.run).to be false
end
end
context "when the command is available" do
context "when the commnd has no arguments" do
before do
subject.action_block = proc { self.run = true }
end
context "when the command is provided an argument" do
it "executes the command" do
2018-03-27 19:54:05 +05:30
subject.execute(context, true)
2016-09-13 17:45:13 +05:30
expect(context.run).to be true
2019-07-07 11:18:12 +05:30
expect(context.commands_executed_count).to eq(1)
2016-09-13 17:45:13 +05:30
end
end
context "when the command is not provided an argument" do
it "executes the command" do
2018-03-27 19:54:05 +05:30
subject.execute(context, nil)
2016-09-13 17:45:13 +05:30
expect(context.run).to be true
2019-07-07 11:18:12 +05:30
expect(context.commands_executed_count).to eq(1)
2016-09-13 17:45:13 +05:30
end
end
end
context "when the command has 1 required argument" do
before do
subject.action_block = ->(arg) { self.run = arg }
end
context "when the command is provided an argument" do
it "executes the command" do
2018-03-27 19:54:05 +05:30
subject.execute(context, true)
2016-09-13 17:45:13 +05:30
expect(context.run).to be true
2019-07-07 11:18:12 +05:30
expect(context.commands_executed_count).to eq(1)
2016-09-13 17:45:13 +05:30
end
end
context "when the command is not provided an argument" do
it "doesn't execute the command" do
2018-03-27 19:54:05 +05:30
subject.execute(context, nil)
2016-09-13 17:45:13 +05:30
expect(context.run).to be false
end
end
end
context "when the command has 1 optional argument" do
before do
subject.action_block = proc { |arg = nil| self.run = arg || true }
end
context "when the command is provided an argument" do
it "executes the command" do
2018-03-27 19:54:05 +05:30
subject.execute(context, true)
2016-09-13 17:45:13 +05:30
expect(context.run).to be true
end
end
context "when the command is not provided an argument" do
it "executes the command" do
2018-03-27 19:54:05 +05:30
subject.execute(context, nil)
2016-09-13 17:45:13 +05:30
expect(context.run).to be true
end
end
end
2017-08-17 22:00:37 +05:30
context 'when the command defines parse_params block' do
before do
subject.parse_params_block = ->(raw) { raw.strip }
subject.action_block = ->(parsed) { self.received_arg = parsed }
end
it 'executes the command passing the parsed param' do
2018-03-27 19:54:05 +05:30
subject.execute(context, 'something ')
2017-08-17 22:00:37 +05:30
expect(context.received_arg).to eq('something')
end
end
end
end
end
2019-10-12 21:52:04 +05:30
describe "#execute_message" do
context "when the command is a noop" do
it 'returns nil' do
expect(subject.execute_message({}, nil)).to be_nil
end
end
context "when the command is not a noop" do
before do
subject.action_block = proc { self.run = true }
end
context "when the command is not available" do
before do
subject.condition_block = proc { false }
end
it 'returns nil' do
expect(subject.execute_message({}, nil)).to be_nil
end
end
context "when the command is available" do
context 'when the execution_message is a static string' do
before do
subject.execution_message = 'Assigned jacopo'
end
it 'returns this static string' do
expect(subject.execute_message({}, nil)).to eq('Assigned jacopo')
end
end
context 'when the explanation is dynamic' do
before do
subject.execution_message = proc { |arg| "Assigned #{arg}" }
end
it 'invokes the proc' do
expect(subject.execute_message({}, 'Jacopo')).to eq('Assigned Jacopo')
end
end
end
end
end
2017-08-17 22:00:37 +05:30
describe '#explain' do
context 'when the command is not available' do
before do
subject.condition_block = proc { false }
subject.explanation = 'Explanation'
end
it 'returns nil' do
2018-03-27 19:54:05 +05:30
result = subject.explain({}, nil)
2017-08-17 22:00:37 +05:30
expect(result).to be_nil
end
end
context 'when the explanation is a static string' do
before do
subject.explanation = 'Explanation'
end
it 'returns this static string' do
2018-03-27 19:54:05 +05:30
result = subject.explain({}, nil)
2017-08-17 22:00:37 +05:30
expect(result).to eq 'Explanation'
end
end
2019-02-15 15:39:39 +05:30
context 'when warning is set' do
before do
subject.explanation = 'Explanation'
subject.warning = 'dangerous!'
end
it 'returns this static string' do
result = subject.explain({}, nil)
expect(result).to eq 'Explanation (dangerous!)'
end
end
2017-08-17 22:00:37 +05:30
context 'when the explanation is dynamic' do
before do
subject.explanation = proc { |arg| "Dynamic #{arg}" }
end
it 'invokes the proc' do
2018-03-27 19:54:05 +05:30
result = subject.explain({}, 'explanation')
2017-08-17 22:00:37 +05:30
expect(result).to eq 'Dynamic explanation'
2016-09-13 17:45:13 +05:30
end
end
end
end