Skip to content

Commit 3263791

Browse files
committed
(maint) - Running pdk update to include gem added to .sync.yml
1 parent 8a674e8 commit 3263791

File tree

10 files changed

+93
-12
lines changed

10 files changed

+93
-12
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.git/
12
.*.sw[op]
23
.metadata
34
.yardoc

.pdkignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.git/
12
.*.sw[op]
23
.metadata
34
.yardoc

.rubocop.yml

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ RSpec/MessageSpies:
7474
Style/Documentation:
7575
Exclude:
7676
- lib/puppet/parser/functions/**/*
77+
- spec/**/*
7778
Style/WordArray:
7879
EnforcedStyle: brackets
7980
Style/CollectionMethods:
@@ -84,6 +85,8 @@ Style/StringMethods:
8485
Enabled: true
8586
Layout/EndOfLine:
8687
Enabled: false
88+
Layout/IndentHeredoc:
89+
Enabled: false
8790
Metrics/AbcSize:
8891
Enabled: false
8992
Metrics/BlockLength:

.travis.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ script:
1313
- 'bundle exec rake $CHECK'
1414
bundler_args: --without system_tests
1515
rvm:
16-
- 2.4.1
16+
- 2.4.4
1717
env:
1818
global:
1919
- BEAKER_PUPPET_COLLECTION=puppet5 PUPPET_GEM_VERSION="~> 5.0"
@@ -23,16 +23,16 @@ matrix:
2323
-
2424
bundler_args:
2525
dist: trusty
26-
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_set=docker/centos-7
27-
rvm: 2.4.1
26+
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_set=docker/centos-7 BEAKER_TESTMODE=apply
27+
rvm: 2.4.4
2828
script: bundle exec rake beaker
2929
services: docker
3030
sudo: required
3131
-
3232
bundler_args:
3333
dist: trusty
34-
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_set=docker/ubuntu-14.04
35-
rvm: 2.4.1
34+
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_set=docker/ubuntu-14.04 BEAKER_TESTMODE=apply
35+
rvm: 2.4.4
3636
script: bundle exec rake beaker
3737
services: docker
3838
sudo: required
@@ -45,9 +45,9 @@ matrix:
4545
rvm: 2.1.9
4646
branches:
4747
only:
48-
- master
49-
- /^v\d/
50-
- release
48+
- master
49+
- /^v\d/
50+
- release
5151
notifications:
5252
email: false
5353
deploy:

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ group :development do
3333
gem "puppet-module-posix-dev-r#{minor_version}", require: false, platforms: [:ruby]
3434
gem "puppet-module-win-default-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
3535
gem "puppet-module-win-dev-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
36-
gem "puppet-blacksmith", '~> 3.4', require: false, platforms: [:ruby]
3736
gem "puppet-lint-i18n", require: false
3837
end
3938
group :system_tests do
@@ -44,6 +43,7 @@ group :system_tests do
4443
gem "beaker-pe", require: false
4544
gem "beaker-hostgenerator"
4645
gem "beaker-rspec"
46+
gem "beaker-testmode_switcher", require: false
4747
end
4848

4949
puppet_version = ENV['PUPPET_GEM_VERSION']

Rakefile

+69
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,76 @@
11
require 'puppetlabs_spec_helper/rake_tasks'
22
require 'puppet-syntax/tasks/puppet-syntax'
33
require 'puppet_blacksmith/rake_tasks' if Bundler.rubygems.find_name('puppet-blacksmith').any?
4+
require 'github_changelog_generator/task' if Bundler.rubygems.find_name('github_changelog_generator').any?
45
require 'puppet_pot_generator/rake_tasks'
56

7+
def changelog_user
8+
return unless Rake.application.top_level_tasks.include? "changelog"
9+
returnVal = nil || JSON.load(File.read('metadata.json'))['author']
10+
raise "unable to find the changelog_user in .sync.yml, or the author in metadata.json" if returnVal.nil?
11+
puts "GitHubChangelogGenerator user:#{returnVal}"
12+
returnVal
13+
end
14+
15+
def changelog_project
16+
return unless Rake.application.top_level_tasks.include? "changelog"
17+
returnVal = nil || JSON.load(File.read('metadata.json'))['name']
18+
raise "unable to find the changelog_project in .sync.yml or the name in metadata.json" if returnVal.nil?
19+
puts "GitHubChangelogGenerator project:#{returnVal}"
20+
returnVal
21+
end
22+
23+
def changelog_future_release
24+
return unless Rake.application.top_level_tasks.include? "changelog"
25+
returnVal = JSON.load(File.read('metadata.json'))['version']
26+
raise "unable to find the future_release (version) in metadata.json" if returnVal.nil?
27+
puts "GitHubChangelogGenerator future_release:#{returnVal}"
28+
returnVal
29+
end
30+
631
PuppetLint.configuration.send('disable_relative')
732

33+
if Bundler.rubygems.find_name('github_changelog_generator').any?
34+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
35+
raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil?
36+
config.user = "#{changelog_user}"
37+
config.project = "#{changelog_project}"
38+
config.future_release = "#{changelog_future_release}"
39+
config.exclude_labels = ['maintenance']
40+
config.header = "# Change log\n\nAll notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org)."
41+
config.add_pr_wo_labels = true
42+
config.issues = false
43+
config.merge_prefix = "### UNCATEGORIZED PRS; GO LABEL THEM"
44+
config.configure_sections = {
45+
"Changed" => {
46+
"prefix" => "### Changed",
47+
"labels" => ["backwards-incompatible"],
48+
},
49+
"Added" => {
50+
"prefix" => "### Added",
51+
"labels" => ["feature", "enhancement"],
52+
},
53+
"Fixed" => {
54+
"prefix" => "### Fixed",
55+
"labels" => ["bugfix"],
56+
},
57+
}
58+
end
59+
else
60+
desc 'Generate a Changelog from GitHub'
61+
task :changelog do
62+
raise <<EOM
63+
The changelog tasks depends on unreleased features of the github_changelog_generator gem.
64+
Please manually add it to your .sync.yml for now, and run `pdk update`:
65+
---
66+
Gemfile:
67+
optional:
68+
':development':
69+
- gem: 'github_changelog_generator'
70+
git: 'https://github.com/skywinder/github-changelog-generator'
71+
ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018'
72+
condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')"
73+
EOM
74+
end
75+
end
76+

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@
8383
],
8484
"description": "MySQL module",
8585
"template-url": "https://github.com/puppetlabs/pdk-templates",
86-
"template-ref": "heads/master-0-g34e3266",
86+
"template-ref": "heads/master-0-g6b0d497",
8787
"pdk-version": "1.5.0"
8888
}

spec/spec_helper.rb

+9
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,13 @@
3434
Puppet.settings[:strict] = :warning
3535
end
3636
end
37+
38+
def ensure_module_defined(module_name)
39+
module_name.split('::').reduce(Object) do |last_module, next_module|
40+
last_module.const_set(next_module, Module.new) unless last_module.const_defined?(next_module)
41+
last_module.const_get(next_module)
42+
end
43+
end
44+
45+
# 'spec_overrides' from sync.yml will appear below this line
3746
require 'spec_helper_local'

spec/unit/puppet/provider/mysql_database/mysql_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
)
1414
end
1515
let(:raw_databases) do
16-
# rubocop:disable Layout/IndentHeredoc
1716
<<-SQL_OUTPUT
1817
information_schema
1918
mydb

spec/unit/puppet/provider/mysql_user/mysql_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
let(:newhash) { '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF5' }
5353

5454
let(:raw_users) do
55-
# rubocop:disable Layout/IndentHeredoc
5655
<<-SQL_OUTPUT
5756
5857
root@::1

0 commit comments

Comments
 (0)