mirror of
https://github.com/elastic/logstash.git
synced 2025-06-29 02:03:30 -04:00
Fix gem installer tests to enable unpinning the version of bundler This commit removes changes the gem installer to use real gems, rather than use `allow_instance_of` during testing, which appears to be problematic with the latest version of bundler
73 lines
2.7 KiB
Ruby
73 lines
2.7 KiB
Ruby
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
# license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright
|
|
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
# the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
require "pluginmanager/gem_installer"
|
|
require "pluginmanager/ui"
|
|
require "stud/temporary"
|
|
require "rubygems/specification"
|
|
require "fileutils"
|
|
require "ostruct"
|
|
|
|
describe LogStash::PluginManager::GemInstaller do
|
|
let(:plugin_name) { "logstash-input-packtest-0.0.1" }
|
|
let(:simple_gem) { ::File.join(::File.dirname(__FILE__), "..", "..", "support", "pack", "valid-pack", "logstash", "valid-pack", "#{plugin_name}.gem") }
|
|
|
|
subject { described_class }
|
|
let(:temporary_gem_home) { p = Stud::Temporary.pathname; FileUtils.mkdir_p(p); p }
|
|
|
|
it "install the specifications in the spec dir" do
|
|
subject.install(simple_gem, false, temporary_gem_home)
|
|
spec_file = ::File.join(temporary_gem_home, "specifications", "#{plugin_name}.gemspec")
|
|
expect(::File.exist?(spec_file)).to be_truthy
|
|
expect(::File.size(spec_file)).to be > 0
|
|
end
|
|
|
|
it "install the gem in the gems dir" do
|
|
subject.install(simple_gem, false, temporary_gem_home)
|
|
gem_dir = ::File.join(temporary_gem_home, "gems", plugin_name)
|
|
expect(Dir.exist?(gem_dir)).to be_truthy
|
|
end
|
|
|
|
context "post_install_message" do
|
|
let(:message) { "Hello from the friendly pack" }
|
|
|
|
context "when present" do
|
|
let(:plugin_name) { 'logstash-input-packtest_pim-0.0.1' }
|
|
|
|
context "when we want the message" do
|
|
it "display the message" do
|
|
expect(subject.install(simple_gem, true, temporary_gem_home)).to eq(message)
|
|
end
|
|
end
|
|
|
|
context "when we dont want the message" do
|
|
it "doesn't display the message" do
|
|
expect(subject.install(simple_gem, false, temporary_gem_home)).to be_nil
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when not present" do
|
|
context "when we don't want the message" do
|
|
it "doesn't display the message" do
|
|
expect(LogStash::PluginManager.ui).not_to receive(:info).with(message)
|
|
subject.install(simple_gem, true, temporary_gem_home)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|