Files
importer-issue-ops/spec/models/arguments_spec.rb
Chase S 65b029a677 Upgrade to Ruby 3.2 (#30)
* Upgrade to Ruby 3.2

* Upgrade and fix rubocop linting

* Bundle exec the parse issue command

* Go back to manually installing dependencies for issue ops
2023-08-14 14:13:37 +00:00

105 lines
3.5 KiB
Ruby

# frozen_string_literal: true
RSpec.describe Arguments do
let(:arguments) { Arguments.new(provider, command, issue_content) }
let(:provider) { instance_double(Provider) }
let(:command) { instance_double(Command) }
let(:issue_content) { "some issue content" }
describe "#argument_class" do
subject { arguments.argument_class(provider, command, issue_content) }
context "when the command is found" do
before do
expect(provider).to receive(:module).and_return(Jenkins).at_least(:once)
expect(command).to receive(:classify).and_return("Audit").at_least(:once)
expect(command).to receive(:options).and_return({})
end
it { is_expected.to be_a(Jenkins::Audit) }
end
context "when the command is not found" do
before do
expect(provider).to receive(:module).and_return(Jenkins).at_least(:once)
expect(command).to receive(:classify).and_return("Whoopsie").at_least(:once)
end
it { expect { subject }.to raise_error(NameError) }
end
end
describe "#to_output" do
subject { arguments.to_output }
let(:options) { {} }
before do
expect(provider).to receive(:module).and_return(AzureDevops).at_least(:once)
expect(command).to receive(:classify).and_return("Audit").at_least(:once)
expect(command).to receive(:options).and_return(options)
expect_any_instance_of(AzureDevops::Audit).to receive(:to_a).and_return(output)
end
context "when the output is nil" do
let(:output) { nil }
it "does not write any output variable" do
expect(arguments).not_to receive(:set_output)
subject
end
end
context "when the output is not nil" do
let(:output) { [["--option", "value"]] }
it "writes an output variable" do
expect(arguments).to receive(:set_output).with("args", /--option \$variable_\d{4}/)
expect(arguments).to receive(:set_environment).with(/variable_\d{4}/, "value")
subject
end
end
context "when the output contains a space" do
let(:output) { [["--option", "some value"]] }
it "writes an output variable" do
expect(arguments).to receive(:set_output).with("args", /--option \$variable_\d{4}/)
expect(arguments).to receive(:set_environment).with(/variable_\d{4}/, "\"some value\"")
subject
end
end
context "when there is a custom transformers option" do
let(:output) { [["--option", "value"]] }
let(:options) { { "custom-transformers" => "transformers/**/*.rb" } }
it "writes an output variable" do
expect(arguments).to receive(:set_output).with("args", /--option \$variable_\d{4} --custom-transformers \$variable_\d{4}/)
["value", "transformers/**/*.rb"].each do |value|
expect(arguments).to receive(:set_environment).with(/variable_\d{4}/, value)
end
subject
end
end
context "when there are custom transformers in the repository" do
let(:output) { [["--option", "value"]] }
let(:files) { ["transformers/jenkins/transformers.rb", "transformers/all.rb"] }
before do
expect(Dir).to receive(:glob).with("transformers/**/*.rb").and_return(files)
end
it "writes an output variable" do
expect(arguments).to receive(:set_output).with("args", /--option \$variable_\d{4} --custom-transformers \$variable_\d{4} \$variable_\d{4}/)
["value", *files].each do |value|
expect(arguments).to receive(:set_environment).with(/variable_\d{4}/, value)
end
subject
end
end
end
end