pdqtest 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +2 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/LICENSE +201 -0
- data/README.md +51 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/docker_images/centos/Dockerfile +47 -0
- data/docker_images/centos/Makefile +1 -0
- data/exe/pdqtest +76 -0
- data/lib/pdqtest/core.rb +17 -0
- data/lib/pdqtest/docker.rb +45 -0
- data/lib/pdqtest/instance.rb +67 -0
- data/lib/pdqtest/lint.rb +27 -0
- data/lib/pdqtest/puppet.rb +138 -0
- data/lib/pdqtest/rspec.rb +11 -0
- data/lib/pdqtest/skeleton.rb +98 -0
- data/lib/pdqtest/syntax.rb +8 -0
- data/lib/pdqtest/version.rb +3 -0
- data/lib/pdqtest.rb +5 -0
- data/pdqtest.gemspec +37 -0
- data/res/skeleton/Gemfile +18 -0
- data/res/skeleton/Rakefile +3 -0
- data/res/skeleton/init.bats +9 -0
- data/res/skeleton/init__before.bats +9 -0
- data/res/skeleton/init__setup.sh +3 -0
- data/res/skeleton/spec_helper.rb +1 -0
- metadata +228 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8d8bf6717a22891ee4b7d7a57436357135f21c2c
|
4
|
+
data.tar.gz: a89f67be7be4450c0af8c632020a0ef42f11a84f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3f2e86d6b37464f7690d1cbd19e5a34818dd9bbd4bd36a10bc7cf2629bd0c2d52cdea93e3dc24d8d87c710e77b7f733e0cf9c440cf45c2dc19be9d5024192cb6
|
7
|
+
data.tar.gz: f17400d1bc19650bae85ca29cb2bca977a528f78a6b7d8965b38256a6eb2dbfd23d565736c975790558638d3f446f350a72c9f1e1347204105bd357a271c1e29
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright {yyyy} {name of copyright owner}
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
[![Build Status](https://travis-ci.org/GeoffWilliams/pdqtest.svg?branch=master)](https://travis-ci.org/GeoffWilliams/pdqtest)
|
2
|
+
|
3
|
+
# PDQTest
|
4
|
+
|
5
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pdqtest`. To experiment with that code, run `bin/console` for an interactive prompt.
|
6
|
+
|
7
|
+
TODO: Delete this and the text above, and describe your gem
|
8
|
+
|
9
|
+
## Statistics
|
10
|
+
Without running puppet, spinning up containers and running bats tests took on average 1-3 seconds, vs ~15 with a hacked version of testkitchen, ~4 minutes with unhacked (when offline).
|
11
|
+
|
12
|
+
Thats a sick improvement!
|
13
|
+
|
14
|
+
## Installation
|
15
|
+
|
16
|
+
Add this line to your application's Gemfile:
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
gem 'pdqtest'
|
20
|
+
```
|
21
|
+
|
22
|
+
And then execute:
|
23
|
+
|
24
|
+
$ bundle
|
25
|
+
|
26
|
+
Or install it yourself as:
|
27
|
+
|
28
|
+
$ gem install pdqtest
|
29
|
+
|
30
|
+
## Usage
|
31
|
+
|
32
|
+
TODO: Write usage instructions here
|
33
|
+
|
34
|
+
## Development
|
35
|
+
|
36
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
37
|
+
|
38
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
39
|
+
|
40
|
+
## Who should use PDQTest?
|
41
|
+
You should use pdqtest if you find it increases your productivity and enriches your life
|
42
|
+
|
43
|
+
## Troubleshooting
|
44
|
+
* If you can't find the `pdqtest` command and your using `rbenv` be sure to run `rbenv rehash` after installing the gem to create the necessary symlinks
|
45
|
+
|
46
|
+
## Support
|
47
|
+
This software is not supported by Puppet, Inc. Use at your own risk.
|
48
|
+
|
49
|
+
## Contributing
|
50
|
+
|
51
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/GeoffWilliams/pdqtest.
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "pdqtest"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
# Install all the RPM packages that puppet will install and disable
|
2
|
+
# metadata updates so that the environment can be joined to puppet
|
3
|
+
# and run without error in an offline environment
|
4
|
+
FROM centos:centos7
|
5
|
+
|
6
|
+
# from https://hub.docker.com/r/picoded/centos-systemd/ but switched
|
7
|
+
# to upstream centos to keep image size down
|
8
|
+
ENV container docker
|
9
|
+
RUN yum -y swap -- remove fakesystemd -- install systemd systemd-libs
|
10
|
+
RUN yum -y update; yum clean all; \
|
11
|
+
(cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
|
12
|
+
rm -f /lib/systemd/system/multi-user.target.wants/*;\
|
13
|
+
rm -f /etc/systemd/system/*.wants/*;\
|
14
|
+
rm -f /lib/systemd/system/local-fs.target.wants/*; \
|
15
|
+
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
|
16
|
+
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
|
17
|
+
rm -f /lib/systemd/system/basic.target.wants/*;\
|
18
|
+
rm -f /lib/systemd/system/anaconda.target.wants/*;
|
19
|
+
VOLUME [ "/sys/fs/cgroup" ]
|
20
|
+
CMD ["/usr/sbin/init"]
|
21
|
+
|
22
|
+
MAINTAINER Geoff Williams <geoff.williams@puppet.com>
|
23
|
+
RUN yum install -y cronie \
|
24
|
+
initscripts \
|
25
|
+
git \
|
26
|
+
zlib-devel \
|
27
|
+
which \
|
28
|
+
gpm-libs \
|
29
|
+
policycoreutils \
|
30
|
+
policycoreutils-restorecond && yum clean all
|
31
|
+
RUN echo "metadata_expire=never" >> /etc/yum.conf && \
|
32
|
+
echo "LANG=C" >> /etc/environment && \
|
33
|
+
echo "LC_ALL=C" >> /etc/environment && \
|
34
|
+
echo "export PATH=/usr/local/bats/bin:/opt/puppetlabs/puppet/bin/:${PATH}" >> /etc/environment && \
|
35
|
+
echo "export TERM=xterm" >> /etc/environment
|
36
|
+
|
37
|
+
# puppet
|
38
|
+
RUN yum -y install http://yum.puppetlabs.com/el/7/PC1/x86_64/puppet-agent-1.8.2-1.el7.x86_64.rpm && \
|
39
|
+
/opt/puppetlabs/puppet/bin/puppet --version && \
|
40
|
+
/opt/puppetlabs/puppet/bin/facter --version
|
41
|
+
|
42
|
+
RUN git clone https://github.com/sstephenson/bats /usr/local/bats
|
43
|
+
RUN /opt/puppetlabs/puppet/bin/gem install librarian-puppet
|
44
|
+
|
45
|
+
# code under test
|
46
|
+
RUN mkdir /cut
|
47
|
+
VOLUME /cut
|
@@ -0,0 +1 @@
|
|
1
|
+
docker build --squash -t geoffwilliams/pdqtest-centos:2017-01-08-0 .
|
data/exe/pdqtest
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'pdqtest/instance'
|
3
|
+
require 'pdqtest/rspec'
|
4
|
+
require 'pdqtest/skeleton'
|
5
|
+
require 'pdqtest/lint'
|
6
|
+
require 'pdqtest/syntax'
|
7
|
+
require 'pdqtest/core'
|
8
|
+
require 'escort'
|
9
|
+
|
10
|
+
# display help if nothing specified
|
11
|
+
ARGV.push('-h') if ARGV.empty?
|
12
|
+
|
13
|
+
Escort::App.create do |app|
|
14
|
+
app.version PDQTest::VERSION
|
15
|
+
app.summary "pdqtest"
|
16
|
+
app.description "test puppet code quickly"
|
17
|
+
|
18
|
+
app.options do |opts|
|
19
|
+
opts.opt(:keep_container,
|
20
|
+
'Leave container running?',
|
21
|
+
:long => '--keep-container',
|
22
|
+
:type => :boolean,
|
23
|
+
:default => false,
|
24
|
+
)
|
25
|
+
end
|
26
|
+
|
27
|
+
app.command :all do |command|
|
28
|
+
command.action do |options, arguments|
|
29
|
+
PDQTest::Instance.set_keep_container(options[:global][:options][:keep_container])
|
30
|
+
PDQTest::core.run([
|
31
|
+
lambda {PDQTest::Syntax.puppet},
|
32
|
+
lambda {PDQTest::Lint.puppet},
|
33
|
+
lambda {PDQTest::Rspec.run},
|
34
|
+
lambda {PDQTest::Instance.run},
|
35
|
+
])
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
app.command :rspec do |command|
|
40
|
+
command.action do |options, arguments|
|
41
|
+
PDQTest::core.run(lambda {PDQTest::Rspec.run})
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
|
46
|
+
app.command :acceptance do |command|
|
47
|
+
command.action do |options, arguments|
|
48
|
+
PDQTest::Instance.set_keep_container(options[:global][:options][:keep_container])
|
49
|
+
PDQTest::core.run(lambda {PDQTest::Instance.run})
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
app.command :init do |command|
|
54
|
+
command.action do |options, arguments|
|
55
|
+
PDQTest::Skeleton.init
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
app.command :shell do |command|
|
60
|
+
command.action do |options, arguments|
|
61
|
+
PDQTest::Instance.shell
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
app.command :syntax do |command|
|
66
|
+
command.action do |options, arguments|
|
67
|
+
PDQTest::core.run(lambda {PDQTest::Syntax.puppet})
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
app.command :lint do |command|
|
72
|
+
command.action do |options, arguments|
|
73
|
+
PDQTest::core.run(lambda {PDQTest::Lint.puppet})
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
data/lib/pdqtest/core.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
module PDQTest
|
2
|
+
module Core
|
3
|
+
|
4
|
+
def self.run(functions)
|
5
|
+
# wrap in array if needed
|
6
|
+
functions = Array(functions)
|
7
|
+
functions.each { |f|
|
8
|
+
if ! f.call
|
9
|
+
abort("ABORTED - there are test failures! :(")
|
10
|
+
end
|
11
|
+
}
|
12
|
+
|
13
|
+
true
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
module PDQTest
|
2
|
+
module Docker
|
3
|
+
STDOUT = 0
|
4
|
+
STDERR = 1
|
5
|
+
STATUS = 2
|
6
|
+
ENV='export TERM=xterm LC_ALL=C PATH=/usr/local/bats/bin:/opt/puppetlabs/puppet/bin:$PATH;'
|
7
|
+
IMAGE_NAME='geoffwilliams/pdqtest-centos:2017-01-08-0'
|
8
|
+
|
9
|
+
|
10
|
+
def self.wrap_cmd(cmd)
|
11
|
+
['bash', '-c', "#{ENV} #{cmd}"]
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.exec(container, cmd)
|
15
|
+
container.exec(wrap_cmd(cmd), tty: true)
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.new_container(test_dir)
|
19
|
+
pwd = Dir.pwd
|
20
|
+
container = ::Docker::Container.create(
|
21
|
+
'Image' => IMAGE_NAME,
|
22
|
+
'Volumes' => {test_dir => {pwd => 'ro'}},
|
23
|
+
)
|
24
|
+
container.start({'Binds' => [ pwd +':'+ test_dir]})
|
25
|
+
|
26
|
+
container
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.cleanup_container(container)
|
30
|
+
container.stop
|
31
|
+
container.delete(:force => true)
|
32
|
+
end
|
33
|
+
|
34
|
+
def self.exec_status(res, puppet=false)
|
35
|
+
if puppet
|
36
|
+
# 0 == ok, no changes
|
37
|
+
# 2 == ok, changes made
|
38
|
+
allowable_values = [0,2]
|
39
|
+
else
|
40
|
+
allowable_values = [0]
|
41
|
+
end
|
42
|
+
status = allowable_values.include?(res[STATUS])
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'docker-api'
|
2
|
+
require 'pdqtest/puppet'
|
3
|
+
require 'pdqtest/docker'
|
4
|
+
require 'escort'
|
5
|
+
|
6
|
+
module PDQTest
|
7
|
+
module Instance
|
8
|
+
TEST_DIR='/cut'
|
9
|
+
@@keep_container = false
|
10
|
+
@@active_container = nil
|
11
|
+
|
12
|
+
def self.get_active_container
|
13
|
+
@@active_container
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.get_keep_container
|
17
|
+
@@keep_container
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.set_keep_container(keep_container)
|
21
|
+
@@keep_container = keep_container
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.run
|
25
|
+
# needed to prevent timeouts from container.exec()
|
26
|
+
Excon.defaults[:write_timeout] = 1000
|
27
|
+
Excon.defaults[:read_timeout] = 1000
|
28
|
+
|
29
|
+
@@active_container = PDQTest::Docker::new_container(TEST_DIR)
|
30
|
+
Escort::Logger.output.puts "alive, running tests"
|
31
|
+
status = PDQTest::Puppet.run(@@active_container)
|
32
|
+
|
33
|
+
if @@keep_container
|
34
|
+
Escort::Logger.output.puts "finished build, container #{@@active_container.id} left on system"
|
35
|
+
Escort::Logger.output.puts " docker exec -ti #{@@active_container.id} bash "
|
36
|
+
else
|
37
|
+
PDQTest::Docker.cleanup_container(@@active_container)
|
38
|
+
@@active_container = nil
|
39
|
+
end
|
40
|
+
|
41
|
+
status
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.shell
|
45
|
+
@@active_container = PDQTest::Docker::new_container(TEST_DIR)
|
46
|
+
|
47
|
+
# In theory I should be able to get something like the code below to
|
48
|
+
# redirect all input streams and give a makeshift interactive shell, howeve
|
49
|
+
# I'm damned if I get get this to do anything at all, so instead go the
|
50
|
+
# easy way and start the container running, then use system() to redirect
|
51
|
+
# all streams using the regular docker command. Works a treat!
|
52
|
+
# @@active_container.tap(&:start).attach(:tty => true)
|
53
|
+
# @@active_container.exec('bash', tty: true).tap(&:start).attach( :tty => true, :stdin => $stdin) { |out, err|
|
54
|
+
# puts out
|
55
|
+
# puts err
|
56
|
+
# }
|
57
|
+
system("docker exec -ti #{@@active_container.id} bash")
|
58
|
+
if @@keep_container
|
59
|
+
Escort::Logger.output.puts "finished build, container #{@@active_container.id} left on system"
|
60
|
+
Escort::Logger.output.puts " docker exec -ti #{@@active_container.id} bash "
|
61
|
+
else
|
62
|
+
PDQTest::Docker.cleanup_container(@@active_container)
|
63
|
+
@@active_container = nil
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
data/lib/pdqtest/lint.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
module PDQTest
|
2
|
+
module Lint
|
3
|
+
LINT_PATHS = [
|
4
|
+
"manifests"
|
5
|
+
]
|
6
|
+
|
7
|
+
LINT_OPTIONS = [
|
8
|
+
"--fail-on-warnings",
|
9
|
+
"--no-double_quoted_strings-check",
|
10
|
+
"--no-80chars-check",
|
11
|
+
"--no-variable_scope-check",
|
12
|
+
]
|
13
|
+
def self.puppet
|
14
|
+
status = true
|
15
|
+
LINT_PATHS.each { |p|
|
16
|
+
if Dir.exists?(p)
|
17
|
+
if ! system("puppet-lint #{LINT_OPTIONS.join ' '} manifests")
|
18
|
+
status = false
|
19
|
+
end
|
20
|
+
end
|
21
|
+
}
|
22
|
+
|
23
|
+
status
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,138 @@
|
|
1
|
+
require 'pdqtest/puppet'
|
2
|
+
require 'pdqtest/docker'
|
3
|
+
require 'pdqtest/instance'
|
4
|
+
require 'escort'
|
5
|
+
|
6
|
+
module PDQTest
|
7
|
+
class Puppet
|
8
|
+
METADATA = 'metadata.json'
|
9
|
+
MODULE_DIR = '/etc/puppetlabs/code/modules'
|
10
|
+
MAGIC_MARKER = /#\s*@PDQTest/
|
11
|
+
BATS_TESTS = './spec/acceptance'
|
12
|
+
SETUP_SUFFIX = '__setup.sh'
|
13
|
+
BEFORE_SUFFIX = '__before.bats'
|
14
|
+
AFTER_SUFFIX = '.bats'
|
15
|
+
EXAMPLES_DIR = './examples'
|
16
|
+
@@bats_executed = []
|
17
|
+
@@setup_executed = []
|
18
|
+
|
19
|
+
def self.reset_bats_executed
|
20
|
+
@@bats_executed = []
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.reset_setup_executed
|
24
|
+
@@setup_executed = []
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.get_bats_executed
|
28
|
+
@@bats_executed
|
29
|
+
end
|
30
|
+
|
31
|
+
def self.get_setup_executed
|
32
|
+
@@setup_executed
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.module_metadata
|
36
|
+
file = File.read(Dir.pwd + File::SEPARATOR + METADATA)
|
37
|
+
JSON.parse(file)
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.module_name
|
41
|
+
module_metadata['name'].split('-')[1]
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.link_module
|
45
|
+
"mkdir -p #{MODULE_DIR} && ln -s #{PDQTest::Instance::TEST_DIR} #{MODULE_DIR}/#{module_name}"
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.install_deps
|
49
|
+
# Install dependencies for module
|
50
|
+
"cd #{PDQTest::Instance::TEST_DIR} && librarian-puppet install --path #{MODULE_DIR} --destructive"
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.find_examples()
|
54
|
+
examples = []
|
55
|
+
if Dir.exists?(EXAMPLES_DIR)
|
56
|
+
Find.find(EXAMPLES_DIR) do |e|
|
57
|
+
if ! File.directory?(e) and ! File.readlines(e).grep(MAGIC_MARKER).empty?
|
58
|
+
examples << e
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
Escort::Logger.output.puts "examples to run" + examples.to_s
|
63
|
+
examples
|
64
|
+
end
|
65
|
+
|
66
|
+
def self.test_basename(t)
|
67
|
+
# remove examples/ and .pp
|
68
|
+
# eg ./examples/apache/mod/mod_php.pp --> apache/mod/mod_php
|
69
|
+
t.gsub(EXAMPLES_DIR + '/','').gsub('.pp','')
|
70
|
+
end
|
71
|
+
|
72
|
+
def self.bats_test(container, example, suffix)
|
73
|
+
testcase = BATS_TESTS + '/' + test_basename(example) + suffix
|
74
|
+
if File.exists?(testcase)
|
75
|
+
Escort::Logger.output.puts "*** bats test **** bats #{PDQTest::Instance::TEST_DIR}/#{testcase}"
|
76
|
+
res = PDQTest::Docker.exec(container, "bats #{PDQTest::Instance::TEST_DIR}/#{testcase}")
|
77
|
+
status = PDQTest::Docker.exec_status(res)
|
78
|
+
Escort::Logger.output.puts res
|
79
|
+
@@bats_executed << testcase
|
80
|
+
else
|
81
|
+
Escort::Logger.error.error "no #{suffix} tests for #{example} (should be at #{testcase})"
|
82
|
+
status = true
|
83
|
+
end
|
84
|
+
|
85
|
+
status
|
86
|
+
end
|
87
|
+
|
88
|
+
def self.setup_test(container, example)
|
89
|
+
setup = BATS_TESTS + '/' + test_basename(example) + SETUP_SUFFIX
|
90
|
+
if File.exists?(setup)
|
91
|
+
Escort::Logger.output.puts "Setting up test for #{example}"
|
92
|
+
script = File.read(setup)
|
93
|
+
res = PDQTest::Docker.exec(container, script)
|
94
|
+
status = PDQTest::Docker.exec_status(res)
|
95
|
+
@@setup_executed << setup
|
96
|
+
else
|
97
|
+
Escort::Logger.output.puts "no setup file for #{example} (should be in #{setup})"
|
98
|
+
status = true
|
99
|
+
end
|
100
|
+
|
101
|
+
status
|
102
|
+
end
|
103
|
+
|
104
|
+
def self.run(container)
|
105
|
+
status = true
|
106
|
+
Escort::Logger.output.puts "fetch deps"
|
107
|
+
res = PDQTest::Docker.exec(container, install_deps)
|
108
|
+
status &= PDQTest::Docker.exec_status(res)
|
109
|
+
|
110
|
+
Escort::Logger.output.puts "linking"
|
111
|
+
res = PDQTest::Docker.exec(container, link_module)
|
112
|
+
status &= PDQTest::Docker.exec_status(res)
|
113
|
+
Escort::Logger.output.puts "run tests"
|
114
|
+
find_examples.each { |e|
|
115
|
+
Escort::Logger.output.puts "testing #{e} #{status}"
|
116
|
+
|
117
|
+
status &= setup_test(container, e)
|
118
|
+
|
119
|
+
# see if we should run a bats test before running puppet
|
120
|
+
status &= bats_test(container, e, BEFORE_SUFFIX)
|
121
|
+
|
122
|
+
# run puppet apply
|
123
|
+
res = PDQTest::Docker.exec(container, puppet_apply(e))
|
124
|
+
status &= PDQTest::Docker.exec_status(res, true)
|
125
|
+
Escort::Logger.output.puts res
|
126
|
+
|
127
|
+
# see if we should run a bats test after running puppet
|
128
|
+
status &= bats_test(container, e, AFTER_SUFFIX)
|
129
|
+
}
|
130
|
+
|
131
|
+
status
|
132
|
+
end
|
133
|
+
|
134
|
+
def self.puppet_apply(example)
|
135
|
+
"cd #{PDQTest::Instance::TEST_DIR} && puppet apply #{example}"
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
@@ -0,0 +1,98 @@
|
|
1
|
+
require 'fileutils'
|
2
|
+
require 'digest'
|
3
|
+
require 'pdqtest/puppet'
|
4
|
+
require 'pdqtest/version'
|
5
|
+
|
6
|
+
module PDQTest
|
7
|
+
module Skeleton
|
8
|
+
FIXTURES = '.fixtures.yml'
|
9
|
+
BACKUP_EXT = '.pdqtest_old'
|
10
|
+
SPEC_DIR = 'spec'
|
11
|
+
ACCEPTANCE_DIR = File.join(SPEC_DIR, 'acceptance')
|
12
|
+
CLASSES_DIR = File.join(SPEC_DIR, 'classes')
|
13
|
+
SKELETON_DIR = File.join('res', 'skeleton')
|
14
|
+
EXAMPLES_DIR = 'examples'
|
15
|
+
GEMFILE = 'Gemfile'
|
16
|
+
GEMFILE_LINE = "gem 'pdqtest', '#{PDQTest::VERSION}'"
|
17
|
+
|
18
|
+
|
19
|
+
def self.should_replace_file(target, skeleton)
|
20
|
+
target_hash = Digest::SHA256.file target
|
21
|
+
skeleton_hash = File.join(SKELETON_DIR, skeleton)
|
22
|
+
|
23
|
+
target_hash != skeleton_hash
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.resource_path(resource)
|
27
|
+
File.join(File.dirname(File.expand_path(__FILE__)), "../../res/#{resource}")
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.install_skeleton(target_file, skeleton, replace=true)
|
31
|
+
skeleton_file = resource_path(File.join('skeleton', skeleton))
|
32
|
+
if File.exists?(target_file) and replace and should_replace_file(target_file, skeleton_file)
|
33
|
+
# move existing file out of the way
|
34
|
+
FileUtils.mv(target_file, target_file + BACKUP_EXT)
|
35
|
+
install = true
|
36
|
+
else
|
37
|
+
install = true
|
38
|
+
end
|
39
|
+
if install
|
40
|
+
FileUtils.cp(skeleton_file, target_file)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.install_example
|
45
|
+
example_file = File.join(EXAMPLES_DIR, 'init.pp')
|
46
|
+
if ! File.exists?(example_file)
|
47
|
+
init_pp = <<-END
|
48
|
+
#{PDQTest::Puppet::MAGIC_MARKER}
|
49
|
+
include #{PDQTest::Puppet.module_name}
|
50
|
+
END
|
51
|
+
File.write(example_file, init_pp)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def self.install_gemfile
|
56
|
+
insert_gem = false
|
57
|
+
if File.exists?(GEMFILE)
|
58
|
+
if ! File.readlines(GEMFILE).grep(/pdqtest/).any?
|
59
|
+
insert_gem = true
|
60
|
+
end
|
61
|
+
else
|
62
|
+
install_skeleton(GEMFILE, GEMFILE)
|
63
|
+
insert_gem = true
|
64
|
+
end
|
65
|
+
if insert_gem
|
66
|
+
open(GEMFILE, 'a') { |f|
|
67
|
+
f.puts GEMFILE_LINE
|
68
|
+
}
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def self.init
|
73
|
+
|
74
|
+
# move .fixtures.yml out of the way
|
75
|
+
if File.exists?(FIXTURES)
|
76
|
+
FileUtils.mv(FIXTURES, FIXTURES + BACKUP_EXT)
|
77
|
+
end
|
78
|
+
|
79
|
+
# make directory structure for testcases
|
80
|
+
FileUtils.mkdir_p(ACCEPTANCE_DIR)
|
81
|
+
FileUtils.mkdir_p(CLASSES_DIR)
|
82
|
+
FileUtils.mkdir_p(EXAMPLES_DIR)
|
83
|
+
|
84
|
+
|
85
|
+
# skeleton files if required
|
86
|
+
install_skeleton('Rakefile', 'Rakefile')
|
87
|
+
install_skeleton(File.join('spec', 'spec_helper.rb'), 'spec_helper.rb')
|
88
|
+
install_skeleton(File.join('spec', 'acceptance', 'init.bats'), 'init.bats', false)
|
89
|
+
install_skeleton(File.join('spec', 'acceptance', 'init__before.bats'), 'init__before.bats', false)
|
90
|
+
install_skeleton(File.join('spec', 'acceptance', 'init__setup.sh'), 'init__setup.sh', false)
|
91
|
+
|
92
|
+
install_example()
|
93
|
+
install_gemfile()
|
94
|
+
|
95
|
+
# Make sure there is a Gemfile and we are in it
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
data/lib/pdqtest.rb
ADDED
data/pdqtest.gemspec
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'pdqtest/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "pdqtest"
|
8
|
+
spec.version = PDQTest::VERSION
|
9
|
+
spec.authors = ["Geoff Williams"]
|
10
|
+
spec.email = ["geoff.williams@puppetlabs.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Quick and simple integration tests run inside of a docker container}
|
13
|
+
spec.description = %q{write one...}
|
14
|
+
spec.homepage = "https://github.com/GeoffWilliams/pdqtest"
|
15
|
+
spec.licenses = 'Apache-2.0'
|
16
|
+
|
17
|
+
# file MUST be in git to be fucking readable!!!!!
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
19
|
+
f.match(%r{^(test|spec|features)/})
|
20
|
+
end
|
21
|
+
spec.bindir = "exe"
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "1.14.1"
|
26
|
+
spec.add_development_dependency "rake", "12.0.0"
|
27
|
+
spec.add_development_dependency "rspec", "3.5.0"
|
28
|
+
spec.add_development_dependency "simplecov", "0.12.0"
|
29
|
+
spec.add_development_dependency "fakefs", "0.10.2"
|
30
|
+
spec.add_development_dependency "puppet", "4.8.2"
|
31
|
+
|
32
|
+
spec.add_runtime_dependency "escort", "0.4.0"
|
33
|
+
spec.add_runtime_dependency "docker-api", "1.33.1"
|
34
|
+
spec.add_runtime_dependency "puppet-lint", "2.1.0"
|
35
|
+
spec.add_runtime_dependency "puppet-syntax", "2.2.0"
|
36
|
+
spec.add_runtime_dependency "puppetlabs_spec_helper", "1.2.2"
|
37
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
2
|
+
|
3
|
+
puppetversion = ENV.key?('PUPPET_VERSION') ? ENV['PUPPET_VERSION'] : ['>= 3.3']
|
4
|
+
gem 'metadata-json-lint'
|
5
|
+
gem 'puppet', puppetversion
|
6
|
+
gem 'puppetlabs_spec_helper', '>= 1.0.0'
|
7
|
+
gem 'puppet-lint', '>= 1.0.0'
|
8
|
+
gem 'facter', '>= 1.7.0'
|
9
|
+
gem 'rspec-puppet'
|
10
|
+
|
11
|
+
# rspec must be v2 for ruby 1.8.7
|
12
|
+
if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
|
13
|
+
gem 'rspec', '~> 2.0'
|
14
|
+
gem 'rake', '~> 10.0'
|
15
|
+
else
|
16
|
+
# rubocop requires ruby >= 1.9
|
17
|
+
gem 'rubocop'
|
18
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# BATS test file to run after executing 'examples/init.pp' with puppet.
|
2
|
+
#
|
3
|
+
# For more info on BATS see https://github.com/sstephenson/bats
|
4
|
+
|
5
|
+
# Tests are really easy! just the exit status of running a command...
|
6
|
+
@test "addition using bc" {
|
7
|
+
result="$(ls /)"
|
8
|
+
[ "$?" -eq 0 ]
|
9
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# BATS test file to run before executing 'examples/init.pp' with puppet.
|
2
|
+
#
|
3
|
+
# For more info on BATS see https://github.com/sstephenson/bats
|
4
|
+
|
5
|
+
# Tests are really easy! just the exit status of running a command...
|
6
|
+
@test "addition using bc" {
|
7
|
+
result="$(ls /)"
|
8
|
+
[ "$?" -eq 0 ]
|
9
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'puppetlabs_spec_helper/module_spec_helper'
|
metadata
ADDED
@@ -0,0 +1,228 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pdqtest
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Geoff Williams
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-01-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.14.1
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.14.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 12.0.0
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 12.0.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.5.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.5.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simplecov
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.12.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.12.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: fakefs
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.10.2
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.10.2
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: puppet
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 4.8.2
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 4.8.2
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: escort
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.4.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.4.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: docker-api
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 1.33.1
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 1.33.1
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: puppet-lint
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 2.1.0
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 2.1.0
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: puppet-syntax
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 2.2.0
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - '='
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 2.2.0
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: puppetlabs_spec_helper
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - '='
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 1.2.2
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - '='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 1.2.2
|
167
|
+
description: write one...
|
168
|
+
email:
|
169
|
+
- geoff.williams@puppetlabs.com
|
170
|
+
executables:
|
171
|
+
- pdqtest
|
172
|
+
extensions: []
|
173
|
+
extra_rdoc_files: []
|
174
|
+
files:
|
175
|
+
- ".gitignore"
|
176
|
+
- ".rspec"
|
177
|
+
- ".travis.yml"
|
178
|
+
- Gemfile
|
179
|
+
- LICENSE
|
180
|
+
- README.md
|
181
|
+
- Rakefile
|
182
|
+
- bin/console
|
183
|
+
- bin/setup
|
184
|
+
- docker_images/centos/Dockerfile
|
185
|
+
- docker_images/centos/Makefile
|
186
|
+
- exe/pdqtest
|
187
|
+
- lib/pdqtest.rb
|
188
|
+
- lib/pdqtest/core.rb
|
189
|
+
- lib/pdqtest/docker.rb
|
190
|
+
- lib/pdqtest/instance.rb
|
191
|
+
- lib/pdqtest/lint.rb
|
192
|
+
- lib/pdqtest/puppet.rb
|
193
|
+
- lib/pdqtest/rspec.rb
|
194
|
+
- lib/pdqtest/skeleton.rb
|
195
|
+
- lib/pdqtest/syntax.rb
|
196
|
+
- lib/pdqtest/version.rb
|
197
|
+
- pdqtest.gemspec
|
198
|
+
- res/skeleton/Gemfile
|
199
|
+
- res/skeleton/Rakefile
|
200
|
+
- res/skeleton/init.bats
|
201
|
+
- res/skeleton/init__before.bats
|
202
|
+
- res/skeleton/init__setup.sh
|
203
|
+
- res/skeleton/spec_helper.rb
|
204
|
+
homepage: https://github.com/GeoffWilliams/pdqtest
|
205
|
+
licenses:
|
206
|
+
- Apache-2.0
|
207
|
+
metadata: {}
|
208
|
+
post_install_message:
|
209
|
+
rdoc_options: []
|
210
|
+
require_paths:
|
211
|
+
- lib
|
212
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
213
|
+
requirements:
|
214
|
+
- - ">="
|
215
|
+
- !ruby/object:Gem::Version
|
216
|
+
version: '0'
|
217
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
218
|
+
requirements:
|
219
|
+
- - ">="
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
version: '0'
|
222
|
+
requirements: []
|
223
|
+
rubyforge_project:
|
224
|
+
rubygems_version: 2.4.5.2
|
225
|
+
signing_key:
|
226
|
+
specification_version: 4
|
227
|
+
summary: Quick and simple integration tests run inside of a docker container
|
228
|
+
test_files: []
|