1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
# coding: utf-8
require 'spec_helper'
require 'puppet/forge'
require 'puppet_spec/https'
describe 'puppet module', unless: Puppet::Util::Platform.jruby? do
include PuppetSpec::Files
include_context "https client"
let(:app) { Puppet::Application[:module] }
let(:wrong_hostname) { 'localhost' }
let(:server) { PuppetSpec::HTTPSServer.new }
let(:ssl_provider) { Puppet::SSL::SSLProvider.new }
let(:release_response) { File.read(fixtures('unit/forge/bacula-releases.json')) }
let(:release_tarball) { File.binread(fixtures('unit/forge/bacula.tar.gz')) }
let(:target_dir) { tmpdir('bacula') }
before :each do
SemanticPuppet::Dependency.clear_sources
end
it 'installs a module' do
# create a temp cacert bundle
ssl_file = tmpfile('systemstore')
File.write(ssl_file, server.ca_cert)
response_proc = -> (req, res) {
if req.path == '/v3/releases'
res['Content-Type'] = 'application/json'
res.body = release_response
else
res['Content-Type'] = 'application/octet-stream'
res.body = release_tarball
end
res.status = 200
}
# override path to system cacert bundle, this must be done before
# the SSLContext is created and the call to X509::Store.set_default_paths
Puppet::Util.withenv("SSL_CERT_FILE" => ssl_file) do
server.start_server(response_proc: response_proc) do |port|
Puppet[:module_repository] = "https://127.0.0.1:#{port}"
# On Windows, CP437 encoded output can't be matched against UTF-8 regexp,
# so encode the regexp to the external encoding and match against that.
app.command_line.args = ['install', 'puppetlabs-bacula', '--target-dir', target_dir]
expect {
app.run
}.to exit_with(0)
.and output(Regexp.new("└── puppetlabs-bacula".encode(Encoding.default_external))).to_stdout
end
end
end
it 'returns a valid exception when there is an SSL verification problem' do
server.start_server do |port|
Puppet[:module_repository] = "https://#{wrong_hostname}:#{port}"
expect {
app.command_line.args = ['install', 'puppetlabs-bacula', '--target-dir', target_dir]
app.run
}.to exit_with(1)
.and output(%r{Notice: Downloading from https://#{wrong_hostname}:#{port}}).to_stdout
.and output(%r{Unable to verify the SSL certificate}).to_stderr
end
end
it 'prints the complete URL it tried to connect to' do
response_proc = -> (req, res) { res.status = 404 }
# create a temp cacert bundle
ssl_file = tmpfile('systemstore')
File.write(ssl_file, server.ca_cert)
Puppet::Util.withenv("SSL_CERT_FILE" => ssl_file) do
server.start_server(response_proc: response_proc) do |port|
Puppet[:module_repository] = "https://127.0.0.1:#{port}/bogus_test/puppet"
expect {
app.command_line.args = ['install', 'puppetlabs-bacula']
app.run
}.to exit_with(1)
.and output(%r{Notice: Downloading from https://127.0.0.1:#{port}}).to_stdout
.and output(%r{https://127.0.0.1:#{port}/bogus_test/puppet/v3/releases}).to_stderr
end
end
end
context 'install' do
it 'lists a module in a non-default directory environment' do
Puppet.initialize_settings(['-E', 'direnv'])
Puppet[:color] = false
Puppet[:environmentpath] = File.join(my_fixture_dir, 'environments')
expect {
app.command_line.args = ['list']
app.run
}.to exit_with(0)
.and output(Regexp.new("└── pmtacceptance-nginx".encode(Encoding.default_external), Regexp::MULTILINE)).to_stdout
end
end
context 'changes' do
let(:tmp) { tmpdir('module_changes') }
before :each do
Puppet.initialize_settings(['-E', 'direnv'])
Puppet[:color] = false
end
def use_local_fixture
Puppet[:environmentpath] = File.join(my_fixture_dir, 'environments')
end
def create_working_copy
Puppet[:environmentpath] = File.join(tmp, 'environments')
FileUtils.cp_r(File.join(my_fixture_dir, 'environments'), tmp)
end
it 'reports an error when the install path is invalid' do
use_local_fixture
pattern = Regexp.new([
%Q{.*Error: Could not find a valid module at "#{tmp}/nginx".*},
%Q{.*Error: Try 'puppet help module changes' for usage.*},
].join("\n"), Regexp::MULTILINE)
expect {
app.command_line.args = ['changes', File.join(tmp, 'nginx')]
app.run
}.to exit_with(1)
.and output(pattern).to_stderr
end
it 'reports when checksums are missing from metadata.json' do
create_working_copy
# overwrite checksums in metadata.json
nginx_dir = File.join(tmp, 'environments', 'direnv', 'modules', 'nginx')
File.write(File.join(nginx_dir, 'metadata.json'), <<~END)
{
"name": "pmtacceptance/nginx",
"version": "0.0.1"
}
END
pattern = Regexp.new([
%Q{.*Error: No file containing checksums found.*},
%Q{.*Error: Try 'puppet help module changes' for usage.*},
].join("\n"), Regexp::MULTILINE)
expect {
app.command_line.args = ['changes', nginx_dir]
app.run
}.to exit_with(1)
.and output(pattern).to_stderr
end
it 'reports module not found when metadata.json is missing' do
create_working_copy
# overwrite checksums in metadata.json
nginx_dir = File.join(tmp, 'environments', 'direnv', 'modules', 'nginx')
File.unlink(File.join(nginx_dir, 'metadata.json'))
pattern = Regexp.new([
%Q{.*Error: Could not find a valid module at.*},
%Q{.*Error: Try 'puppet help module changes' for usage.*},
].join("\n"), Regexp::MULTILINE)
expect {
app.command_line.args = ['changes', nginx_dir]
app.run
}.to exit_with(1)
.and output(pattern).to_stderr
end
it 'reports when a file is modified' do
create_working_copy
# overwrite README so checksum doesn't match
nginx_dir = File.join(tmp, 'environments', 'direnv', 'modules', 'nginx')
File.write(File.join(nginx_dir, 'README'), '')
pattern = Regexp.new([
%Q{.*Warning: 1 files modified.*},
].join("\n"), Regexp::MULTILINE)
expect {
app.command_line.args = ['changes', nginx_dir]
app.run
}.to exit_with(0)
.and output(%r{README}).to_stdout
.and output(pattern).to_stderr
end
it 'reports when a file is missing' do
create_working_copy
# delete README so checksum doesn't match
nginx_dir = File.join(tmp, 'environments', 'direnv', 'modules', 'nginx')
File.unlink(File.join(nginx_dir, 'README'))
# odd that it says modified
pattern = Regexp.new([
%Q{.*Warning: 1 files modified.*},
].join("\n"), Regexp::MULTILINE)
expect {
app.command_line.args = ['changes', nginx_dir]
app.run
}.to exit_with(0)
.and output(%r{README}).to_stdout
.and output(pattern).to_stderr
end
it 'reports when there are no changes' do
use_local_fixture
nginx_dir = File.join(Puppet[:environmentpath], 'direnv', 'modules', 'nginx')
expect {
app.command_line.args = ['changes', nginx_dir]
app.run
}.to exit_with(0)
.and output(/No modified files/).to_stdout
end
end
end
|