frankfurter/spec/api_spec.rb
Hakan Ensari 702f6ac9aa Refactor internals
- Removed yajl-ruby
- Removed sinatra-jsonp
- Inlined #halt_with_message
- Added last_modified header to root path
2016-04-24 17:15:02 +01:00

66 lines
1.4 KiB
Ruby

# frozen_string_literal: true
require_relative 'helper'
require 'rack/test'
require 'api'
describe 'the API' do
include Rack::Test::Methods
let(:app) { Sinatra::Application }
let(:json) { JSON.parse last_response.body }
let(:headers) { last_response.headers }
it 'describes itself' do
get '/'
last_response.must_be :ok?
end
it 'returns latest quotes' do
get '/latest'
last_response.must_be :ok?
end
it 'sets base currency' do
get '/latest?base=USD'
json['base'].must_equal 'USD'
end
it 'filters symbols' do
get '/latest?symbols=USD'
json['rates'].keys.must_equal %w(USD)
end
it 'returns historical quotes' do
get '/2012-11-20'
json['rates'].wont_be :empty?
json['date'].must_equal '2012-11-20'
end
it 'works around holidays' do
get '/2010-01-01'
json['rates'].wont_be :empty?
end
it 'returns a last modified header' do
%w(/ /latest /2012-11-20).each do |path|
get path
headers['Last-Modified'].wont_be_nil
end
end
it 'allows cross-origin requests' do
%w(/ /latest /2012-11-20).each do |path|
get path
assert_equal '*', headers['Access-Control-Allow-Origin']
refute_empty headers['Access-Control-Allow-Methods']
end
end
it 'responds to preflight requests' do
options '/'
refute_empty headers['Allow']
refute_empty headers['Access-Control-Allow-Headers']
end
end