mirror of
https://github.com/elastic/logstash.git
synced 2025-06-29 10:13:16 -04:00
Disabled: * EmptyLineAfterGuardClause * EmptyLineAfterMultilineCondition * EmptyLinesAroundAccessModifier Enabled: * Layout/EmptyLineAfterMagicComment * Layout/EmptyLineBetweenDefs * Layout/EmptyLines * Layout/EmptyLinesAroundArguments * Layout/EmptyLinesAroundAttributeAccessor * Layout/EmptyLinesAroundBeginBody * Layout/EmptyLinesAroundBlockBody * Layout/EmptyLinesAroundExceptionHandlingKeywords * Layout/EmptyLinesAroundMethodBody * Layout/EmptyLinesAroundModuleBody
113 lines
4.8 KiB
Ruby
113 lines
4.8 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_relative '../../framework/fixture'
|
|
require_relative '../../framework/settings'
|
|
require_relative '../../services/logstash_service'
|
|
require_relative '../../framework/helpers'
|
|
require "logstash/devutils/rspec/spec_helper"
|
|
|
|
describe "CLI > logstash-plugin remove" do
|
|
before(:all) do
|
|
@fixture = Fixture.new(__FILE__)
|
|
@logstash_plugin = @fixture.get_service("logstash").plugin_cli
|
|
end
|
|
|
|
if RbConfig::CONFIG["host_os"] == "linux"
|
|
context "without internet connection (linux seccomp wrapper)" do
|
|
let(:offline_wrapper_path) { File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "fixtures", "offline_wrapper")) }
|
|
let(:offline_wrapper_cmd) { File.join(offline_wrapper_path, "offline") }
|
|
|
|
before do
|
|
Dir.chdir(offline_wrapper_path) do
|
|
system("make clean")
|
|
system("make")
|
|
end
|
|
end
|
|
|
|
context "when no other plugins depends on this plugin" do
|
|
let(:test_plugin) { "logstash-filter-qatest" }
|
|
|
|
before :each do
|
|
@logstash_plugin.install(File.join(File.dirname(__FILE__), "..", "..", "fixtures", "logstash-filter-qatest-0.1.1.gem"))
|
|
end
|
|
|
|
it "successfully remove the plugin" do
|
|
execute = @logstash_plugin.run_raw("#{offline_wrapper_cmd} bin/logstash-plugin remove #{test_plugin}")
|
|
|
|
expect(execute.exit_code).to eq(0)
|
|
expect(execute.stderr_and_stdout).to match(/Successfully removed #{test_plugin}/)
|
|
|
|
presence_check = @logstash_plugin.list(test_plugin)
|
|
expect(presence_check.exit_code).to eq(1)
|
|
expect(presence_check.stderr_and_stdout).to match(/ERROR: No plugins found/)
|
|
end
|
|
end
|
|
|
|
context "when other plugins depends on this plugin" do
|
|
it "refuses to remove the plugin and display the plugin that depends on it." do
|
|
execute = @logstash_plugin.run_raw("#{offline_wrapper_cmd} bin/logstash-plugin remove logstash-codec-json")
|
|
|
|
expect(execute.exit_code).to eq(1)
|
|
expect(execute.stderr_and_stdout).to match(/Failed to remove "logstash-codec-json"/)
|
|
expect(execute.stderr_and_stdout).to match(/logstash-integration-kafka/) # one of the dependency
|
|
expect(execute.stderr_and_stdout).to match(/logstash-output-udp/) # one of the dependency
|
|
|
|
presence_check = @logstash_plugin.list("logstash-codec-json")
|
|
|
|
expect(presence_check.exit_code).to eq(0)
|
|
expect(presence_check.stderr_and_stdout).to match(/logstash-codec-json/)
|
|
end
|
|
end
|
|
end
|
|
else
|
|
context "when no other plugins depends on this plugin" do
|
|
let(:test_plugin) { "logstash-filter-qatest" }
|
|
|
|
before :each do
|
|
@logstash_plugin.install(File.join(File.dirname(__FILE__), "..", "..", "fixtures", "logstash-filter-qatest-0.1.1.gem"))
|
|
end
|
|
|
|
it "successfully remove the plugin" do
|
|
execute = @logstash_plugin.remove(test_plugin)
|
|
|
|
expect(execute.exit_code).to eq(0)
|
|
expect(execute.stderr_and_stdout).to match(/Successfully removed #{test_plugin}/)
|
|
|
|
presence_check = @logstash_plugin.list(test_plugin)
|
|
expect(presence_check.exit_code).to eq(1)
|
|
expect(presence_check.stderr_and_stdout).to match(/ERROR: No plugins found/)
|
|
end
|
|
end
|
|
|
|
context "when other plugins depends on this plugin" do
|
|
it "refuses to remove the plugin and display the plugin that depends on it." do
|
|
execute = @logstash_plugin.remove("logstash-codec-json")
|
|
|
|
expect(execute.exit_code).to eq(1)
|
|
expect(execute.stderr_and_stdout).to match(/Failed to remove "logstash-codec-json"/)
|
|
expect(execute.stderr_and_stdout).to match(/logstash-integration-kafka/) # one of the dependency
|
|
expect(execute.stderr_and_stdout).to match(/logstash-output-udp/) # one of the dependency
|
|
|
|
presence_check = @logstash_plugin.list("logstash-codec-json")
|
|
|
|
expect(presence_check.exit_code).to eq(0)
|
|
expect(presence_check.stderr_and_stdout).to match(/logstash-codec-json/)
|
|
end
|
|
end
|
|
end
|
|
end
|