berkshelf 8.0.7 → 8.0.9
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80b38fc167aeaac8e33a0219cc4ada1bf3e1614a5553294cabfdc7460c5f56b6
|
4
|
+
data.tar.gz: 4f642360c7e11c3946c8463cd422dd2279a27f3bcf6512481183dd55e98613d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 452b88f63d021f69c75c196f3bd39e1e4f4595e208d75b1f88bc190964c79d05ce8fabc03726884d22396072c00c63fd8423194b495054e96c46cc9439d11bc7
|
7
|
+
data.tar.gz: d05010ba4e991b5300b1bda01f1efc73f797e1f85af0666095ff633524f1e3ec54ab650a0ecb81bd59402fd100f6249af7e7fa31f36d526192d88212b32ac5fa
|
@@ -16,7 +16,7 @@ module Berkshelf
|
|
16
16
|
def add_trusted_cert(cert)
|
17
17
|
@store.add_cert(cert)
|
18
18
|
rescue OpenSSL::X509::StoreError => e
|
19
|
-
raise e unless e.message
|
19
|
+
raise e unless e.message.match(/cert already in hash table/)
|
20
20
|
end
|
21
21
|
|
22
22
|
def trusted_certs_dir
|
data/lib/berkshelf/version.rb
CHANGED
@@ -130,17 +130,17 @@ describe Berkshelf::APIClient::Connection do
|
|
130
130
|
end
|
131
131
|
|
132
132
|
it "raises Berkshelf::APIClient::ServiceUnavailable for 500s" do
|
133
|
-
stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status:
|
133
|
+
stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: 500, body: "Internal Server Error")
|
134
134
|
expect { subject }.to raise_error(Berkshelf::APIClient::ServiceUnavailable)
|
135
135
|
end
|
136
136
|
|
137
137
|
it "raises Berkshelf::APIClient::ServiceNotFound for 404s" do
|
138
|
-
stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status:
|
138
|
+
stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: 404, body: "Not Found")
|
139
139
|
expect { subject }.to raise_error(Berkshelf::APIClient::ServiceNotFound)
|
140
140
|
end
|
141
141
|
|
142
142
|
it "raises Net::HTTPBadRequest for 400s" do
|
143
|
-
stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status:
|
143
|
+
stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: 400, body: "Bad Request")
|
144
144
|
expect { subject }.to raise_error(Berkshelf::APIClient::BadResponse)
|
145
145
|
end
|
146
146
|
|
@@ -107,7 +107,7 @@ describe Berkshelf::CommunityREST do
|
|
107
107
|
it "raises a CookbookNotFound error on a 404 response for a non-existent cookbook" do
|
108
108
|
stub_request(:get, "#{api_uri}/cookbooks/not_real/versions/1_0_0").to_return(
|
109
109
|
status: 404,
|
110
|
-
body:
|
110
|
+
body: "Not Found"
|
111
111
|
)
|
112
112
|
|
113
113
|
expect do
|
@@ -142,7 +142,7 @@ describe Berkshelf::CommunityREST do
|
|
142
142
|
it "raises a CookbookNotFound error on a 404 response" do
|
143
143
|
stub_request(:get, "#{api_uri}/cookbooks/not_real").to_return(
|
144
144
|
status: 404,
|
145
|
-
body:
|
145
|
+
body: "Not Found"
|
146
146
|
)
|
147
147
|
|
148
148
|
expect do
|
@@ -177,7 +177,7 @@ describe Berkshelf::CommunityREST do
|
|
177
177
|
it "raises a CookbookNotFound error on a 404 response" do
|
178
178
|
stub_request(:get, "#{api_uri}/cookbooks/not_real").to_return(
|
179
179
|
status: 404,
|
180
|
-
body:
|
180
|
+
body: "Not Found"
|
181
181
|
)
|
182
182
|
|
183
183
|
expect do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: berkshelf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.0.
|
4
|
+
version: 8.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamie Winsor
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2023-
|
15
|
+
date: 2023-09-27 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: mixlib-shellout
|