puppet-etherpad_lite/spec/acceptance/etherpad_lite_spec.rb
Colleen Murphy 3d01bab8bf Turn off binary symlink in nodejs module
On Xenial, the nodejs puppet module tries to create a symlink from
/usr/bin/node to /usr/bin/nodejs. Depending on the resource ordering,
this might happen before or after the nodejs package creates its own
/usr/bin/node. If puppet has the chance to make the symlink itself, it
breaks node by creating a broken link cycle. This patch uses the
legacy_debian_symlinks parameter to prevent the puppet module from doing
that. This problem was fixed and the option was deprecated and removed
in later versions of the nodejs puppet module, so we will have to remove
the parameter if we update the nodejs module.

In this case, on puppet 3 a quirk of the resource ordering was causing
the module not to be idempotent since the second puppet run would change
the file to a symlink, so this patch has the side benefit of also
allowing us to add a test for idempotency. With that second puppet run,
the etherpad service now has enough time to fully start up and we can
uncomment the curl test.

Change-Id: Ic834ad6f0828cc2d20810e48bb053f9b14659c4a
2018-08-08 21:52:29 +02:00

66 lines
1.7 KiB
Ruby

require 'puppet-openstack_infra_spec_helper/spec_helper_acceptance'
describe 'puppet-etherpad_lite:: manifest', :if => ['debian', 'ubuntu'].include?(os[:family]) do
def pp_path
base_path = File.dirname(__FILE__)
File.join(base_path, 'fixtures')
end
def preconditions_puppet_module
module_path = File.join(pp_path, 'preconditions.pp')
File.read(module_path)
end
before(:all) do
apply_manifest(preconditions_puppet_module, catch_failures: true)
end
def init_puppet_module
module_path = File.join(pp_path, 'etherpad_lite.pp')
File.read(module_path)
end
it 'should work with no errors' do
apply_manifest(init_puppet_module, catch_failures: true)
end
it 'should be idempotent' do
apply_manifest(init_puppet_module, catch_changes: true)
end
describe 'required files' do
describe file('/opt/etherpad-lite/') do
it { should be_directory }
it { should be_grouped_into 'eplite' }
end
# check service file installed
describe file('/etc/systemd/system/etherpad-lite.service') do
it { should be_file }
end
# check git got all the source
describe file('/opt/etherpad-lite/etherpad-lite/bin/installDeps.sh') do
it { should be_file }
end
# check npm modules installed
describe file('/home/eplite/.npm') do
it { should be_directory }
end
end
describe 'required services' do
describe 'ports are open and services are reachable' do
describe port(80) do
it { should be_listening }
end
describe command('curl -L -k http://localhost --verbose') do
its(:stdout) { should contain('randomPadName()') }
end
end
end
end