mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
41 lines
1.2 KiB
Ruby
41 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
module OpenApi; end
|
|
|
|
class OpenApi::InvoicesTest < ActionDispatch::IntegrationTest
|
|
def setup
|
|
@token = OpenAPI::Client.find_by(name: 'minitest').token
|
|
end
|
|
|
|
test 'list invoices' do
|
|
get '/open_api/v1/invoices', headers: open_api_headers(@token)
|
|
assert_response :success
|
|
assert_equal Mime[:json], response.content_type
|
|
|
|
assert_not_empty json_response(response.body)[:invoices]
|
|
end
|
|
|
|
test 'list invoices with pagination details' do
|
|
get '/open_api/v1/invoices?page=1&per_page=5', headers: open_api_headers(@token)
|
|
assert_response :success
|
|
end
|
|
|
|
test 'list invoices for a user' do
|
|
get '/open_api/v1/invoices?user_id=3', headers: open_api_headers(@token)
|
|
assert_response :success
|
|
end
|
|
|
|
test 'list invoices for a user with pagination details' do
|
|
get '/open_api/v1/invoices?user_id=3&page=1&per_page=5', headers: open_api_headers(@token)
|
|
assert_response :success
|
|
end
|
|
|
|
test 'download an invoice' do
|
|
get '/open_api/v1/invoices/3/download', headers: open_api_headers(@token)
|
|
assert_response :success
|
|
assert_match(/^inline; filename=/, response.headers['Content-Disposition'])
|
|
end
|
|
end
|