require 'spec_helper'

describe 'mysql::server' do
  on_supported_os.each do |os, facts|
    context "my.cnf template - on #{os}" do
      let(:facts) do
        facts.merge(root_home: '/root')
      end

      context 'normal entry' do
        let(:params) { { override_options: { 'mysqld' => { 'socket' => '/var/lib/mysql/mysql.sock' } } } }

        it do
          is_expected.to contain_file('mysql-config-file').with(mode: '0644',
                                                                selinux_ignore_defaults: true).with_content(%r{socket = \/var\/lib\/mysql\/mysql.sock})
        end
      end

      describe 'array entry' do
        let(:params) { { override_options: { 'mysqld' => { 'replicate-do-db' => %w[base1 base2] } } } }

        it do
          is_expected.to contain_file('mysql-config-file').with_content(
            %r{.*replicate-do-db = base1\nreplicate-do-db = base2.*},
          )
        end
      end

      describe 'skip-name-resolve set to an empty string' do
        let(:params) { { override_options: { 'mysqld' => { 'skip-name-resolve' => '' } } } }

        it { is_expected.to contain_file('mysql-config-file').with_content(%r{^skip-name-resolve$}) }
      end

      describe 'ssl set to true' do
        let(:params) { { override_options: { 'mysqld' => { 'ssl' => true } } } }

        it { is_expected.to contain_file('mysql-config-file').with_content(%r{ssl}) }
        it { is_expected.to contain_file('mysql-config-file').without_content(%r{ssl = true}) }
      end

      describe 'ssl set to false' do
        let(:params) { { override_options: { 'mysqld' => { 'ssl' => false } } } }

        it { is_expected.to contain_file('mysql-config-file').with_content(%r{ssl = false}) }
      end

      # ssl-disable (and ssl) are special cased within mysql.
      describe 'possibility of disabling ssl completely' do
        let(:params) { { override_options: { 'mysqld' => { 'ssl' => true, 'ssl-disable' => true } } } }

        it { is_expected.to contain_file('mysql-config-file').without_content(%r{ssl = true}) }
      end

      describe 'a non ssl option set to true' do
        let(:params) { { override_options: { 'mysqld' => { 'test' => true } } } }

        it { is_expected.to contain_file('mysql-config-file').with_content(%r{^test$}) }
        it { is_expected.to contain_file('mysql-config-file').without_content(%r{test = true}) }
      end

      context 'with includedir' do
        let(:params) { { includedir: '/etc/my.cnf.d' } }

        it 'makes the directory' do
          is_expected.to contain_file('/etc/my.cnf.d').with(ensure: :directory,
                                                            mode: '0755')
        end

        it { is_expected.to contain_file('mysql-config-file').with_content(%r{!includedir}) }
      end

      context 'without includedir' do
        let(:params) { { includedir: '' } }

        it 'shouldnt contain the directory' do
          is_expected.not_to contain_file('mysql-config-file').with(ensure: :directory,
                                                                    mode: '0755')
        end

        it { is_expected.to contain_file('mysql-config-file').without_content(%r{!includedir}) }
      end
    end
  end
end
