Merge pull request #4528 from consul/budget_with_administrators

Fix crash destroying budgets with admins/valuators
This commit is contained in:
Javi Martín
2021-06-02 17:59:31 +02:00
committed by GitHub
3 changed files with 36 additions and 2 deletions

View File

@@ -34,9 +34,9 @@ class Budget < ApplicationRecord
has_many :headings, through: :groups
has_many :lines, through: :ballots, class_name: "Budget::Ballot::Line"
has_many :phases, class_name: "Budget::Phase"
has_many :budget_administrators
has_many :budget_administrators, dependent: :destroy
has_many :administrators, through: :budget_administrators
has_many :budget_valuators
has_many :budget_valuators, dependent: :destroy
has_many :valuators, through: :budget_valuators
has_one :poll

View File

@@ -402,4 +402,26 @@ describe Budget do
end
end
end
describe "#budget_administrators" do
it "destroys relation with administrators when destroying the budget" do
budget = create(:budget, administrators: [create(:administrator)])
budget.destroy!
expect(BudgetAdministrator.count).to be 0
expect(Administrator.count).to be 1
end
end
describe "#budget_valuators" do
it "destroys relation with valuators when destroying the budget" do
budget = create(:budget, valuators: [create(:valuator)])
budget.destroy!
expect(BudgetValuator.count).to be 0
expect(Valuator.count).to be 1
end
end
end

View File

@@ -205,6 +205,18 @@ describe "Admin budgets", :admin do
expect(page).to have_content("There are no budgets.")
end
scenario "Destroy a budget without investments but with administrators and valuators" do
budget.administrators << Administrator.first
budget.valuators << create(:valuator)
visit admin_budgets_path
click_link "Edit budget"
click_link "Delete budget"
expect(page).to have_content "Budget deleted successfully"
expect(page).to have_content "There are no budgets."
end
scenario "Try to destroy a budget with investments" do
create(:budget_investment, heading: heading)