foodsoft/spec/controllers/finance/ordergroups_controller_spec.rb

58 lines
1.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'spec_helper'
describe Finance::OrdergroupsController do
2023-07-13 16:03:45 +02:00
include ActionView::Helpers::NumberHelper
render_views
let(:user) { create(:user, :role_finance, :role_orders, :ordergroup) }
let(:fin_trans_type1) { create(:financial_transaction_type) }
let(:fin_trans_type2) { create(:financial_transaction_type) }
let(:fin_trans1) do
create(:financial_transaction,
user: user,
2023-07-13 16:03:45 +02:00
amount: 100,
ordergroup: user.ordergroup,
financial_transaction_type: fin_trans_type1)
end
let(:fin_trans2) do
create(:financial_transaction,
user: user,
2023-07-13 16:03:45 +02:00
amount: 200,
ordergroup: user.ordergroup,
financial_transaction_type: fin_trans_type1)
end
let(:fin_trans3) do
create(:financial_transaction,
user: user,
2023-07-13 16:03:45 +02:00
amount: 42.23,
ordergroup: user.ordergroup,
financial_transaction_type: fin_trans_type2)
end
before { login user }
describe 'GET index' do
before do
fin_trans1
fin_trans2
fin_trans3
end
it 'renders index page' do
get_with_defaults :index
expect(response).to have_http_status(:success)
end
it 'calculates total balance sums correctly' do
get_with_defaults :index
2023-07-13 16:03:45 +02:00
expect(response).to have_http_status(:success)
assert_select "#total_balance#{fin_trans_type1.id}", number_to_currency(300)
assert_select "#total_balance#{fin_trans_type2.id}", number_to_currency(42.23)
assert_select '#total_balance_sum', number_to_currency(342.23)
end
end
end