-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #751 from h0tw1r3/fix-lxd-run
fix, simplify and add tests for lxd backend
- Loading branch information
Showing
3 changed files
with
132 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'spec_helper' | ||
|
||
describe Specinfra::Backend::Lxd do | ||
let(:lxd_instance) { 'instance' } | ||
let(:lxd_remote) { 'remote' } | ||
let(:lxc_exec) { "lxc exec #{lxd_remote}:#{lxd_instance}" } | ||
|
||
before(:each) do | ||
set :backend, :lxd | ||
RSpec.configure do |c| | ||
c.lxd_instance = lxd_instance | ||
c.lxd_remote = lxd_remote | ||
end | ||
end | ||
|
||
after(:each) do | ||
Specinfra::Backend::Lxd.clear | ||
end | ||
|
||
describe '#build_command' do | ||
context 'without required lxd_instance set' do | ||
let(:lxd_instance) { nil } | ||
it { | ||
expect { subject.build_command('true') }.to raise_error(RuntimeError, /lxd_instance/) | ||
} | ||
end | ||
|
||
context 'without required lxd_remote set' do | ||
let(:lxd_remote) { nil } | ||
it { | ||
expect { subject.build_command('true') }.to raise_error(RuntimeError, /lxd_remote/) | ||
} | ||
end | ||
|
||
context 'with simple command' do | ||
it 'should escape spaces' do | ||
expect(subject.build_command('test -f /etc/passwd')).to eq "#{lxc_exec} -- /bin/sh -c test\\ -f\\ /etc/passwd" | ||
end | ||
end | ||
|
||
context 'with complex command' do | ||
it 'should escape special chars' do | ||
expect(subject.build_command('test ! -f /etc/selinux/config || (getenforce | grep -i -- disabled && grep -i -- ^SELINUX=disabled$ /etc/selinux/config)')) | ||
.to eq "lxc exec #{lxd_remote}:#{lxd_instance} -- /bin/sh -c test\\ \\!\\ -f\\ /etc/selinux/config\\ \\|\\|\\ \\(getenforce\\ \\|\\ grep\\ -i\\ --\\ disabled\\ \\&\\&\\ grep\\ -i\\ --\\ \\^SELINUX\\=disabled\\$\\ /etc/selinux/config\\)" | ||
end | ||
|
||
it 'should escape quotes' do | ||
if Gem::Version.new(RUBY_VERSION.dup) < Gem::Version.new('2.7') | ||
expect(subject.build_command(%Q(find /etc/apt/ -name \*.list | xargs grep -o -E "^deb +[\\"']?http://ppa.launchpad.net/gluster/glusterfs-3.7"))).to eq("#{lxc_exec} -- /bin/sh -c find\\ /etc/apt/\\ -name\\ \\*.list\\ \\|\\ xargs\\ grep\\ -o\\ -E\\ \\\"\\^deb\\ \\+\\[\\\\\\\"\\'\\]\\?http://ppa.launchpad.net/gluster/glusterfs-3.7\\\"") | ||
else | ||
# Since Ruby 2.7, `+` is not escaped. | ||
expect(subject.build_command(%Q(find /etc/apt/ -name \*.list | xargs grep -o -E "^deb +[\\"']?http://ppa.launchpad.net/gluster/glusterfs-3.7"))).to eq("#{lxc_exec} -- /bin/sh -c find\\ /etc/apt/\\ -name\\ \\*.list\\ \\|\\ xargs\\ grep\\ -o\\ -E\\ \\\"\\^deb\\ +\\[\\\\\\\"\\'\\]\\?http://ppa.launchpad.net/gluster/glusterfs-3.7\\\"") | ||
end | ||
end | ||
end | ||
|
||
context 'with custom shell' do | ||
before { RSpec.configure { |c| c.shell = '/usr/local/bin/tcsh' } } | ||
after { RSpec.configure { |c| c.shell = nil } } | ||
|
||
it 'should use custom shell' do | ||
expect(subject.build_command('test -f /etc/passwd')).to eq "#{lxc_exec} -- /usr/local/bin/tcsh -c test\\ -f\\ /etc/passwd" | ||
end | ||
end | ||
|
||
context 'with custom shell that needs escaping' do | ||
before { RSpec.configure { |c| c.shell = '/usr/test & spec/bin/sh' } } | ||
after { RSpec.configure { |c| c.shell = nil } } | ||
|
||
it 'should use custom shell' do | ||
expect(subject.build_command('test -f /etc/passwd')).to eq "#{lxc_exec} -- /usr/test\\ \\&\\ spec/bin/sh -c test\\ -f\\ /etc/passwd" | ||
end | ||
end | ||
|
||
context 'with an interactive shell' do | ||
before { RSpec.configure { |c| c.interactive_shell = true } } | ||
after { RSpec.configure { |c| c.interactive_shell = nil } } | ||
|
||
it 'should emulate an interactive shell' do | ||
expect(subject.build_command('test -f /etc/passwd')).to eq "#{lxc_exec} -t -- /bin/sh -i -c test\\ -f\\ /etc/passwd" | ||
end | ||
end | ||
|
||
context 'with an login shell' do | ||
before { RSpec.configure { |c| c.login_shell = true } } | ||
after { RSpec.configure { |c| c.login_shell = nil } } | ||
|
||
it 'should emulate an login shell' do | ||
expect(subject.build_command('test -f /etc/passwd')).to eq "#{lxc_exec} -- /bin/sh -l -c test\\ -f\\ /etc/passwd" | ||
end | ||
end | ||
|
||
context 'with custom path' do | ||
before { RSpec.configure { |c| c.path = '/opt/bin:/opt/foo/bin:$PATH' } } | ||
after { RSpec.configure { |c| c.path = nil } } | ||
|
||
it 'should use custom path' do | ||
expect(subject.build_command('test -f /etc/passwd')).to eq "#{lxc_exec} -- env PATH=\"/opt/bin:/opt/foo/bin:$PATH\" /bin/sh -c test\\ -f\\ /etc/passwd" | ||
end | ||
end | ||
|
||
context 'with custom path that needs escaping' do | ||
before { RSpec.configure { |c| c.path = '/opt/bin:/opt/test & spec/bin:$PATH' } } | ||
after { RSpec.configure { |c| c.path = nil } } | ||
|
||
it 'should use custom path' do | ||
expect(subject.build_command('test -f /etc/passwd')).to eq "#{lxc_exec} -- env PATH=\"/opt/bin:/opt/test & spec/bin:$PATH\" /bin/sh -c test\\ -f\\ /etc/passwd" | ||
end | ||
end | ||
end | ||
end |