Sha256: 46f57960f1823aa5832b2d068d81957a46d2d48d8dab7e4dd7d3b04696cfb024

Contents?: true

Size: 1.72 KB

Versions: 1

Compression:

Stored size: 1.72 KB

Contents

require 'spec_helper'
require 'json'

describe BeakerAnswers::Version20171 do
  let( :ver )         { '2017.1.0' }
  let( :options )     { StringifyHash.new }
  let( :basic_hosts ) { make_hosts( {'pe_ver' => ver } ) }
  let( :hosts ) { basic_hosts[0]['roles'] = ['master', 'agent']
                  basic_hosts[1]['roles'] = ['dashboard', 'agent']
                  basic_hosts[2]['roles'] = ['database', 'agent']
                  basic_hosts }
  let( :answers )     { BeakerAnswers::Answers.create(ver, hosts, options) }
  let( :answer_hash ) { answers.answers }

  context 'when generating a hiera config' do
    context 'for a monolithic install' do
      let( :basic_hosts ) { make_hosts( {'pe_ver' => ver }, 1 ) }
      let( :hosts ) { basic_hosts[0]['roles'] = ['master', 'agent', 'dashboard', 'database']
                      basic_hosts }
      let( :gold_role_answers ) do
        {
          "console_admin_password" => default_password,
          "node_roles" => {
            "pe_role::monolithic::primary_master" => [basic_hosts[0].hostname],
          }
        }
      end

      it "accepts overrides to node_roles from beaker conf answers"

      include_examples 'pe.conf'
      include_examples 'valid MEEP 2.0 pe.conf'
    end

    context 'for a split install' do
      let( :gold_role_answers ) do
        {
          "console_admin_password" => default_password,
          "node_roles" => {
            "pe_role::split::primary_master" => [basic_hosts[0].hostname],
            "pe_role::split::console" => [basic_hosts[1].hostname],
            "pe_role::split::puppetdb" => [basic_hosts[2].hostname],
          }
        }
      end

      include_examples 'pe.conf'
      include_examples 'valid MEEP 2.0 pe.conf'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
beaker-answers-0.13.0 spec/beaker-answers/versions/version20171_spec.rb