barsoom_utils 0.1.1.28 → 0.1.1.29
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 +4 -4
- data/VERSION +1 -1
- data/lib/barsoom_utils/ping_health_check.rb +1 -1
- data/shared_rubocop.yml +1 -1
- data/spec/ping_health_check_spec.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 493546fda72610e5e52176a76f807dd9943c4ca560f4375cbc140c499de1590c
|
4
|
+
data.tar.gz: 01f5630049742c8610a5ca2fbfca3e0537ce0863dc969691f8d3b1c00232303f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d43c35b5e0d2fdb240e0a771e48db881bbd852d434832e3521c94e3516796508ed841638b5a01c4c9c3f0a50786f3187fd36c5a4aba88f023c31dabe18455867
|
7
|
+
data.tar.gz: c83d64a4afcaf78178577ee276114df410c0f613c41792322ceaeb999cda41bdf8fa6f78dadb6b3d5e32d7efc26b8b6ebb97243a5cec540d266dc88210279c43
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.1.
|
1
|
+
0.1.1.29
|
data/shared_rubocop.yml
CHANGED
@@ -9,27 +9,27 @@ RSpec.describe BarsoomUtils::PingHealthCheck, ".call" do
|
|
9
9
|
end
|
10
10
|
|
11
11
|
it "does nothing on a 200 OK response" do
|
12
|
-
expect(HTTParty).to receive(:get).with("https://
|
12
|
+
expect(HTTParty).to receive(:get).with("https://hc-ping.com/foo").and_return(double(:response, code: 200, headers: {}))
|
13
13
|
|
14
14
|
BarsoomUtils::PingHealthCheck.call("foo")
|
15
15
|
end
|
16
16
|
|
17
17
|
it "includes CloudFlare request ID header information in failure message" do
|
18
|
-
expect(HTTParty).to receive(:get).with("https://
|
18
|
+
expect(HTTParty).to receive(:get).with("https://hc-ping.com/foo").and_return(double(:response, code: 503, headers: { "cf-request-id" => "023aa754ae0000517ab8829200000001" }))
|
19
19
|
expect(BarsoomUtils::ExceptionNotifier).to receive(:message).with(anything, /cf-request-id header: 023aa754ae0000517ab8829200000001/)
|
20
20
|
|
21
21
|
BarsoomUtils::PingHealthCheck.call("foo")
|
22
22
|
end
|
23
23
|
|
24
24
|
it "silently reports an error to devs if it fails with a bad response code" do
|
25
|
-
expect(HTTParty).to receive(:get).with("https://
|
25
|
+
expect(HTTParty).to receive(:get).with("https://hc-ping.com/foo").and_return(double(:response, code: 404, headers: {}))
|
26
26
|
expect(BarsoomUtils::ExceptionNotifier).to receive(:message).with(anything, /foo/)
|
27
27
|
|
28
28
|
BarsoomUtils::PingHealthCheck.call("foo")
|
29
29
|
end
|
30
30
|
|
31
31
|
it "silently reports an error to devs if it fails with an exception" do
|
32
|
-
expect(HTTParty).to receive(:get).with("https://
|
32
|
+
expect(HTTParty).to receive(:get).with("https://hc-ping.com/foo").and_raise("fail")
|
33
33
|
expect(BarsoomUtils::ExceptionNotifier).to receive(:message).with(anything, /foo/)
|
34
34
|
|
35
35
|
BarsoomUtils::PingHealthCheck.call("foo")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: barsoom_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.1.
|
4
|
+
version: 0.1.1.29
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomas Skogberg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|