Browse Source

test(ubuntu): fix tests on Ubuntu distro

tags/v1.1.0
Nicolas Rodriguez 5 years ago
parent
commit
b13bed2a48
5 changed files with 14 additions and 35 deletions
  1. +2
    -1
      php/map.jinja
  2. +1
    -9
      test/integration/default/controls/config_spec.rb
  3. +1
    -12
      test/integration/default/controls/package_spec.rb
  4. +1
    -13
      test/integration/default/controls/service_spec.rb
  5. +9
    -0
      test/salt/pillar/debian.sls

+ 2
- 1
php/map.jinja View File

@@ -67,7 +67,8 @@
'php': 'php' + php_version,
'phpenmod_command': 'phpenmod -v' + php_version,
'pspell': 'php' + php_version + '-pspell',
'redis': 'php' + php_version + '-redis',
'readline': 'php' + php_version + '-readline',
'redis': 'php-redis',
'seclib': ['php-phpseclib', 'php-seclib'],
'snmp': 'php' + php_version + '-snmp',
'soap': 'php' + php_version + '-soap',

+ 1
- 9
test/integration/default/controls/config_spec.rb View File

@@ -21,9 +21,6 @@ control 'Php configuration' do
end
end

def test_ubuntu
end

def test_redhat
end

@@ -32,12 +29,7 @@ control 'Php configuration' do

case os[:family]
when 'debian'
case os[:name]
when 'ubuntu'
test_ubuntu
when 'debian'
test_debian
end
test_debian
when 'redhat', 'fedora'
test_redhat
when 'suse'

+ 1
- 12
test/integration/default/controls/package_spec.rb View File

@@ -25,12 +25,6 @@ control 'Php package' do
end
end

def test_ubuntu
describe package(pkg_name) do
it { should be_installed }
end
end

def test_redhat
describe package('php') do
it { should be_installed }
@@ -45,12 +39,7 @@ control 'Php package' do

case os[:family]
when 'debian'
case os[:name]
when 'ubuntu'
test_ubuntu
when 'debian'
test_debian
end
test_debian
when 'redhat', 'fedora'
test_redhat
when 'suse'

+ 1
- 13
test/integration/default/controls/service_spec.rb View File

@@ -13,13 +13,6 @@ control 'Php service' do
end
end

def test_ubuntu
describe service(pkg_name) do
it { should be_enabled }
it { should be_running }
end
end

def test_redhat
end

@@ -28,12 +21,7 @@ control 'Php service' do

case os[:family]
when 'debian'
case os[:name]
when 'ubuntu'
test_ubuntu
when 'debian'
test_debian
end
test_debian
when 'redhat', 'fedora'
test_redhat
when 'suse'

+ 9
- 0
test/salt/pillar/debian.sls View File

@@ -2,11 +2,20 @@
# vim: ft=yaml
---
php:
{% if salt['grains.get']('os') == 'Ubuntu' %}
use_external_repo: true
repo:
humanname: php-sury ppa
name: "deb http://ppa.launchpad.net/ondrej/php/ubuntu {{ salt['grains.get']('oscodename') }} main"
file: /etc/apt/sources.list.d/php-sury.list
key_url: https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c
{% else %}
repo:
humanname: php-sury repo
name: "deb https://packages.sury.org/php/ {{ salt['grains.get']('oscodename') }} main"
file: /etc/apt/sources.list.d/php-sury.list
key_url: https://packages.sury.org/php/apt.gpg
{% endif %}

version:
- '5.6'

Loading…
Cancel
Save