frankfurter/spec/edge_cases_spec.rb
2024-11-21 14:45:44 +01:00

64 lines
1.4 KiB
Ruby

# frozen_string_literal: true
require_relative "helper"
require "rack/test"
require "web/server"
describe "the server" do
include Rack::Test::Methods
let(:app) { Web::Server.freeze }
def json
Oj.load(last_response.body)
end
it "handles unfound pages" do
get "/foo"
_(last_response.status).must_equal(404)
end
it "will not process an invalid date" do
get "/2010-31-01"
_(last_response).must_be(:unprocessable?)
end
it "will not process an invalid amount" do
get "/latest?amount=0&from=USD&to=EUR"
_(last_response).must_be(:unprocessable?)
end
it "will not process a date before 2000" do
get "/1999-01-01"
_(last_response).must_be(:not_found?)
end
it "will not process an unavailable base" do
get "/latest?base=UAH"
_(last_response).must_be(:not_found?)
end
it "handles malformed queries" do
get "/latest?base=USD?callback=?"
_(last_response).must_be(:not_found?)
end
it "does not return stale dates" do
Day.db.transaction do
get "/latest"
date = json["date"]
Day.latest.delete
get "/latest"
_(json["date"]).wont_equal(date)
raise Sequel::Rollback
end
end
it "will not process circular conversions" do
get "/latest?from=EUR&to=EUR"
_(last_response).must_be(:unprocessable?)
get "/latest?from=USD&to=USD"
_(last_response).must_be(:unprocessable?)
end
end