2015-08-21 16:05:50 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This file contains some utilities to test the elasticsearch scripts,
|
|
|
|
# the .deb/.rpm packages and the SysV/Systemd scripts.
|
|
|
|
|
|
|
|
# WARNING: This testing file must be executed as root and can
|
|
|
|
# dramatically change your system. It removes the 'elasticsearch'
|
|
|
|
# user/group and also many directories. Do not execute this file
|
|
|
|
# unless you know exactly what you are doing.
|
|
|
|
|
|
|
|
# Licensed to Elasticsearch under one or more contributor
|
|
|
|
# license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright
|
|
|
|
# ownership. Elasticsearch 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.
|
|
|
|
|
|
|
|
# Install a plugin an run all the common post installation tests.
|
|
|
|
install_plugin() {
|
|
|
|
local name=$1
|
|
|
|
local path="$2"
|
|
|
|
|
|
|
|
assert_file_exist "$path"
|
|
|
|
|
2016-02-04 10:00:55 -05:00
|
|
|
sudo -E -u $ESPLUGIN_COMMAND_USER "$ESHOME/bin/elasticsearch-plugin" install "file://$path"
|
2015-08-21 16:05:50 -04:00
|
|
|
|
|
|
|
assert_file_exist "$ESPLUGINS/$name"
|
|
|
|
assert_file_exist "$ESPLUGINS/$name/plugin-descriptor.properties"
|
2015-10-06 08:13:24 -04:00
|
|
|
#check we did not accidentially create a log file as root as /usr/share/elasticsearch
|
|
|
|
assert_file_not_exist "/usr/share/elasticsearch/logs"
|
2015-09-15 11:33:39 -04:00
|
|
|
|
|
|
|
# At some point installing or removing plugins caused elasticsearch's logs
|
|
|
|
# to be owned by root. This is bad so we want to make sure it doesn't
|
|
|
|
# happen.
|
|
|
|
if [ -e "$ESLOG" ] && [ $(stat "$ESLOG" --format "%U") == "root" ]; then
|
|
|
|
echo "$ESLOG is now owned by root! That'll break logging when elasticsearch tries to start."
|
|
|
|
false
|
|
|
|
fi
|
2015-09-01 16:56:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
install_jvm_plugin() {
|
|
|
|
local name=$1
|
|
|
|
local path="$2"
|
|
|
|
install_plugin $name "$path"
|
2015-08-21 16:05:50 -04:00
|
|
|
assert_file_exist "$ESPLUGINS/$name/$name"*".jar"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Remove a plugin and make sure its plugin directory is removed.
|
|
|
|
remove_plugin() {
|
|
|
|
local name=$1
|
|
|
|
|
|
|
|
echo "Removing $name...."
|
2016-02-04 10:00:55 -05:00
|
|
|
sudo -E -u $ESPLUGIN_COMMAND_USER "$ESHOME/bin/elasticsearch-plugin" remove $name
|
2015-08-21 16:05:50 -04:00
|
|
|
|
|
|
|
assert_file_not_exist "$ESPLUGINS/$name"
|
2015-09-15 11:33:39 -04:00
|
|
|
|
|
|
|
# At some point installing or removing plugins caused elasticsearch's logs
|
|
|
|
# to be owned by root. This is bad so we want to make sure it doesn't
|
|
|
|
# happen.
|
|
|
|
if [ -e "$ESLOG" ] && [ $(stat "$ESLOG" --format "%U") == "root" ]; then
|
|
|
|
echo "$ESLOG is now owned by root! That'll break logging when elasticsearch tries to start."
|
|
|
|
false
|
|
|
|
fi
|
2015-08-21 16:05:50 -04:00
|
|
|
}
|
|
|
|
|
2015-10-09 10:52:05 -04:00
|
|
|
# Install the jvm-example plugin which fully exercises the special case file
|
2015-08-21 16:05:50 -04:00
|
|
|
# placements for non-site plugins.
|
|
|
|
install_jvm_example() {
|
|
|
|
local relativePath=${1:-$(readlink -m jvm-example-*.zip)}
|
2015-09-01 16:56:36 -04:00
|
|
|
install_jvm_plugin jvm-example "$relativePath"
|
2015-08-21 16:05:50 -04:00
|
|
|
|
2015-10-13 11:34:56 -04:00
|
|
|
#owner group and permissions vary depending on how es was installed
|
|
|
|
#just make sure that everything is the same as the parent bin dir, which was properly set up during install
|
|
|
|
bin_user=$(find "$ESHOME/bin" -maxdepth 0 -printf "%u")
|
|
|
|
bin_owner=$(find "$ESHOME/bin" -maxdepth 0 -printf "%g")
|
|
|
|
bin_privileges=$(find "$ESHOME/bin" -maxdepth 0 -printf "%m")
|
|
|
|
assert_file "$ESHOME/bin/jvm-example" d $bin_user $bin_owner $bin_privileges
|
|
|
|
assert_file "$ESHOME/bin/jvm-example/test" f $bin_user $bin_owner $bin_privileges
|
2015-10-09 10:52:05 -04:00
|
|
|
|
|
|
|
#owner group and permissions vary depending on how es was installed
|
|
|
|
#just make sure that everything is the same as $CONFIG_DIR, which was properly set up during install
|
|
|
|
config_user=$(find "$ESCONFIG" -maxdepth 0 -printf "%u")
|
|
|
|
config_owner=$(find "$ESCONFIG" -maxdepth 0 -printf "%g")
|
|
|
|
config_privileges=$(find "$ESCONFIG" -maxdepth 0 -printf "%m")
|
|
|
|
assert_file "$ESCONFIG/jvm-example" d $config_user $config_owner $config_privileges
|
|
|
|
#the original file has no execute permissions and that must not change, but all other permissions
|
|
|
|
#need to be inherited from the parent config dir. We check this by applying the 111 mask to the config dir privileges.
|
|
|
|
for i in `seq 0 2`; do
|
|
|
|
current_perm_dir=${config_privileges:$i:1}
|
|
|
|
final_perm=$(($current_perm_dir & ~1))
|
|
|
|
expected_file_privileges+=$final_perm
|
|
|
|
done
|
|
|
|
assert_file "$ESCONFIG/jvm-example/example.yaml" f $config_user $config_owner $expected_file_privileges
|
2015-08-21 16:05:50 -04:00
|
|
|
|
|
|
|
echo "Running jvm-example's bin script...."
|
|
|
|
"$ESHOME/bin/jvm-example/test" | grep test
|
|
|
|
}
|
|
|
|
|
2015-10-09 10:52:05 -04:00
|
|
|
# Remove the jvm-example plugin which fully exercises the special cases of
|
2015-08-21 16:05:50 -04:00
|
|
|
# removing bin and not removing config.
|
|
|
|
remove_jvm_example() {
|
|
|
|
remove_plugin jvm-example
|
|
|
|
|
|
|
|
assert_file_not_exist "$ESHOME/bin/jvm-example"
|
|
|
|
assert_file_exist "$ESCONFIG/jvm-example"
|
|
|
|
assert_file_exist "$ESCONFIG/jvm-example/example.yaml"
|
|
|
|
}
|
|
|
|
|
2015-09-01 16:56:36 -04:00
|
|
|
# Install a plugin with a special prefix. For the most part prefixes are just
|
|
|
|
# useful for grouping but the "analysis" prefix is special because all
|
2015-08-21 16:05:50 -04:00
|
|
|
# analysis plugins come with a corresponding lucene-analyzers jar.
|
|
|
|
# $1 - the prefix
|
|
|
|
# $2 - the plugin name
|
|
|
|
# $@ - all remaining arguments are jars that must exist in the plugin's
|
|
|
|
# installation directory
|
2015-09-01 16:56:36 -04:00
|
|
|
install_and_check_plugin() {
|
2015-08-21 16:05:50 -04:00
|
|
|
local prefix=$1
|
|
|
|
shift
|
|
|
|
local name=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
if [ "$prefix" == "-" ]; then
|
|
|
|
local fullName="$name"
|
|
|
|
else
|
|
|
|
local fullName="$prefix-$name"
|
|
|
|
fi
|
|
|
|
|
2015-09-01 16:56:36 -04:00
|
|
|
install_jvm_plugin $fullName "$(readlink -m $fullName-*.zip)"
|
2015-08-21 16:05:50 -04:00
|
|
|
if [ $prefix == 'analysis' ]; then
|
|
|
|
assert_file_exist "$(readlink -m $ESPLUGINS/$fullName/lucene-analyzers-$name-*.jar)"
|
|
|
|
fi
|
|
|
|
for file in "$@"; do
|
|
|
|
assert_file_exist "$(readlink -m $ESPLUGINS/$fullName/$file)"
|
|
|
|
done
|
|
|
|
}
|
2015-09-16 11:11:49 -04:00
|
|
|
|
|
|
|
# Compare a list of plugin names to the plugins in the plugins pom and see if they are the same
|
|
|
|
# $1 the file containing the list of plugins we want to compare to
|
|
|
|
# $2 description of the source of the plugin list
|
|
|
|
compare_plugins_list() {
|
|
|
|
cat $1 | sort > /tmp/plugins
|
2015-11-02 12:40:47 -05:00
|
|
|
ls /elasticsearch/plugins/*/build.gradle | cut -d '/' -f 4 |
|
2015-09-16 11:11:49 -04:00
|
|
|
sort > /tmp/expected
|
|
|
|
echo "Checking plugins from $2 (<) against expected plugins (>):"
|
|
|
|
diff /tmp/expected /tmp/plugins
|
|
|
|
}
|