Skip to content

Commit

Permalink
test(ubuntu): fix tests on Ubuntu distro
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Sep 4, 2019
1 parent 23214bf commit b13bed2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 35 deletions.
3 changes: 2 additions & 1 deletion php/map.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
10 changes: 1 addition & 9 deletions test/integration/default/controls/config_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ def test_debian
end
end

def test_ubuntu
end

def test_redhat
end

Expand All @@ -32,12 +29,7 @@ def test_suse

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'
Expand Down
13 changes: 1 addition & 12 deletions test/integration/default/controls/package_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ def test_debian
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 }
Expand All @@ -45,12 +39,7 @@ def test_suse

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'
Expand Down
14 changes: 1 addition & 13 deletions test/integration/default/controls/service_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@ def test_debian
end
end

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

def test_redhat
end

Expand All @@ -28,12 +21,7 @@ def test_suse

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'
Expand Down
9 changes: 9 additions & 0 deletions test/salt/pillar/debian.sls
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit b13bed2

Please sign in to comment.