beaker-rspec 5.2.2 → 5.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/HISTORY.md +56 -2
- data/lib/beaker-rspec/beaker_shim.rb +2 -1
- data/lib/beaker-rspec/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjdkNWQ1OWQ5N2NiMjY5ZDExNzE0YTUxODMyZWFkYjBmYWEwMmRlMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzQ3Zjc0ZmUxNDVlYzk3Y2Q0YmYzNTAyMDI1ZmNlMmRmYjU1Y2UyNQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ODUxMmU0NzYwZjQ1MWU5OGUyMjU1NWJiMDdlY2ZiNDk4YWRlYTI2NmIzZWIx
|
10
|
+
OTMwZGI3ZThmOTY3MzljMjI5NDIzYTI0NWU4ZmUxYjkxNWU0MmU4MzcxZTJl
|
11
|
+
ZmMwMjc5ZTcyYjNmNjI1ODhlMWE0MzIxMDEwNjJhYzMzNGIwZGQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzMyM2MwYjAyZGY2ZmU3MDYyMzRjYzViZDdmOTkyMjhjNTNiMzBlOWMwNmY2
|
14
|
+
NGQyMjVjM2U4ZjUwZjA0ZGMzNWJmMzJiY2NlMDc1OWQ5MDEwY2I3ZTI5Mjcw
|
15
|
+
OGZiMTIxNDQ5NjM3ZmJkYmNhMzFlMmI1MTViNjQyZTUxYWZkZDU=
|
data/HISTORY.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# default - History
|
2
2
|
## Tags
|
3
|
-
* [LATEST -
|
3
|
+
* [LATEST - 13 Oct, 2015 (2ea88c14)](#LATEST)
|
4
|
+
* [5.2.2 - 3 Sep, 2015 (69980e14)](#5.2.2)
|
4
5
|
* [5.2.1 - 27 Aug, 2015 (49c45f61)](#5.2.1)
|
5
6
|
* [5.2.0 - 15 Jul, 2015 (261dacdb)](#5.2.0)
|
6
7
|
* [5.1.0 - 5 Jun, 2015 (3a72d131)](#5.1.0)
|
@@ -22,7 +23,60 @@
|
|
22
23
|
* [beaker-rspec1.0.0 - 3 Dec, 2013 (65e89ec9)](#beaker-rspec1.0.0)
|
23
24
|
|
24
25
|
## Details
|
25
|
-
### <a name = "LATEST">LATEST -
|
26
|
+
### <a name = "LATEST">LATEST - 13 Oct, 2015 (2ea88c14)
|
27
|
+
|
28
|
+
* (GEM) update beaker-rspec version to 5.3.0 (2ea88c14)
|
29
|
+
|
30
|
+
* Merge pull request #73 from rooprob/feature/enable-beaker-proxy-support (aec28793)
|
31
|
+
|
32
|
+
|
33
|
+
```
|
34
|
+
Merge pull request #73 from rooprob/feature/enable-beaker-proxy-support
|
35
|
+
|
36
|
+
Enable the proxy feature available in beaker cli.
|
37
|
+
```
|
38
|
+
* Enable the proxy feature available in beaker cli. (1eeda73f)
|
39
|
+
|
40
|
+
|
41
|
+
```
|
42
|
+
Enable the proxy feature available in beaker cli.
|
43
|
+
|
44
|
+
Improves acceptance testing performance and lowers network traffic to package
|
45
|
+
respositories with beaker-rspec.
|
46
|
+
|
47
|
+
Running a suitably configured proxy cache to act as a package cache, add the
|
48
|
+
following nodeset configuration.
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
---
|
53
|
+
CONFIG:
|
54
|
+
package_proxy: http://<proxy_addr>:<proxy_port>
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
Beaker supports Debian (APT) and RHEL/Centos (RPM) based package proxies out of the box. See beaker --help (package-proxy) for further details.
|
59
|
+
|
60
|
+
Example, Squid is a suitable local package cache,
|
61
|
+
|
62
|
+
squid.conf
|
63
|
+
|
64
|
+
|
65
|
+
mum_object_size 100 MB
|
66
|
+
cache_replacement_policy heap LFUDA
|
67
|
+
refresh_pattern ^ftp: 1440 20% 10080
|
68
|
+
refresh_pattern ^gopher: 1440 0% 1440
|
69
|
+
refresh_pattern Packages\.bz2$ 0 20% 4320 refresh-ims
|
70
|
+
refresh_pattern Sources\.bz2$ 0 20% 4320 refresh-ims
|
71
|
+
refresh_pattern Release\.gpg$ 0 20% 4320 refresh-ims
|
72
|
+
refresh_pattern Release$ 0 20% 4320 refresh-ims
|
73
|
+
refresh_pattern . 0 20% 4320
|
74
|
+
|
75
|
+
|
76
|
+
```
|
77
|
+
### <a name = "5.2.2">5.2.2 - 3 Sep, 2015 (69980e14)
|
78
|
+
|
79
|
+
* (HISTORY) update beaker-rspec history for gem release 5.2.2 (69980e14)
|
26
80
|
|
27
81
|
* (GEM) update beaker-rspec version to 5.2.2 (462d5843)
|
28
82
|
|
@@ -33,6 +33,7 @@ module BeakerRSpec
|
|
33
33
|
def provision
|
34
34
|
@network_manager = Beaker::NetworkManager.new(options, @logger)
|
35
35
|
RSpec.configuration.hosts = @network_manager.provision
|
36
|
+
@network_manager.proxy_package_manager
|
36
37
|
end
|
37
38
|
|
38
39
|
# Validate that the SUTs are up and correctly configured. Checks that required
|
@@ -42,7 +43,7 @@ module BeakerRSpec
|
|
42
43
|
@network_manager.validate
|
43
44
|
end
|
44
45
|
|
45
|
-
# Run configuration steps to have hosts ready to test on (such as ensuring that
|
46
|
+
# Run configuration steps to have hosts ready to test on (such as ensuring that
|
46
47
|
# hosts are correctly time synched, adding keys, etc).
|
47
48
|
# Assumes #setup, #provision and #validate have already been called.
|
48
49
|
def configure
|
data/lib/beaker-rspec/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppetlabs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|