203 lines
6.6 KiB
Ruby
203 lines
6.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
shared_examples 'xpack_standard::init' do |es_version,plugins|
|
|
|
|
describe user('elasticsearch') do
|
|
it { should exist }
|
|
end
|
|
|
|
describe service('security_node_elasticsearch') do
|
|
it { should be_running }
|
|
end
|
|
|
|
describe package('elasticsearch') do
|
|
it { should be_installed }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/security_node/elasticsearch.yml') do
|
|
it { should be_file }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/security_node/log4j2.properties') do
|
|
it { should be_file }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/security_node/elasticsearch.yml') do
|
|
it { should contain 'node.name: localhost-security_node' }
|
|
it { should contain 'cluster.name: elasticsearch' }
|
|
it { should contain 'path.conf: /etc/elasticsearch/security_node' }
|
|
it { should contain 'path.data: /var/lib/elasticsearch/localhost-security_node' }
|
|
it { should contain 'path.logs: /var/log/elasticsearch/localhost-security_node' }
|
|
end
|
|
|
|
describe 'Node listening' do
|
|
it 'listening in port 9200' do
|
|
expect(port 9200).to be_listening
|
|
end
|
|
end
|
|
|
|
describe 'version check' do
|
|
it 'should be reported as version '+es_version do
|
|
command = command('curl -s localhost:9200 -u es_admin:changeMeAgain | grep number')
|
|
expect(command.stdout).to match(es_version)
|
|
expect(command.exit_status).to eq(0)
|
|
end
|
|
end
|
|
|
|
describe file('/etc/init.d/elasticsearch') do
|
|
it { should_not exist }
|
|
end
|
|
|
|
describe file('/etc/default/elasticsearch') do
|
|
it { should_not exist }
|
|
end
|
|
|
|
describe file('/etc/sysconfig/elasticsearch') do
|
|
it { should_not exist }
|
|
end
|
|
|
|
describe file('/usr/lib/systemd/system/elasticsearch.service') do
|
|
it { should_not exist }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/elasticsearch.yml') do
|
|
it { should_not exist }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/logging.yml') do
|
|
it { should_not exist }
|
|
end
|
|
|
|
#Xpack specific tests
|
|
describe file('/usr/share/elasticsearch/plugins') do
|
|
it { should be_directory }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
#Test if x-pack is activated
|
|
describe 'x-pack activation' do
|
|
it 'should be activated and valid' do
|
|
command = command('curl -s localhost:9200/_license?pretty=true -u es_admin:changeMeAgain')
|
|
expect(command.stdout).to match('"status" : "active"')
|
|
expect(command.exit_status).to eq(0)
|
|
end
|
|
end
|
|
|
|
describe file('/usr/share/elasticsearch/plugins/x-pack') do
|
|
it { should be_directory }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
describe command('curl -s localhost:9200/_nodes/plugins?pretty=true -u es_admin:changeMeAgain | grep x-pack') do
|
|
its(:exit_status) { should eq 0 }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/security_node/x-pack') do
|
|
it { should be_directory }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
describe file('/usr/share/elasticsearch/plugins/x-pack') do
|
|
it { should be_directory }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
for plugin in plugins
|
|
describe file('/usr/share/elasticsearch/plugins/'+plugin) do
|
|
it { should be_directory }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
describe command('curl -s localhost:9200/_nodes/plugins -u es_admin:changeMeAgain | grep \'"name":"'+plugin+'","version":"'+es_version+'"\'') do
|
|
its(:exit_status) { should eq 0 }
|
|
end
|
|
end
|
|
|
|
#Test users file, users_roles and roles.yml
|
|
describe file('/etc/elasticsearch/security_node/x-pack/users_roles') do
|
|
it { should be_owned_by 'elasticsearch' }
|
|
it { should contain 'admin:es_admin' }
|
|
it { should contain 'power_user:testUser' }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/security_node/x-pack/users') do
|
|
it { should be_owned_by 'elasticsearch' }
|
|
it { should contain 'testUser:' }
|
|
it { should contain 'es_admin:' }
|
|
end
|
|
|
|
|
|
describe file('/etc/elasticsearch/security_node/x-pack/roles.yml') do
|
|
it { should be_owned_by 'elasticsearch' }
|
|
#Test contents as expected
|
|
its(:md5sum) { should eq '7800182547287abd480c8b095bf26e9e' }
|
|
end
|
|
|
|
|
|
#Test native roles and users are loaded
|
|
describe command('curl -s localhost:9200/_xpack/security/user -u es_admin:changeMeAgain | md5sum | grep b6a1293c343e745a508c74778c9be8bb') do
|
|
its(:exit_status) { should eq 0 }
|
|
end
|
|
|
|
describe command('curl -s localhost:9200/_xpack/security/role -u es_admin:changeMeAgain | md5sum | grep 44b97844bd8b31d5573493a99ef62106') do
|
|
its(:exit_status) { should eq 0 }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/templates') do
|
|
it { should be_directory }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
describe file('/etc/elasticsearch/templates/basic.json') do
|
|
it { should be_file }
|
|
it { should be_owned_by 'elasticsearch' }
|
|
end
|
|
|
|
describe 'Template Installed' do
|
|
it 'should be reported as being installed', :retry => 3, :retry_wait => 10 do
|
|
command = command('curl -s "localhost:9200/_template/basic" -u es_admin:changeMeAgain')
|
|
expect(command.stdout).to match(/basic/)
|
|
expect(command.exit_status).to eq(0)
|
|
end
|
|
end
|
|
|
|
#This is possibly subject to format changes in the response across versions so may fail in the future
|
|
describe 'Template Contents Correct' do
|
|
it 'should be reported as being installed', :retry => 3, :retry_wait => 10 do
|
|
command = command('curl -s "localhost:9200/_template/basic" -u es_admin:changeMeAgain | md5sum')
|
|
expect(command.stdout).to match(/153b1a45daf48ccee80395b85c61e332/)
|
|
end
|
|
end
|
|
|
|
#Test contents of Elasticsearch.yml file
|
|
describe file('/etc/elasticsearch/security_node/elasticsearch.yml') do
|
|
it { should contain 'security.authc.realms.file1.order: 0' }
|
|
it { should contain 'security.authc.realms.file1.type: file' }
|
|
it { should contain 'security.authc.realms.native1.order: 1' }
|
|
it { should contain 'security.authc.realms.native1.type: native' }
|
|
end
|
|
|
|
#Test contents of role_mapping.yml
|
|
describe file('/etc/elasticsearch/security_node/x-pack/role_mapping.yml') do
|
|
it { should be_owned_by 'elasticsearch' }
|
|
it { should contain 'power_user:' }
|
|
it { should contain '- cn=admins,dc=example,dc=com' }
|
|
it { should contain 'user:' }
|
|
it { should contain '- cn=admins,dc=example,dc=com' }
|
|
end
|
|
|
|
|
|
describe file('/etc/elasticsearch/security_node/x-pack/system_key') do
|
|
it { should be_owned_by 'elasticsearch' }
|
|
it { should be_writable.by('owner') }
|
|
it { should be_writable.by_user('elasticsearch') }
|
|
it { should be_readable.by('owner') }
|
|
it { should be_readable.by_user('elasticsearch') }
|
|
it { should_not be_executable }
|
|
#Test contents as expected
|
|
its(:md5sum) { should eq '6ff0e6c4380a6ac0f6e04d871c0ca5e8' }
|
|
end
|
|
end
|
|
|