Top Level Namespace
Defined Under Namespace
Modules: PuppetlabsSpec, PuppetlabsSpecHelper
Instance Method Summary
collapse
#auto_symlink, #clone_repo, #current_thread_count, #download_items, #download_module, #download_repository, #fixtures, #forge_modules, #git_remote_url, #include_repo?, #logger, #max_thread_limit, #module_name, #module_target_dir, #module_version, #module_working_directory, #remove_subdirectory, #repositories, #revision, #setup_symlink, #shallow_git_repo?, #source_dir, #symlinks, #update_repo, #valid_repo?, #validate_fixture_hash!, #windows?
Instance Method Details
#create_gch_task(changelog_user = nil, changelog_project = nil, changelog_since_tag = nil, changelog_tag_pattern = 'v%s') ⇒ Object
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
|
# File 'lib/puppetlabs_spec_helper/rake_tasks.rb', line 306
def create_gch_task(changelog_user = nil, changelog_project = nil, changelog_since_tag = nil, changelog_tag_pattern = 'v%s')
if Bundler.rubygems.find_name('github_changelog_generator').any?
def changelog_user_from_metadata
result = JSON.parse(File.read('metadata.json'))['author']
raise 'unable to find the changelog_user in .sync.yml, or the author in metadata.json' if result.nil?
puts "GitHubChangelogGenerator user:#{result}"
result
end
def changelog_project_from_metadata
result = JSON.parse(File.read('metadata.json'))['name']
raise 'unable to find the changelog_project in .sync.yml or the name in metadata.json' if result.nil?
puts "GitHubChangelogGenerator project:#{result}"
result
end
def changelog_future_release
return unless Rake.application.top_level_tasks.include? 'changelog'
result = JSON.parse(File.read('metadata.json'))['version']
raise 'unable to find the future_release (version) in metadata.json' if result.nil?
puts "GitHubChangelogGenerator future_release:#{result}"
result
end
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if ENV['CHANGELOG_GITHUB_TOKEN'].nil?
config.user = changelog_user || changelog_user_from_metadata
config.project = changelog_project || changelog_project_from_metadata
config.since_tag = changelog_since_tag if changelog_since_tag
config.future_release = changelog_tag_pattern % changelog_future_release.to_s
config.exclude_labels = ['maintenance']
config. = "# Change log\n\nAll notable changes to this project will be documented in this file. " \
'The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres ' \
'to [Semantic Versioning](https://semver.org).'
config.add_pr_wo_labels = true
config.issues = false
config.merge_prefix = '### UNCATEGORIZED PRS; GO LABEL THEM'
config.configure_sections = {
'Changed' => {
'prefix' => '### Changed',
'labels' => ['backwards-incompatible'],
},
'Added' => {
'prefix' => '### Added',
'labels' => %w[feature enhancement],
},
'Fixed' => {
'prefix' => '### Fixed',
'labels' => ['bugfix'],
},
}
end
else
desc 'Generate a Changelog from GitHub'
task :changelog do
raise <<~MESSAGE
The changelog tasks depends on unreleased features of the github_changelog_generator gem.
Please manually add it to your .sync.yml for now, and run `pdk update`:
---
Gemfile:
optional:
':development':
- gem: 'github_changelog_generator'
git: 'https://github.com/skywinder/github-changelog-generator'
ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018'
condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')"
MESSAGE
end
end
end
|
#param_value(subject, type, title, param) ⇒ Object
7
8
9
|
# File 'lib/puppetlabs_spec_helper/module_spec_helper.rb', line 7
def param_value(subject, type, title, param)
subject.resource(type, title).send(:parameters)[param.to_sym]
end
|
#verify_contents(subject, title, expected_lines) ⇒ Object
11
12
13
14
|
# File 'lib/puppetlabs_spec_helper/module_spec_helper.rb', line 11
def verify_contents(subject, title, expected_lines)
content = subject.resource('file', title).send(:parameters)[:content]
expect(content.split("\n") & expected_lines).to match_array expected_lines.uniq
end
|