Skip to content

Commit

Permalink
Merge pull request #135 from sinfomicien/add_docker_ci_tests
Browse files Browse the repository at this point in the history
Update Kitchen tests
  • Loading branch information
josephholsten committed Mar 8, 2017
2 parents a960f79 + 9dc4ab7 commit 25ceea6
Show file tree
Hide file tree
Showing 6 changed files with 264 additions and 14 deletions.
154 changes: 154 additions & 0 deletions .kitchen.dokken.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
---
driver:
name: dokken
privileged: true # because Docker and SystemD/Upstart
chef_version: current

transport:
name: dokken

provisioner:
name: dokken

platforms:
- name: centos-6
driver:
image: centos:6
platform: rhel
pid_one_command: /sbin/init
intermediate_instructions:
- RUN yum -y install which initscripts

- name: centos-7
driver:
image: centos:7
platform: rhel
pid_one_command: /usr/lib/systemd/systemd
intermediate_instructions:
- RUN yum -y install lsof which initscripts net-tools

- name: debian-7
driver:
image: debian:7
pid_one_command: /sbin/init
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get install lsb-release net-tools -y

- name: debian-8
driver:
image: debian:8
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get install lsb-release net-tools -y

- name: ubuntu-12.04
driver:
image: ubuntu-upstart:12.04
pid_one_command: /sbin/init
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get install net-tools -y

- name: ubuntu-14.04
driver:
image: ubuntu-upstart:14.04
pid_one_command: /sbin/init
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get install net-tools -y

- name: ubuntu-16.04
driver:
image: ubuntu:16.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get install net-tools -y

suites:
#
# default
#
- name: default
run_list:
- recipe[mariadb::default]
attributes:
mariadb:
use_default_repository: true
#
# native
#
- name: native
run_list:
- recipe[mariadb::default]
attributes:
mariadb:
install:
prefer_os_package: true
includes:
- centos-7
#
# replication
#
- name: replication
run_list:
- recipe[mariadb_test::replication]
attributes:
mariadb:
use_default_repository: true
#
# galera
#
- name: galera
run_list:
- recipe[mariadb::galera]
attributes:
mariadb:
use_default_repository: true
#
# datadir_changed
#
- name: datadir_changed
run_list:
- recipe[mariadb::default]
attributes:
mariadb:
use_default_repository: true
mysqld:
datadir: /home/mysql
#
# port_changed
#
- name: port_changed
run_list:
- recipe[mariadb::default]
attributes:
mariadb:
server_root_password: gsql
use_default_repository: true
mysqld:
port: 3307
#
# plugins
#
- name: plugins
run_list:
- recipe[mariadb::default]
attributes:
mariadb:
use_default_repository: true
plugins:
audit: true
#
# no_binlog
#
- name: no_binlog
run_list:
- recipe[mariadb::default]
attributes:
mariadb:
use_default_repository: true
replication:
log_bin: false
39 changes: 33 additions & 6 deletions .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,31 @@ driver:
provisioner:
name: chef_zero

verifier:
name: inspec

platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
- name: debian-8.7
- name: ubuntu-12.04
- name: centos-6.8
- name: centos-7.2
- name: ubuntu-14.04
- name: fedora-25
- name: ubuntu-16.04

suites:
#
# default
#
- name: default
run_list:
- recipe[mariadb::default]
attributes:
mariadb:
use_default_repository: true
#
# native
#
- name: native
run_list:
- recipe[mariadb::default]
Expand All @@ -28,20 +38,28 @@ suites:
install:
prefer_os_package: true
includes:
- centos-7.0
- fedora-21
- centos-7.3
#
# replication
#
- name: replication
run_list:
- recipe[mariadb_test::replication]
attributes:
mariadb:
use_default_repository: true
#
# galera
#
- name: galera
run_list:
- recipe[mariadb::galera]
attributes:
mariadb:
use_default_repository: true
#
# datadir_changed
#
- name: datadir_changed
run_list:
- recipe[mariadb::default]
Expand All @@ -50,6 +68,9 @@ suites:
use_default_repository: true
mysqld:
datadir: /home/mysql
#
# port_changed
#
- name: port_changed
run_list:
- recipe[mariadb::default]
Expand All @@ -59,6 +80,9 @@ suites:
use_default_repository: true
mysqld:
port: 3307
#
# plugins
#
- name: plugins
run_list:
- recipe[mariadb::default]
Expand All @@ -67,7 +91,10 @@ suites:
use_default_repository: true
plugins:
audit: true
- name: no_binlog
#
# no_binlog
#
- name: no_binlog
run_list:
- recipe[mariadb::default]
attributes:
Expand Down
73 changes: 67 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,82 @@
sudo: required
dist: trusty

# install the stable release of chef-dk.
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk

# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"

services: docker

env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-7
- INSTANCE=default-debian-8
- INSTANCE=default-ubuntu-1204
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
- INSTANCE=native-centos-7
- INSTANCE=replication-centos-6
- INSTANCE=replication-centos-7
- INSTANCE=replication-debian-7
- INSTANCE=replication-debian-8
- INSTANCE=replication-ubuntu-1204
- INSTANCE=replication-ubuntu-1404
- INSTANCE=replication-ubuntu-1604
- INSTANCE=galera-centos-6
- INSTANCE=galera-centos-7
- INSTANCE=galera-debian-7
- INSTANCE=galera-debian-8
- INSTANCE=galera-ubuntu-1204
- INSTANCE=galera-ubuntu-1404
- INSTANCE=galera-ubuntu-1604
- INSTANCE=datadir-changed-centos-6
- INSTANCE=datadir-changed-centos-7
- INSTANCE=datadir-changed-debian-7
- INSTANCE=datadir-changed-debian-8
- INSTANCE=datadir-changed-ubuntu-1204
- INSTANCE=datadir-changed-ubuntu-1404
- INSTANCE=datadir-changed-ubuntu-1604
- INSTANCE=port-changed-centos-6
- INSTANCE=port-changed-centos-7
- INSTANCE=port-changed-debian-7
- INSTANCE=port-changed-debian-8
- INSTANCE=port-changed-ubuntu-1204
- INSTANCE=port-changed-ubuntu-1404
- INSTANCE=port-changed-ubuntu-1604
- INSTANCE=plugins-centos-6
- INSTANCE=plugins-centos-7
- INSTANCE=plugins-debian-7
- INSTANCE=plugins-debian-8
- INSTANCE=plugins-ubuntu-1204
- INSTANCE=plugins-ubuntu-1404
- INSTANCE=plugins-ubuntu-1604
- INSTANCE=no-binlog-centos-6
- INSTANCE=no-binlog-centos-7
- INSTANCE=no-binlog-debian-7
- INSTANCE=no-binlog-debian-8
- INSTANCE=no-binlog-ubuntu-1204
- INSTANCE=no-binlog-ubuntu-1404
- INSTANCE=no-binlog-ubuntu-1604

before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)" && chef gem install berkshelf
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version

script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}

matrix:
include:
- before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- script:
- /opt/chefdk/bin/chef exec rake
env: UNIT_AND_LINT=1
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Add Docker tests to Travis for smoke tests
- Add docker CI tests (add new APT key to fix [#107](https://github.com/sinfomicien/mariadb/issues/107), add Supermarket version badge and change Travis badge to show master build status to README)

### Added

- Add Docker tests to Travis for smoke tests
- Add docker CI tests (add new APT key to fix #107, add Supermarket version badge and change Travis badge to show master build status to README)

### Changed

- Change CHANGELOG format to follow [Keep a Changelog (v0.3.0)](http://keepachangelog.com/en/0.3.0/)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MariaDB Cookbook
================

[![Build Status](https://travis-ci.org/sinfomicien/mariadb.png)](https://travis-ci.org/sinfomicien/mariadb)
[![Build Status](https://travis-ci.org/sinfomicien/mariadb.svg?branch=master)](https://travis-ci.org/sinfomicien/mariadb) [![Cookbook Version](https://img.shields.io/cookbook/v/mariadb.svg)](https://supermarket.chef.io/cookbooks/mariadb)

Description
-----------
Expand Down
5 changes: 4 additions & 1 deletion recipes/repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@
when 'apt'
include_recipe 'apt::default'

apt_key = 'CBCB082A1BB943DB'
apt_key = 'F1656F24C74CD1D8' if node['platform'] == 'ubuntu' && node['platform_version'].split('.')[0].to_i >= 16

apt_repository "mariadb-#{node['mariadb']['install']['version']}" do
uri 'http://' + node['mariadb']['apt_repository']['base_url'] + '/' + \
node['mariadb']['install']['version'] + '/' + node['platform']
distribution node['lsb']['codename']
components ['main']
keyserver 'keyserver.ubuntu.com'
key 'CBCB082A1BB943DB'
key apt_key
end
when 'yum'
include_recipe 'yum::default'
Expand Down

0 comments on commit 25ceea6

Please sign in to comment.