ansible-role-elasticsearch/test/integration/helpers/serverspec/package_spec.rb

88 lines
2.3 KiB
Ruby
Raw Normal View History

require 'spec_helper'
shared_examples 'package::init' do |es_version,plugins|
describe user('elasticsearch') do
it { should exist }
end
2015-11-25 15:28:09 +00:00
describe service('node1_elasticsearch') do
it { should be_running }
end
describe package('elasticsearch') do
it { should be_installed }
end
2015-11-25 15:28:09 +00:00
describe file('/etc/elasticsearch/node1/elasticsearch.yml') do
it { should be_file }
2015-12-14 19:34:09 +00:00
it { should contain 'path.plugins: /usr/share/elasticsearch/plugins/node1' }
it { should contain 'http.port: 9200' }
it { should contain 'transport.tcp.port: 9300' }
it { should contain 'discovery.zen.ping.unicast.hosts: localhost:9300' }
end
2015-11-25 17:40:28 +00:00
describe file('/etc/elasticsearch/node1/scripts') do
it { should be_directory }
it { should be_owned_by 'elasticsearch' }
end
2015-11-25 18:31:03 +00:00
describe file('/etc/elasticsearch/node1/scripts/calculate-score.groovy') do
it { should be_file }
it { should be_owned_by 'elasticsearch' }
end
2015-11-25 15:28:09 +00:00
describe 'Node listening' do
it 'listening in port 9200' do
expect(port 9200).to be_listening
end
end
2015-11-26 10:20:58 +00:00
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
2015-11-27 19:58:54 +00:00
command = command('curl -s "localhost:9200/_template/basic"')
2015-11-26 10:20:58 +00:00
expect(command.stdout).to match(/basic/)
expect(command.exit_status).to eq(0)
end
end
describe 'version check' do
it 'should be reported as version '+es_version do
command = command('curl -s localhost:9200 | grep number')
expect(command.stdout).to match(es_version)
expect(command.exit_status).to eq(0)
end
end
describe file('/usr/share/elasticsearch/plugins/node1') do
it { should be_directory }
it { should be_owned_by 'elasticsearch' }
end
for plugin in plugins
describe file('/usr/share/elasticsearch/plugins/node1/'+plugin) do
it { should be_directory }
it { should be_owned_by 'elasticsearch' }
end
describe command('curl -s localhost:9200/_nodes/plugins?pretty=true | grep '+plugin) do
its(:exit_status) { should eq 0 }
end
end
end