frenchy 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/frenchy.rb +1 -1
- data/lib/frenchy/client.rb +12 -7
- data/lib/frenchy/version.rb +1 -1
- data/spec/lib/frenchy/client_spec.rb +8 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16af458377a1de408890760f4ac784abaad0a414
|
4
|
+
data.tar.gz: 84de7abdc7e201642c2521b3ec7add47869572a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f347685ae4c325a22ff0a7b76b6c11dd51742549c9ad51d1d38dc6bf5a188af842d5b8919a0cb61c42239ca41a2a987462b6838f08922cd932c65cff53e30895
|
7
|
+
data.tar.gz: 350dde3459350edb714c2f579cd912f1dd835b97865908249ceb99bca97d2b2ff151f590b5b66c1836f59c80dff11fe8b7ca1a31fec740df5dfcefeb17df81d3
|
data/lib/frenchy.rb
CHANGED
data/lib/frenchy/client.rb
CHANGED
@@ -3,16 +3,17 @@ require "json"
|
|
3
3
|
|
4
4
|
module Frenchy
|
5
5
|
class Client
|
6
|
-
attr_accessor :host, :timeout, :retries
|
6
|
+
attr_accessor :name, :host, :timeout, :retries
|
7
7
|
|
8
8
|
# Create a new client instance
|
9
|
-
def initialize(options={})
|
9
|
+
def initialize(name, options={})
|
10
10
|
options.stringify_keys!
|
11
11
|
|
12
|
-
@
|
13
|
-
@
|
14
|
-
@
|
15
|
-
@
|
12
|
+
@name = name.to_s
|
13
|
+
@host = options.fetch("host") { "http://127.0.0.1:8080" }
|
14
|
+
@timeout = options.fetch("timeout") { 30 }
|
15
|
+
@retries = options.fetch("retries") { 0 }
|
16
|
+
@backoff_delay = options.fetch("backoff_delay") { 1.0 }
|
16
17
|
end
|
17
18
|
|
18
19
|
# Issue a get request with the given path and query parameters. Get
|
@@ -90,7 +91,7 @@ module Frenchy
|
|
90
91
|
|
91
92
|
# Perform the request
|
92
93
|
begin
|
93
|
-
resp = http
|
94
|
+
resp = perform_request(http, req)
|
94
95
|
rescue => ex
|
95
96
|
raise Frenchy::ServerError.new(ex, reqinfo, nil)
|
96
97
|
end
|
@@ -112,5 +113,9 @@ module Frenchy
|
|
112
113
|
raise Frenchy::ServiceUnavailable.new(nil, reqinfo, resp)
|
113
114
|
end
|
114
115
|
end
|
116
|
+
|
117
|
+
def perform_request(http, req)
|
118
|
+
http.request(req)
|
119
|
+
end
|
115
120
|
end
|
116
121
|
end
|
data/lib/frenchy/version.rb
CHANGED
@@ -3,21 +3,21 @@ require "spec_helper"
|
|
3
3
|
describe Frenchy::Client do
|
4
4
|
describe "#initialize" do
|
5
5
|
it "uses expected defaults" do
|
6
|
-
client = Frenchy::Client.new
|
6
|
+
client = Frenchy::Client.new("default")
|
7
7
|
expect(client.host).to eql("http://127.0.0.1:8080")
|
8
8
|
expect(client.timeout).to eql(30)
|
9
9
|
expect(client.retries).to eql(0)
|
10
10
|
end
|
11
11
|
|
12
12
|
it "accepts an options hash" do
|
13
|
-
client = Frenchy::Client.new({"host" => "http://127.0.0.1:1234", "timeout" => 15, "retries" => 3})
|
13
|
+
client = Frenchy::Client.new("default", {"host" => "http://127.0.0.1:1234", "timeout" => 15, "retries" => 3})
|
14
14
|
expect(client.host).to eql("http://127.0.0.1:1234")
|
15
15
|
expect(client.timeout).to eql(15)
|
16
16
|
expect(client.retries).to eql(3)
|
17
17
|
end
|
18
18
|
|
19
19
|
it "accepts an options hash (symbols)" do
|
20
|
-
client = Frenchy::Client.new(host: "http://127.0.0.1:1234", timeout: 15, retries: 3)
|
20
|
+
client = Frenchy::Client.new("default", host: "http://127.0.0.1:1234", timeout: 15, retries: 3)
|
21
21
|
expect(client.host).to eql("http://127.0.0.1:1234")
|
22
22
|
expect(client.timeout).to eql(15)
|
23
23
|
expect(client.retries).to eql(3)
|
@@ -27,7 +27,7 @@ describe Frenchy::Client do
|
|
27
27
|
["patch", "post", "put", "delete"].each do |method|
|
28
28
|
describe "##{method}" do
|
29
29
|
it "returns a successful response containing the request json data" do
|
30
|
-
client = Frenchy::Client.new("host" => "http://httpbin.org")
|
30
|
+
client = Frenchy::Client.new("httpbin", "host" => "http://httpbin.org")
|
31
31
|
data = {"data" => "abcd", "number" => 1, "nested" => {"more" => "data"}}
|
32
32
|
expect = JSON.generate(data)
|
33
33
|
result = client.send(method, "/#{method}", data)
|
@@ -39,24 +39,24 @@ describe Frenchy::Client do
|
|
39
39
|
|
40
40
|
describe "#perform" do
|
41
41
|
it "returns a hash for successful json response" do
|
42
|
-
client = Frenchy::Client.new("host" => "http://httpbin.org")
|
42
|
+
client = Frenchy::Client.new("httpbin", "host" => "http://httpbin.org")
|
43
43
|
result = client.get("/ip", {})
|
44
44
|
expect(result).to be_an_instance_of(Hash)
|
45
45
|
expect(result.keys).to eql(["origin"])
|
46
46
|
end
|
47
47
|
|
48
48
|
it "raises an invalid response error for non-json response" do
|
49
|
-
client = Frenchy::Client.new("host" => "http://httpbin.org")
|
49
|
+
client = Frenchy::Client.new("httpbin", "host" => "http://httpbin.org")
|
50
50
|
expect{client.get("/html", {})}.to raise_error(Frenchy::InvalidResponse)
|
51
51
|
end
|
52
52
|
|
53
53
|
it "raises a not found error for 404 responses" do
|
54
|
-
client = Frenchy::Client.new("host" => "http://httpbin.org")
|
54
|
+
client = Frenchy::Client.new("httpbin", "host" => "http://httpbin.org")
|
55
55
|
expect{client.get("/status/404", {})}.to raise_error(Frenchy::NotFound)
|
56
56
|
end
|
57
57
|
|
58
58
|
it "raises a service unavailable error for 500+ responses" do
|
59
|
-
client = Frenchy::Client.new("host" => "http://httpbin.org")
|
59
|
+
client = Frenchy::Client.new("httpbin", "host" => "http://httpbin.org")
|
60
60
|
expect{client.get("/status/500", {})}.to raise_error(Frenchy::ServiceUnavailable)
|
61
61
|
end
|
62
62
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: frenchy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Coene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-09-
|
11
|
+
date: 2014-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|