dev/provisioning/modules/elasticsearch/spec/integration/integration001.rb
author ymh <ymh.work@gmail.com>
Wed, 23 Nov 2016 11:29:37 +0100
changeset 441 65a6c640de7a
parent 406 cf0f23803a53
permissions -rwxr-xr-x
correct absolute url creation in helper, again

require 'spec_helper_acceptance'
require 'json'

describe "Integration testing" do

  before :all do
    shell "mkdir -p #{default['distmoduledir']}/another/files"

    create_remote_file default,
      "#{default['distmoduledir']}/another/files/good.json",
      JSON.dump(test_settings['template'])

    create_remote_file default,
      "#{default['distmoduledir']}/another/files/bad.json",
      JSON.dump(test_settings['template'])[0..-5]
  end

  describe "Setup Elasticsearch", :main => true do

    it 'should run successfully' do
      pp = "class { 'elasticsearch': config => { 'cluster.name' => '#{test_settings['cluster_name']}'}, java_install => true, package_url => '#{test_settings['snapshot_package']}' }
            elasticsearch::instance { 'es-01': config => { 'node.name' => 'elasticsearch001', 'http.port' => '#{test_settings['port_a']}' } }
           "

      # Run it twice and test for idempotency
      apply_manifest(pp, :catch_failures => true)
      expect(apply_manifest(pp, :catch_failures => true).exit_code).to be_zero
    end


    describe service(test_settings['service_name_a']) do
      it { should be_enabled }
      it { should be_running }
    end

    describe package(test_settings['package_name']) do
      it { should be_installed }
    end

    describe file(test_settings['pid_file_a']) do
      it { should be_file }
      its(:content) { should match /[0-9]+/ }
    end

    describe "Elasticsearch serves requests on" do
      it {
        curl_with_retries("check ES on #{test_settings['port_a']}", default, "http://localhost:#{test_settings['port_a']}/?pretty=true", 0)
      }
    end

    describe file('/etc/elasticsearch/es-01/elasticsearch.yml') do
      it { should be_file }
      it { should contain 'name: elasticsearch001' }
    end

    describe file('/usr/share/elasticsearch/templates_import') do
      it { should be_directory }
    end

  end

  describe "Template tests", :template => true do

    describe "Insert a template with valid json content" do

      it 'should run successfully' do
        pp = "class { 'elasticsearch': config => { 'cluster.name' => '#{test_settings['cluster_name']}'}, java_install => true, package_url => '#{test_settings['snapshot_package']}' }
              elasticsearch::instance { 'es-01': config => { 'node.name' => 'elasticsearch001', 'http.port' => '#{test_settings['port_a']}' } }
              elasticsearch::template { 'foo': ensure => 'present', file => 'puppet:///modules/another/good.json' }"

        # Run it twice and test for idempotency
        apply_manifest(pp, :catch_failures => true)
        expect(apply_manifest(pp, :catch_failures => true).exit_code).to be_zero
      end

      it 'should report as existing in Elasticsearch' do
        curl_with_retries('validate template as installed', default, "http://localhost:#{test_settings['port_a']}/_template/foo | grep logstash", 0)
      end
    end

    if fact('puppetversion') =~ /3\.[2-9]\./
      describe "Insert a template with bad json content" do

        it 'run should fail' do
          pp = "class { 'elasticsearch': config => { 'cluster.name' => '#{test_settings['cluster_name']}'}, java_install => true, package_url => '#{test_settings['snapshot_package']}' }
                elasticsearch::instance { 'es-01': config => { 'node.name' => 'elasticsearch001', 'http.port' => '#{test_settings['port_a']}' } }
                elasticsearch::template { 'foo': ensure => 'present', file => 'puppet:///modules/another/bad.json' }"

          apply_manifest(pp, :expect_failures => true)
        end

      end

    else
      # The exit codes have changes since Puppet 3.2x
      # Since beaker expectations are based on the most recent puppet code All runs on previous versions fails.
    end

  end

  describe "Plugin tests", :plugin => true do

    describe "Install a plugin from official repository" do

      it 'should run successfully' do
        pp = "class { 'elasticsearch': config => { 'cluster.name' => '#{test_settings['cluster_name']}'}, java_install => true, package_url => '#{test_settings['snapshot_package']}' }
              elasticsearch::instance { 'es-01': config => { 'node.name' => 'elasticsearch001', 'http.port' => '#{test_settings['port_a']}' } }
              elasticsearch::plugin { 'lmenezes/elasticsearch-kopf': instances => 'es-01' }
             "

        # Run it twice and test for idempotency
        apply_manifest(pp, :catch_failures => true)
        expect(apply_manifest(pp, :catch_failures => true).exit_code).to be_zero
      end

      describe service(test_settings['service_name_a']) do
        it { should be_enabled }
        it { should be_running }
      end

      describe package(test_settings['package_name']) do
        it { should be_installed }
      end

      describe file(test_settings['pid_file_a']) do
        it { should be_file }
        its(:content) { should match /[0-9]+/ }
      end

      it 'make sure the directory exists' do
        shell('ls /usr/share/elasticsearch/plugins/kopf/', {:acceptable_exit_codes => 0})
      end

      it 'make sure elasticsearch reports it as existing' do
        curl_with_retries('validated plugin as installed', default, "http://localhost:#{test_settings['port_a']}/_nodes/?plugin | grep kopf", 0)
      end

    end

    if fact('puppetversion') =~ /3\.[2-9]\./

      describe "Install a non existing plugin" do

        it 'should run successfully' do
          pp = "class { 'elasticsearch': config => { 'cluster.name' => '#{test_settings['cluster_name']}'}, java_install => true, package_url => '#{test_settings['snapshot_package']}' }
                elasticsearch::instance { 'es-01': config => { 'node.name' => 'elasticsearch001', 'http.port' => '#{test_settings['port_a']}' } }
                elasticsearch::plugin{'elasticsearch/non-existing': module_dir => 'non-existing', instances => 'es-01' }
               "
          apply_manifest(pp, :expect_failures => true)
        end

      end

    else
      # The exit codes have changes since Puppet 3.2x
      # Since beaker expectations are based on the most recent puppet code All runs on previous versions fails.
    end

  end

end