2017-09-24 14:03:05 +00:00
|
|
|
require_relative './spec_helper'
|
|
|
|
|
|
|
|
describe 'git-secret::test' do
|
|
|
|
|
|
|
|
describe package('git-secret') do
|
|
|
|
it { should be_installed }
|
|
|
|
end
|
|
|
|
|
2017-09-28 23:59:15 +00:00
|
|
|
if host_inventory['platform'] == 'fedora' || host_inventory['platform'] == 'redhat'
|
2017-09-24 14:03:05 +00:00
|
|
|
describe command('find /tmp/git-secret/build -name "*.rpm"') do
|
|
|
|
its(:stdout) { should match /git-secret.*rpm/ }
|
|
|
|
end
|
2017-11-10 18:31:22 +00:00
|
|
|
elsif host_inventory['platform'] == 'alpine'
|
|
|
|
describe command('find /tmp/git-secret/build -name "*.apk"') do
|
|
|
|
its(:stdout) { should match /git-secret.*apk/ }
|
|
|
|
end
|
2017-09-24 14:03:05 +00:00
|
|
|
else
|
|
|
|
describe command('find /tmp/git-secret/build -name "*.deb"') do
|
2017-09-28 23:59:15 +00:00
|
|
|
its(:stdout) { should match(/git-secret.*deb/) }
|
2017-09-24 14:03:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe file('/.git-secret_test-passed') do
|
|
|
|
it { should exist }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe file('/.git-secret_lint-passed') do
|
|
|
|
it { should exist }
|
|
|
|
end
|
|
|
|
|
2017-09-28 23:59:15 +00:00
|
|
|
if host_inventory['platform'] == 'fedora' || host_inventory['platform'] == 'redhat'
|
2017-09-24 14:03:05 +00:00
|
|
|
describe command('rpm --query --info git-secret') do
|
|
|
|
its(:exit_status) { should eq 0 }
|
|
|
|
end
|
2017-11-10 18:31:22 +00:00
|
|
|
elsif host_inventory['platform'] == 'alpine'
|
|
|
|
describe command('apk info git-secret') do
|
|
|
|
its(:exit_status) { should eq 0 }
|
|
|
|
end
|
2017-09-24 14:03:05 +00:00
|
|
|
else
|
|
|
|
describe command('dpkg-query --status git-secret') do
|
|
|
|
its(:exit_status) { should eq 0 }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-10 18:31:22 +00:00
|
|
|
describe command('man -w "git-secret"') do
|
2017-09-24 14:03:05 +00:00
|
|
|
its(:exit_status) { should eq 0 }
|
|
|
|
end
|
|
|
|
|
2017-11-10 18:31:22 +00:00
|
|
|
describe command('man -w "git-secret-init"') do
|
2017-09-24 14:03:05 +00:00
|
|
|
its(:exit_status) { should eq 0 }
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|