Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add simple rspec tests to json_endpoint #105

Merged
merged 3 commits into from
May 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions spec/consul/async/json_endpoint_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# frozen_string_literal: true

require 'rspec'
require 'spec_helper'
require 'consul/async/json_endpoint'
require 'webmock/rspec'

RSpec.describe Consul::Async do
context 'default parameters' do
it 'request 200' do
mock_url = 'http://perfectly.working.url'
conf = Consul::Async::JSONConfiguration.new(url: mock_url)
default_value = '[]'

json_endpoint = nil
response_body = %w[a b]
stub_request(:get, mock_url)
.to_return(body: response_body.to_json, status: 200)
EM.run_block do
json_endpoint = Consul::Async::JSONEndpoint.new(conf, mock_url, default_value)
end
expect(json_endpoint.ready?).to eq(true)
expect(json_endpoint.last_result.data).to eq(response_body.to_json)
end

it 'request 500' do
mock_url = 'http://error.working.url'
conf = Consul::Async::JSONConfiguration.new(url: mock_url)
default_value = ''

json_endpoint = nil
stub_request(:get, mock_url)
.to_return(body: '', status: 500)
EM.run_block do
json_endpoint = Consul::Async::JSONEndpoint.new(conf, mock_url, default_value)
end
expect(json_endpoint.ready?).to_not eq(true)
expect(json_endpoint.last_result.retry_in).to be_positive
end

it 'on timeout' do
mock_url = 'http://not.working.url'
conf = Consul::Async::JSONConfiguration.new(url: mock_url)
default_value = ''

stub_request(:get, mock_url).to_timeout
json_endpoint = nil
EM.run_block do
json_endpoint = Consul::Async::JSONEndpoint.new(conf, mock_url, default_value, enforce_json_200: true)
end
expect(json_endpoint.ready?).to_not eq(true)
expect(json_endpoint.last_result.retry_in).to be_positive
end
end
end
Loading