Sha256: d1ffe0fb2f3cb07b6a3990c9457cba256cf46b9eecba7ad817a3e3cf93dd0b16
Contents?: true
Size: 1.91 KB
Versions: 40
Compression:
Stored size: 1.91 KB
Contents
require 'git_utils' require 'r10k_utils' require 'master_manipulator' test_name 'RK-257 - C98043 - verify default whitelist only accepts strings or array of strings' #Init env_path = on(master, puppet('config print environmentpath')).stdout.rstrip r10k_fqp = get_r10k_fqp(master) git_environments_path = '/root/environments' git_repo_path = '/git_repos' git_repo_name = 'environments' git_control_remote = File.join(git_repo_path, "#{git_repo_name}.git") last_commit = git_last_commit(master, git_environments_path) git_provider = ENV['GIT_PROVIDER'] r10k_config_path = get_r10k_config_file_path(master) r10k_config_bak_path = "#{r10k_config_path}.bak" #invalid content to test hash_whitelist = '{:cats => \'cats.txt\'}' invalid_array_content_whitelist = '[\'cats.txt\', [:broken]]' teardown do step 'Restore Original "r10k" Config' on(master, "mv #{r10k_config_bak_path} #{r10k_config_path}") clean_up_r10k(master, last_commit, git_environments_path) end # initalize file content step 'Stub the forge' stub_forge_on(master) step 'Backup Current "r10k" Config' on(master, "mv #{r10k_config_path} #{r10k_config_bak_path}") [hash_whitelist, invalid_array_content_whitelist].each do |whitelist_content| r10k_conf = <<-CONF cachedir: '/var/cache/r10k' git: provider: '#{git_provider}' sources: control: basedir: "#{env_path}" remote: "#{git_control_remote}" deploy: purge_whitelist: #{whitelist_content} CONF step 'Update the "r10k" Config' create_remote_file(master, r10k_config_path, r10k_conf) step 'Deploy r10k, and verify that invalid whitelist content causes error' on(master, "#{r10k_fqp} deploy environment -p", :accept_all_exit_codes => true) do |result| error = /did not find expected node content while parsing a flow node/ error_message = 'whitelist content did not generate expected error' expect_failure('RK-263') do assert_no_match(result.stdout, error, error_message) end end end
Version data entries
40 entries across 40 versions & 2 rubygems