Sha256: 98e58a3d573254fd201cd83e6a60937589bbad0a7aa622aca8c5aaf50a84b205
Contents?: true
Size: 1.35 KB
Versions: 16
Compression:
Stored size: 1.35 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/../../helpers/resource_test_helper') class SourcesGetManyResourceTest < ResourceTestCase include DataCatalog def app; Sources end before do Source.destroy_all unless Source.count == 0 @sources = 3.times.map do |i| create_source(:title => "Source #{i}") end @source_titles = ["Source 0", "Source 1", "Source 2"].sort end after do @sources.each { |x| x.destroy } if @sources end context "get /" do context "anonymous" do before do get "/" end use "return 401 because the API key is missing" end context "incorrect API key" do before do get "/", :api_key => BAD_API_KEY end use "return 401 because the API key is invalid" end end %w(basic curator admin).each do |role| context "#{role} : get /" do before do get "/", :api_key => api_key_for(role) end use "return 200 Ok" test "body should have 3 sources" do assert_equal 3, parsed_response_body.length end test "body should have correct source titles" do actual = parsed_response_body.map { |e| e["title"] } assert_equal @source_titles, actual.sort end docs_properties %w(title url raw categories id created_at updated_at) end end end
Version data entries
16 entries across 16 versions & 1 rubygems