mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
33 lines
929 B
Ruby
33 lines
929 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
module OpenApi; end
|
|
|
|
class OpenApi::PricesTest < ActionDispatch::IntegrationTest
|
|
def setup
|
|
@token = OpenAPI::Client.find_by(name: 'minitest').token
|
|
end
|
|
|
|
test 'list all prices' do
|
|
get '/open_api/v1/prices', headers: open_api_headers(@token)
|
|
assert_response :success
|
|
|
|
assert_equal Price.count, json_response(response.body)[:prices].length
|
|
end
|
|
|
|
test 'list all prices with pagination' do
|
|
get '/open_api/v1/prices?page=1&per_page=5', headers: open_api_headers(@token)
|
|
assert_response :success
|
|
|
|
assert_equal 5, json_response(response.body)[:prices].length
|
|
end
|
|
|
|
test 'list all prices for a specific machine' do
|
|
get '/open_api/v1/prices?priceable_type=Machine&priceable_id=1', headers: open_api_headers(@token)
|
|
assert_response :success
|
|
|
|
assert_equal [1], json_response(response.body)[:prices].pluck(:priceable_id).uniq
|
|
end
|
|
end
|