Skip to content

Commit 9436192

Browse files
authored
Merge pull request #175 from myii/ci/merge-matrix-and-add-salt-lint-and-rubocop
ci: merge travis matrix, add `salt-lint` & `rubocop` to `lint` job
2 parents 44ce327 + 5f773d1 commit 9436192

File tree

10 files changed

+150
-79
lines changed

10 files changed

+150
-79
lines changed

.rubocop.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
3+
---
4+
# General overrides used across formulas in the org
5+
Metrics/LineLength:
6+
# Increase from default of `80`
7+
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
8+
Max: 88
9+
10+
# Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`
11+
Metrics/BlockLength:
12+
Max: 36

.salt-lint

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
3+
---
4+
exclude_paths: []
5+
skip_list:
6+
# Using `salt-lint` for linting other files as well, such as Jinja macros/templates
7+
- 205 # Use ".sls" as a Salt State file extension
8+
# Skipping `207` and `208` because `210` is sufficient, at least for the time-being
9+
# I.e. Allows 3-digit unquoted codes to still be used, such as `644` and `755`
10+
- 207 # File modes should always be encapsulated in quotation marks
11+
- 208 # File modes should always contain a leading zero
12+
tags: []
13+
verbosity: 1

.travis.yml

Lines changed: 71 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,101 @@
11
# -*- coding: utf-8 -*-
22
# vim: ft=yaml
33
---
4+
## Machine config
45
dist: bionic
5-
stages:
6-
- test
7-
- lint
8-
- name: release
9-
if: branch = master AND type != pull_request
10-
116
sudo: required
12-
cache: bundler
13-
language: ruby
14-
157
services:
168
- docker
179

18-
# Make sure the instances listed below match up with
19-
# the `platforms` defined in `kitchen.yml`
20-
# NOTE: Please try to select up to six instances that add some meaningful
21-
# testing of the formula's behaviour. If possible, try to refrain from
22-
# the classical "chosing all the instances because I want to test on
23-
# another/all distro/s" trap: it will just add time to the testing (see
24-
# the discussion on #121). As an example, the set chosen below covers
25-
# the most used distros families, systemd and non-systemd and the latest
26-
# three supported Saltstack versions with python2 and 3.
27-
# As for `kitchen.yml`, that should still contain all of the platforms,
28-
# to allow for comprehensive local testing
29-
# Ref: https://github.com/saltstack-formulas/template-formula/issues/118
30-
# Ref: https://github.com/saltstack-formulas/template-formula/issues/121
31-
env:
32-
matrix:
33-
- INSTANCE: default-debian-10-develop-py3
34-
# - INSTANCE: default-ubuntu-1804-develop-py3
35-
# - INSTANCE: default-centos-7-develop-py3
36-
# - INSTANCE: default-fedora-30-develop-py3
37-
# - INSTANCE: default-opensuse-leap-15-develop-py3
38-
# - INSTANCE: default-amazonlinux-2-develop-py2
39-
# - INSTANCE: default-arch-base-latest-develop-py2
40-
# - INSTANCE: default-debian-9-2019-2-py3
41-
- INSTANCE: default-ubuntu-1804-2019-2-py3
42-
# - INSTANCE: default-centos-7-2019-2-py3
43-
# - INSTANCE: default-fedora-30-2019-2-py3
44-
# - INSTANCE: default-opensuse-leap-15-2019-2-py3
45-
- INSTANCE: default-amazonlinux-2-2019-2-py2
46-
- INSTANCE: default-arch-base-latest-2019-2-py2
47-
# - INSTANCE: default-debian-9-2018-3-py2
48-
# - INSTANCE: default-ubuntu-1604-2018-3-py2
49-
# - INSTANCE: default-centos-7-2018-3-py2
50-
- INSTANCE: default-fedora-29-2018-3-py2
51-
- INSTANCE: default-opensuse-leap-15-2018-3-py2
52-
# - INSTANCE: default-amazonlinux-2-2018-3-py2
53-
# - INSTANCE: default-arch-base-latest-2018-3-py2
54-
# - INSTANCE: default-debian-8-2017-7-py2
55-
# - INSTANCE: default-ubuntu-1604-2017-7-py2
56-
- INSTANCE: centos6-centos-6-2017-7-py2
57-
# - INSTANCE: default-fedora-29-2017-7-py2
58-
# - INSTANCE: default-opensuse-leap-15-2017-7-py2
59-
# - INSTANCE: default-amazonlinux-2-2017-7-py2
60-
# - INSTANCE: default-arch-base-latest-2017-7-py2
10+
## Language and cache config
11+
language: ruby
12+
cache: bundler
6113

14+
## Script to run for the test stage
6215
script:
63-
- bin/kitchen verify ${INSTANCE}
16+
- bin/kitchen verify "${INSTANCE}"
6417

18+
## Stages and jobs matrix
19+
stages:
20+
- test
21+
- name: release
22+
if: branch = master AND type != pull_request
6523
jobs:
6624
include:
67-
# Define the `lint` stage (runs `yamllint` and `commitlint`)
68-
- stage: lint
69-
language: node_js
25+
## Define the test stage that runs the linters (and testing matrix, if applicable)
26+
27+
# Run all of the linters in a single job
28+
- language: node_js
7029
node_js: lts/*
30+
env: Lint
31+
name: 'Lint: salt-lint, yamllint, rubocop & commitlint'
7132
before_install: skip
7233
script:
34+
# Install and run `salt-lint`
35+
- pip install --user salt-lint
36+
- git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$'
37+
| xargs -I {} salt-lint {}
7338
# Install and run `yamllint`
7439
# Need at least `v1.17.0` for the `yaml-files` setting
7540
- pip install --user yamllint>=1.17.0
7641
- yamllint -s .
42+
# Install and run `rubocop`
43+
- gem install rubocop
44+
- rubocop -d
7745
# Install and run `commitlint`
7846
- npm install @commitlint/config-conventional -D
7947
- npm install @commitlint/travis-cli -D
8048
- commitlint-travis
81-
# Define the release stage that runs `semantic-release`
49+
50+
## Define the rest of the matrix based on Kitchen testing
51+
# Make sure the instances listed below match up with
52+
# the `platforms` defined in `kitchen.yml`
53+
# NOTE: Please try to select up to six instances that add some meaningful
54+
# testing of the formula's behaviour. If possible, try to refrain from
55+
# the classical "chosing all the instances because I want to test on
56+
# another/all distro/s" trap: it will just add time to the testing (see
57+
# the discussion on #121). As an example, the set chosen below covers
58+
# the most used distros families, systemd and non-systemd and the latest
59+
# three supported Saltstack versions with python2 and 3.
60+
# As for `kitchen.yml`, that should still contain all of the platforms,
61+
# to allow for comprehensive local testing
62+
# Ref: https://github.com/saltstack-formulas/template-formula/issues/118
63+
# Ref: https://github.com/saltstack-formulas/template-formula/issues/121
64+
- env: INSTANCE=default-debian-10-develop-py3
65+
# - env: INSTANCE=default-ubuntu-1804-develop-py3
66+
# - env: INSTANCE=default-centos-7-develop-py3
67+
# - env: INSTANCE=default-fedora-30-develop-py3
68+
# - env: INSTANCE=default-opensuse-leap-15-develop-py3
69+
# - env: INSTANCE=default-amazonlinux-2-develop-py2
70+
# - env: INSTANCE=default-arch-base-latest-develop-py2
71+
# - env: INSTANCE=default-debian-9-2019-2-py3
72+
- env: INSTANCE=default-ubuntu-1804-2019-2-py3
73+
# - env: INSTANCE=default-centos-7-2019-2-py3
74+
# - env: INSTANCE=default-fedora-30-2019-2-py3
75+
# - env: INSTANCE=default-opensuse-leap-15-2019-2-py3
76+
- env: INSTANCE=default-amazonlinux-2-2019-2-py2
77+
- env: INSTANCE=default-arch-base-latest-2019-2-py2
78+
# - env: INSTANCE=default-debian-9-2018-3-py2
79+
# - env: INSTANCE=default-ubuntu-1604-2018-3-py2
80+
# - env: INSTANCE=default-centos-7-2018-3-py2
81+
- env: INSTANCE=default-fedora-29-2018-3-py2
82+
- env: INSTANCE=default-opensuse-leap-15-2018-3-py2
83+
# - env: INSTANCE=default-amazonlinux-2-2018-3-py2
84+
# - env: INSTANCE=default-arch-base-latest-2018-3-py2
85+
# - env: INSTANCE=default-debian-8-2017-7-py2
86+
# - env: INSTANCE=default-ubuntu-1604-2017-7-py2
87+
- env: INSTANCE=centos6-centos-6-2017-7-py2
88+
# - env: INSTANCE=default-fedora-29-2017-7-py2
89+
# - env: INSTANCE=default-opensuse-leap-15-2017-7-py2
90+
# - env: INSTANCE=default-amazonlinux-2-2017-7-py2
91+
# - env: INSTANCE=default-arch-base-latest-2017-7-py2
92+
93+
## Define the release stage that runs `semantic-release`
8294
- stage: release
8395
language: node_js
8496
node_js: lts/*
97+
env: Release
98+
name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
8599
before_install: skip
86100
script:
87101
# Update `AUTHORS.md`

.yamllint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ yaml-files:
1717
# Default settings
1818
- '*.yaml'
1919
- '*.yml'
20+
- .salt-lint
2021
- .yamllint
2122
# SaltStack Formulas additional settings
2223
- '*.example'

Gemfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
source "https://rubygems.org"
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
24

35
gem 'kitchen-docker', '>= 2.9'
4-
gem 'kitchen-salt', '>= 0.6.0'
56
gem 'kitchen-inspec', '>= 1.1'
6-
7+
gem 'kitchen-salt', '>= 0.6.0'

bin/kitchen

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,25 @@
88
# this file is here to facilitate running it.
99
#
1010

11-
require "pathname"
12-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13-
Pathname.new(__FILE__).realpath)
11+
require 'pathname'
12+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
13+
Pathname.new(__FILE__).realpath)
1414

15-
bundle_binstub = File.expand_path("../bundle", __FILE__)
15+
bundle_binstub = File.expand_path('bundle', __dir__)
1616

1717
if File.file?(bundle_binstub)
1818
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
1919
load(bundle_binstub)
2020
else
21-
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22-
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
21+
abort(
22+
'Your `bin/bundle` was not generated by Bundler, '\
23+
'so this binstub cannot run. Replace `bin/bundle` by running '\
24+
'`bundle binstubs bundler --force`, then run this command again.'
25+
)
2326
end
2427
end
2528

26-
require "rubygems"
27-
require "bundler/setup"
29+
require 'rubygems'
30+
require 'bundler/setup'
2831

29-
load Gem.bin_path("test-kitchen", "kitchen")
32+
load Gem.bin_path('test-kitchen', 'kitchen')

test/integration/default/controls/config_spec.rb

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
control 'template configuration' do
24
title 'should match desired lines'
35

@@ -6,15 +8,27 @@
68
it { should be_owned_by 'root' }
79
it { should be_grouped_into 'root' }
810
its('mode') { should cmp '0644' }
9-
its('content') { should include 'This is another example file from SaltStack template-formula.' }
11+
its('content') do
12+
should include(
13+
'This is another example file from SaltStack template-formula.'
14+
)
15+
end
1016
its('content') { should include '"added_in_pillar": "pillar_value"' }
1117
its('content') { should include '"added_in_defaults": "defaults_value"' }
1218
its('content') { should include '"added_in_lookup": "lookup_value"' }
1319
its('content') { should include '"config": "/etc/template-formula.conf"' }
1420
its('content') { should include '"lookup": {"added_in_lookup": "lookup_value",' }
1521
its('content') { should include '"pkg": {"name": "' }
1622
its('content') { should include '"service": {"name": "' }
17-
its('content') { should include '"tofs": {"files_switch": ["any/path/can/be/used/here", "id", "roles", "osfinger", "os", "os_family"], "source_files": {"template-config-file-file-managed": ["example.tmpl.jinja"], "template-subcomponent-config-file-file-managed": ["subcomponent-example.tmpl.jinja"]}' }
23+
its('content') do
24+
should include(
25+
'"tofs": {"files_switch": ["any/path/can/be/used/here", "id", '\
26+
'"roles", "osfinger", "os", "os_family"], "source_files": '\
27+
'{"template-config-file-file-managed": ["example.tmpl.jinja"], '\
28+
'"template-subcomponent-config-file-file-managed": '\
29+
'["subcomponent-example.tmpl.jinja"]}'
30+
)
31+
end
1832
its('content') { should include '"arch": "amd64"' }
1933
its('content') { should include '"winner": "pillar"}' }
2034
its('content') { should include 'winner of the merge: pillar' }

test/integration/default/controls/packages_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
# frozen_string_literal: true
2+
13
# Overide by OS
24
package_name = 'bash'
3-
if os[:name] == 'centos' and os[:release].start_with?('6')
4-
package_name = 'cronie'
5-
end
5+
package_name = 'cronie' if (os[:name] == 'centos') && os[:release].start_with?('6')
66

77
control 'template package' do
88
title 'should be installed'

test/integration/default/controls/services_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
# frozen_string_literal: true
2+
13
# Overide by OS
24
service_name = 'systemd-udevd'
3-
if os[:name] == 'centos' and os[:release].start_with?('6')
4-
service_name = 'crond'
5-
end
5+
service_name = 'crond' if (os[:name] == 'centos') && os[:release].start_with?('6')
66

77
control 'template service' do
88
impact 0.5
Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
control 'template subcomponent configuration' do
24
title 'should match desired lines'
35

@@ -6,7 +8,18 @@
68
it { should be_owned_by 'root' }
79
it { should be_grouped_into 'root' }
810
its('mode') { should cmp '0644' }
9-
its('content') { should include '# File managed by Salt at <salt://template/subcomponent/config/files/default/subcomponent-example.tmpl.jinja>.' }
10-
its('content') { should include 'This is another subcomponent example file from SaltStack template-formula.' }
11+
its('content') do
12+
should include(
13+
'# File managed by Salt at '\
14+
'<salt://template/subcomponent/config/files/default/'\
15+
'subcomponent-example.tmpl.jinja>.'
16+
)
17+
end
18+
its('content') do
19+
should include(
20+
'This is another subcomponent example file from SaltStack '\
21+
'template-formula.'
22+
)
23+
end
1124
end
1225
end

0 commit comments

Comments
 (0)