-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
185 additions
and
22 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
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,119 @@ | ||
require 'spec_helper' | ||
|
||
describe 'gitlab::custom_hook' do | ||
let(:title) { 'test-hook' } | ||
|
||
let(:pre_condition) do | ||
<<-MANIFEST | ||
class { 'gitlab': | ||
repository_configuration => {}, | ||
} | ||
MANIFEST | ||
end | ||
|
||
['post-receive', 'pre-receive', 'update'].each do |type| | ||
context "with type => #{type} and source" do | ||
let(:source) { 'puppet:///modules/my_module/post-receive' } | ||
let(:params) do | ||
{ | ||
type: type, | ||
repos_path: '/custom/hooks/dir', | ||
source: source, | ||
namespace: 'foo', | ||
project: 'bar' | ||
} | ||
end | ||
|
||
it { is_expected.to compile } | ||
|
||
it do | ||
is_expected.to contain_file("/custom/hooks/dir/foo/bar.git/custom_hooks"). | ||
Check failure on line 30 in spec/defines/custom_hook_spec.rb GitHub Actions / Puppet / Static validations
|
||
with_ensure('directory') | ||
end | ||
|
||
it do | ||
is_expected.to contain_file("/custom/hooks/dir/foo/bar.git/custom_hooks/#{type}"). | ||
with_ensure('file'). | ||
with_source(source) | ||
end | ||
end | ||
|
||
context "with type => #{type} and content" do | ||
let(:content) { "#!/usr/bin/env bash\ntest 0" } | ||
let(:params) do | ||
{ | ||
type: type, | ||
repos_path: '/custom/hooks/dir', | ||
content: content, | ||
namespace: 'foo', | ||
project: 'bar' | ||
} | ||
end | ||
|
||
it { is_expected.to compile } | ||
|
||
it do | ||
is_expected.to contain_file("/custom/hooks/dir/foo/bar.git/custom_hooks"). | ||
Check failure on line 56 in spec/defines/custom_hook_spec.rb GitHub Actions / Puppet / Static validations
|
||
with_ensure('directory') | ||
end | ||
|
||
it do | ||
is_expected.to contain_file("/custom/hooks/dir/foo/bar.git/custom_hooks/#{type}"). | ||
with_ensure('file'). | ||
with_content(content) | ||
end | ||
end | ||
|
||
context "with type => #{type} and project hash" do | ||
let(:content) { "#!/usr/bin/env bash\ntest 0" } | ||
let(:params) do | ||
{ | ||
type: type, | ||
repos_path: '/custom/hooks/dir', | ||
content: content, | ||
hashed_storage: true, | ||
project: '6e4001871c0cf27c7634ef1dc478408f642410fd3a444e2a88e301f5c4a35a4d' | ||
} | ||
end | ||
|
||
it { is_expected.to compile } | ||
|
||
it do | ||
is_expected.to contain_file("/custom/hooks/dir/@hashed/6e/40/6e4001871c0cf27c7634ef1dc478408f642410fd3a444e2a88e301f5c4a35a4d.git/custom_hooks"). | ||
Check failure on line 82 in spec/defines/custom_hook_spec.rb GitHub Actions / Puppet / Static validations
|
||
with_ensure('directory') | ||
end | ||
|
||
it do | ||
is_expected.to contain_file("/custom/hooks/dir/@hashed/6e/40/6e4001871c0cf27c7634ef1dc478408f642410fd3a444e2a88e301f5c4a35a4d.git/custom_hooks/#{type}"). | ||
with_ensure('file'). | ||
with_content(content) | ||
end | ||
end | ||
|
||
context "with type => #{type} and project id" do | ||
let(:content) { "#!/usr/bin/env bash\ntest 0" } | ||
let(:params) do | ||
{ | ||
type: type, | ||
repos_path: '/custom/hooks/dir', | ||
content: content, | ||
hashed_storage: true, | ||
project: 93 | ||
} | ||
end | ||
|
||
it { is_expected.to compile } | ||
|
||
it do | ||
is_expected.to contain_file("/custom/hooks/dir/@hashed/6e/40/6e4001871c0cf27c7634ef1dc478408f642410fd3a444e2a88e301f5c4a35a4d.git/custom_hooks"). | ||
Check failure on line 108 in spec/defines/custom_hook_spec.rb GitHub Actions / Puppet / Static validations
|
||
with_ensure('directory') | ||
end | ||
|
||
it do | ||
is_expected.to contain_file("/custom/hooks/dir/@hashed/6e/40/6e4001871c0cf27c7634ef1dc478408f642410fd3a444e2a88e301f5c4a35a4d.git/custom_hooks/#{type}"). | ||
with_ensure('file'). | ||
with_content(content) | ||
end | ||
end | ||
end | ||
end |