e021604454
Improve slash command descriptions, support /due tomorrow Signed-off-by: Rémy Coutable <remy@rymai.me>
204 lines
6.4 KiB
Ruby
204 lines
6.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Gitlab::SlashCommands::Extractor do
|
|
let(:extractor) { described_class.new([:open, :assign, :labels, :power]) }
|
|
|
|
shared_examples 'command with no argument' do
|
|
it 'extracts command' do
|
|
commands = extractor.extract_commands!(original_msg)
|
|
|
|
expect(commands).to eq [['open']]
|
|
expect(original_msg).to eq final_msg
|
|
end
|
|
end
|
|
|
|
shared_examples 'command with a single argument' do
|
|
it 'extracts command' do
|
|
commands = extractor.extract_commands!(original_msg)
|
|
|
|
expect(commands).to eq [['assign', '@joe']]
|
|
expect(original_msg).to eq final_msg
|
|
end
|
|
end
|
|
|
|
shared_examples 'command with multiple arguments' do
|
|
it 'extracts command' do
|
|
commands = extractor.extract_commands!(original_msg)
|
|
|
|
expect(commands).to eq [['labels', '~foo ~"bar baz" label']]
|
|
expect(original_msg).to eq final_msg
|
|
end
|
|
end
|
|
|
|
describe '#extract_commands!' do
|
|
describe 'command with no argument' do
|
|
context 'at the start of content' do
|
|
it_behaves_like 'command with no argument' do
|
|
let(:original_msg) { "/open\nworld" }
|
|
let(:final_msg) { "world" }
|
|
end
|
|
end
|
|
|
|
context 'in the middle of content' do
|
|
it_behaves_like 'command with no argument' do
|
|
let(:original_msg) { "hello\n/open\nworld" }
|
|
let(:final_msg) { "hello\nworld" }
|
|
end
|
|
end
|
|
|
|
context 'in the middle of a line' do
|
|
it 'does not extract command' do
|
|
msg = "hello\nworld /open"
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq "hello\nworld /open"
|
|
end
|
|
end
|
|
|
|
context 'at the end of content' do
|
|
it_behaves_like 'command with no argument' do
|
|
let(:original_msg) { "hello\n/open" }
|
|
let(:final_msg) { "hello\n" }
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'command with a single argument' do
|
|
context 'at the start of content' do
|
|
it_behaves_like 'command with a single argument' do
|
|
let(:original_msg) { "/assign @joe\nworld" }
|
|
let(:final_msg) { "world" }
|
|
end
|
|
end
|
|
|
|
context 'in the middle of content' do
|
|
it_behaves_like 'command with a single argument' do
|
|
let(:original_msg) { "hello\n/assign @joe\nworld" }
|
|
let(:final_msg) { "hello\nworld" }
|
|
end
|
|
end
|
|
|
|
context 'in the middle of a line' do
|
|
it 'does not extract command' do
|
|
msg = "hello\nworld /assign @joe"
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq "hello\nworld /assign @joe"
|
|
end
|
|
end
|
|
|
|
context 'at the end of content' do
|
|
it_behaves_like 'command with a single argument' do
|
|
let(:original_msg) { "hello\n/assign @joe" }
|
|
let(:final_msg) { "hello\n" }
|
|
end
|
|
end
|
|
|
|
context 'when argument is not separated with a space' do
|
|
it 'does not extract command' do
|
|
msg = "hello\n/assign@joe\nworld"
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq "hello\n/assign@joe\nworld"
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'command with multiple arguments' do
|
|
context 'at the start of content' do
|
|
it_behaves_like 'command with multiple arguments' do
|
|
let(:original_msg) { %(/labels ~foo ~"bar baz" label\nworld) }
|
|
let(:final_msg) { "world" }
|
|
end
|
|
end
|
|
|
|
context 'in the middle of content' do
|
|
it_behaves_like 'command with multiple arguments' do
|
|
let(:original_msg) { %(hello\n/labels ~foo ~"bar baz" label\nworld) }
|
|
let(:final_msg) { "hello\nworld" }
|
|
end
|
|
end
|
|
|
|
context 'in the middle of a line' do
|
|
it 'does not extract command' do
|
|
msg = %(hello\nworld /labels ~foo ~"bar baz" label)
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq %(hello\nworld /labels ~foo ~"bar baz" label)
|
|
end
|
|
end
|
|
|
|
context 'at the end of content' do
|
|
it_behaves_like 'command with multiple arguments' do
|
|
let(:original_msg) { %(hello\n/labels ~foo ~"bar baz" label) }
|
|
let(:final_msg) { "hello\n" }
|
|
end
|
|
end
|
|
|
|
context 'when argument is not separated with a space' do
|
|
it 'does not extract command' do
|
|
msg = %(hello\n/labels~foo ~"bar baz" label\nworld)
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq %(hello\n/labels~foo ~"bar baz" label\nworld)
|
|
end
|
|
end
|
|
end
|
|
|
|
it 'extracts command with multiple arguments and various prefixes' do
|
|
msg = %(hello\n/power @user.name %9.10 ~"bar baz.2"\nworld)
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to eq [['power', '@user.name %9.10 ~"bar baz.2"']]
|
|
expect(msg).to eq "hello\nworld"
|
|
end
|
|
|
|
it 'extracts multiple commands' do
|
|
msg = %(hello\n/power @user.name %9.10 ~"bar baz.2" label\nworld\n/open)
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to eq [['power', '@user.name %9.10 ~"bar baz.2" label'], ['open']]
|
|
expect(msg).to eq "hello\nworld\n"
|
|
end
|
|
|
|
it 'does not alter original content if no command is found' do
|
|
msg = 'Fixes #123'
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq 'Fixes #123'
|
|
end
|
|
|
|
it 'does not extract commands inside a blockcode' do
|
|
msg = msg = "Hello\r\n```\r\nThis is some text\r\n/close\r\n/assign @user\r\n```\r\n\r\nWorld"
|
|
expected = msg.delete("\r")
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq expected
|
|
end
|
|
|
|
it 'does not extract commands inside a blockquote' do
|
|
msg = "Hello\r\n>>>\r\nThis is some text\r\n/close\r\n/assign @user\r\n>>>\r\n\r\nWorld"
|
|
expected = msg.delete("\r")
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq expected
|
|
end
|
|
|
|
it 'does not extract commands inside a HTML tag' do
|
|
msg = msg = "Hello\r\n<div>\r\nThis is some text\r\n/close\r\n/assign @user\r\n</div>\r\n\r\nWorld"
|
|
expected = msg.delete("\r")
|
|
commands = extractor.extract_commands!(msg)
|
|
|
|
expect(commands).to be_empty
|
|
expect(msg).to eq expected
|
|
end
|
|
end
|
|
end
|