Update testing environment

This commit is contained in:
Javier Bértoli 2018-08-25 16:08:24 -03:00
parent 8694a11de5
commit b641216b8b
4 changed files with 49 additions and 8 deletions

View File

@ -1,16 +1,27 @@
---
driver:
name: vagrant
name: docker
driver_config:
use_sudo: false
privileged: true
provision_command: mkdir -p /run/sshd
run_command: /lib/systemd/systemd
platforms:
- name: centos-7.2
- name: debian-9
- name: ubuntu-18.04
- name: centos-7
provisioner:
name: salt_solo
salt_install: bootstrap
salt_bootstrap_url: https://bootstrap.saltstack.com
log_level: info
require_chef: false
salt_version: latest
formula: firewalld
salt_copy_filter:
- .kitchen
- .git
pillars:
top.sls:
base:
@ -28,10 +39,17 @@ provisioner:
- 24007-24008
- 49152-49200
verifier:
name: inspec
sudo: false
# cli, documentation, html, progress, json, json-min, json-rspec, junit
reporter: cli
inspec_tests:
- path: test/integration/default
suites:
- name: default
provisioner:
salt_bootstrap_options: -X -d
state_top:
base:
'*':

19
.travis.yml Normal file
View File

@ -0,0 +1,19 @@
sudo: required
cache: bundler
language: ruby
services:
- docker
before_install:
- bundle install
env:
matrix:
- INSTANCE: default-debian-9
- INSTANCE: default-ubuntu-1804
- INSTANCE: default-centos-7
script:
- bundle exec kitchen verify ${INSTANCE}

7
Gemfile Normal file
View File

@ -0,0 +1,7 @@
source "https://rubygems.org"
gem "test-kitchen", '>=1.20.0'
gem "kitchen-docker"
gem "kitchen-salt", ">=0.1.0"
gem "kitchen-inspec"

View File

@ -1,6 +1,3 @@
require 'serverspec'
set :backend, :exec
describe service('firewalld') do
it { should be_running }
end