beaker-librarian 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +45 -0
- data/Rakefile +1 -0
- data/beaker-librarian.gemspec +26 -0
- data/lib/beaker/librarian.rb +36 -0
- data/lib/beaker/librarian/version.rb +5 -0
- metadata +110 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9085aae5d338a5415a8ff10b5b420bce29be9063
|
4
|
+
data.tar.gz: af623387d2deb1b6e0011aaa451c89c2e3faceca
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6a86834935a7fa73d74a7d5fd82bf810e4fc1a770fcb654787cd9166bc355bf4f642cc725437e81e159422b5e88f49f7fb82f51c7071e0a56cf2e2d2590e9128
|
7
|
+
data.tar.gz: eaaf5d746876817b1887e8cc54c708bfbe9a7b73c711fbcf770356fc259268cca982aee34e4e80ecd2d8428b51c2df1ae3cbc201443250c020b20d3ff79c256b
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Keith Thornhill
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# Beaker::Librarian
|
2
|
+
|
3
|
+
Helpers to allow beaker-based tests to use librarian-puppet for module installation on VM hosts
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'beaker-librarian'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install beaker-librarian
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Example ```spec_helper_acceptance.rb``` to pre-install modules from Puppetfile.
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
require 'beaker-rspec/spec_helper'
|
25
|
+
require 'beaker-rspec/helpers/serverspec'
|
26
|
+
require 'beaker/librarian'
|
27
|
+
|
28
|
+
RSpec.configure do |c|
|
29
|
+
proj_root = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
30
|
+
|
31
|
+
c.before :suite do
|
32
|
+
install_puppet
|
33
|
+
install_librarian
|
34
|
+
librarian_install_modules(proj_root, 'mymodule')
|
35
|
+
end
|
36
|
+
end
|
37
|
+
```
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
1. Fork it ( http://github.com/afex/beaker-librarian/fork )
|
42
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
43
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
44
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
45
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'beaker/librarian/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "beaker-librarian"
|
8
|
+
spec.version = Beaker::Librarian::VERSION
|
9
|
+
spec.authors = ["Keith Thornhill"]
|
10
|
+
spec.email = ["keith.thornhill@gmail.com"]
|
11
|
+
spec.summary = %q{Helpers to allow beaker-based tests to use librarian-puppet for module installation on VM hosts}
|
12
|
+
spec.description = %q{Helpers to allow beaker-based tests to use librarian-puppet for module installation on VM hosts}
|
13
|
+
spec.homepage = "https://github.com/afex/beaker-librarian"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'beaker'
|
22
|
+
spec.add_dependency 'beaker-rspec'
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'beaker/librarian/version'
|
2
|
+
|
3
|
+
require 'beaker-rspec/spec_helper'
|
4
|
+
|
5
|
+
module Beaker
|
6
|
+
module Librarian
|
7
|
+
include Beaker::DSL
|
8
|
+
|
9
|
+
# Install rubygems and the librarian-puppet gem onto each host
|
10
|
+
def install_librarian(opts = {})
|
11
|
+
hosts.each do |host|
|
12
|
+
install_package host, 'rubygems'
|
13
|
+
install_package host, 'git'
|
14
|
+
on host, 'gem install librarian-puppet'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
# Copy the module under test to a temporary directory onto the host, and execute librarian-puppet to install
|
19
|
+
# dependencies into the 'distmoduledir'.
|
20
|
+
#
|
21
|
+
# This also manually installs the module under test into 'distmoduledir', but I'm noting here that this is
|
22
|
+
# something I believe should be handled automatically by librarian-puppet, but is not.
|
23
|
+
def librarian_install_modules(directory, module_name)
|
24
|
+
hosts.each do |host|
|
25
|
+
sut_dir = File.join('/tmp', module_name)
|
26
|
+
scp_to host, directory, sut_dir
|
27
|
+
|
28
|
+
on host, "cd #{sut_dir} && librarian-puppet install --clean --verbose --path #{host['distmoduledir']}"
|
29
|
+
|
30
|
+
puppet_module_install(:source => directory, :module_name => module_name)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
include Beaker::Librarian
|
metadata
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: beaker-librarian
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Keith Thornhill
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-02-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: beaker
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: beaker-rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.5'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.5'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Helpers to allow beaker-based tests to use librarian-puppet for module
|
70
|
+
installation on VM hosts
|
71
|
+
email:
|
72
|
+
- keith.thornhill@gmail.com
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- .gitignore
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE.txt
|
80
|
+
- README.md
|
81
|
+
- Rakefile
|
82
|
+
- beaker-librarian.gemspec
|
83
|
+
- lib/beaker/librarian.rb
|
84
|
+
- lib/beaker/librarian/version.rb
|
85
|
+
homepage: https://github.com/afex/beaker-librarian
|
86
|
+
licenses:
|
87
|
+
- MIT
|
88
|
+
metadata: {}
|
89
|
+
post_install_message:
|
90
|
+
rdoc_options: []
|
91
|
+
require_paths:
|
92
|
+
- lib
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - '>='
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - '>='
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
requirements: []
|
104
|
+
rubyforge_project:
|
105
|
+
rubygems_version: 2.0.3
|
106
|
+
signing_key:
|
107
|
+
specification_version: 4
|
108
|
+
summary: Helpers to allow beaker-based tests to use librarian-puppet for module installation
|
109
|
+
on VM hosts
|
110
|
+
test_files: []
|