require 'rails_helper' feature 'Admin budget investments' do background do admin = create(:administrator) login_as(admin.user) @budget = create(:budget) end context "Feature flag" do background do Setting['feature.budgets'] = nil end after do Setting['feature.budgets'] = true end scenario 'Disabled with a feature flag' do expect{ visit admin_budgets_path }.to raise_exception(FeatureFlags::FeatureDisabled) end end context "Index" do scenario 'Displaying investments' do budget_investment = create(:budget_investment, budget: @budget, cached_votes_up: 77) visit admin_budget_budget_investments_path(budget_id: @budget.id) expect(page).to have_content(budget_investment.title) expect(page).to have_content(budget_investment.heading.name) expect(page).to have_content(budget_investment.id) expect(page).to have_content(budget_investment.total_votes) end scenario 'Displaying assignments info' do budget_investment1 = create(:budget_investment, budget: @budget) budget_investment2 = create(:budget_investment, budget: @budget) budget_investment3 = create(:budget_investment, budget: @budget) valuator1 = create(:valuator, user: create(:user, username: 'Olga'), description: 'Valuator Olga') valuator2 = create(:valuator, user: create(:user, username: 'Miriam'), description: 'Valuator Miriam') admin = create(:administrator, user: create(:user, username: 'Gema')) budget_investment1.valuators << valuator1 budget_investment2.valuator_ids = [valuator1.id, valuator2.id] budget_investment3.update(administrator_id: admin.id) visit admin_budget_budget_investments_path(budget_id: @budget.id) within("#budget_investment_#{budget_investment1.id}") do expect(page).to have_content("No admin assigned") expect(page).to have_content("Valuator Olga") end within("#budget_investment_#{budget_investment2.id}") do expect(page).to have_content("No admin assigned") expect(page).to have_content("Valuator Olga") expect(page).to have_content("Valuator Miriam") end within("#budget_investment_#{budget_investment3.id}") do expect(page).to have_content("Gema") expect(page).to have_content("No valuators assigned") end end scenario "Filtering by budget heading", :js do group1 = create(:budget_group, name: "Streets", budget: @budget) group2 = create(:budget_group, name: "Parks", budget: @budget) group1_heading1 = create(:budget_heading, group: group1, name: "Main Avenue") group1_heading2 = create(:budget_heading, group: group1, name: "Mercy Street") group2_heading1 = create(:budget_heading, group: group2, name: "Central Park") create(:budget_investment, title: "Realocate visitors", budget: @budget, group: group1, heading: group1_heading1) create(:budget_investment, title: "Change name", budget: @budget, group: group1, heading: group1_heading2) create(:budget_investment, title: "Plant trees", budget: @budget, group: group2, heading: group2_heading1) visit admin_budget_budget_investments_path(budget_id: @budget.id) expect(page).to have_link("Realocate visitors") expect(page).to have_link("Change name") expect(page).to have_link("Plant trees") select "Parks: Central Park", from: "heading_id" expect(page).to_not have_link("Realocate visitors") expect(page).to_not have_link("Change name") expect(page).to have_link("Plant trees") select "All headings", from: "heading_id" expect(page).to have_link("Realocate visitors") expect(page).to have_link("Change name") expect(page).to have_link("Plant trees") select "Streets: Main Avenue", from: "heading_id" expect(page).to have_link("Realocate visitors") expect(page).to_not have_link("Change name") expect(page).to_not have_link("Plant trees") select "Streets: Mercy Street", from: "heading_id" expect(page).to_not have_link("Realocate visitors") expect(page).to have_link("Change name") expect(page).to_not have_link("Plant trees") end scenario "Filtering by admin", :js do user = create(:user, username: 'Admin 1') administrator = create(:administrator, user: user) create(:budget_investment, title: "Realocate visitors", budget: @budget, administrator: administrator) create(:budget_investment, title: "Destroy the city", budget: @budget) visit admin_budget_budget_investments_path(budget_id: @budget.id) expect(page).to have_link("Realocate visitors") expect(page).to have_link("Destroy the city") select "Admin 1", from: "administrator_id" expect(page).to have_content('There is 1 investment') expect(page).to_not have_link("Destroy the city") expect(page).to have_link("Realocate visitors") select "All administrators", from: "administrator_id" expect(page).to have_content('There are 2 investments') expect(page).to have_link("Destroy the city") expect(page).to have_link("Realocate visitors") select "Admin 1", from: "administrator_id" expect(page).to have_content('There is 1 investment') expect(page).to_not have_link("Destroy the city") expect(page).to have_link("Realocate visitors") end scenario "Filtering by valuator", :js do user = create(:user) valuator = create(:valuator, user: user, description: 'Valuator 1') budget_investment = create(:budget_investment, title: "Realocate visitors", budget: @budget) budget_investment.valuators << valuator create(:budget_investment, title: "Destroy the city", budget: @budget) visit admin_budget_budget_investments_path(budget_id: @budget.id) expect(page).to have_link("Realocate visitors") expect(page).to have_link("Destroy the city") select "Valuator 1", from: "valuator_id" expect(page).to have_content('There is 1 investment') expect(page).to_not have_link("Destroy the city") expect(page).to have_link("Realocate visitors") select "All valuators", from: "valuator_id" expect(page).to have_content('There are 2 investments') expect(page).to have_link("Destroy the city") expect(page).to have_link("Realocate visitors") select "Valuator 1", from: "valuator_id" expect(page).to have_content('There is 1 investment') expect(page).to_not have_link("Destroy the city") expect(page).to have_link("Realocate visitors") end scenario "Current filter is properly highlighted" do filters_links = {'valuation_open' => 'Open', 'without_admin' => 'Without assigned admin', 'managed' => 'Managed', 'valuating' => 'Under valuation', 'valuation_finished' => 'Valuation finished', 'all' => 'All'} visit admin_budget_budget_investments_path(budget_id: @budget.id) expect(page).to_not have_link(filters_links.values.first) filters_links.keys.drop(1).each { |filter| expect(page).to have_link(filters_links[filter]) } filters_links.each_pair do |current_filter, link| visit admin_budget_budget_investments_path(budget_id: @budget.id, filter: current_filter) expect(page).to_not have_link(link) (filters_links.keys - [current_filter]).each do |filter| expect(page).to have_link(filters_links[filter]) end end end scenario "Filtering by assignment status" do assigned = create(:budget_investment, title: "Assigned idea", budget: @budget, administrator: create(:administrator)) valuating = create(:budget_investment, title: "Evaluating...", budget: @budget) valuating.valuators << create(:valuator) visit admin_budget_budget_investments_path(budget_id: @budget.id, filter: 'valuation_open') expect(page).to have_content("Assigned idea") expect(page).to have_content("Evaluating...") visit admin_budget_budget_investments_path(budget_id: @budget.id, filter: 'without_admin') expect(page).to have_content("Evaluating...") expect(page).to_not have_content("Assigned idea") visit admin_budget_budget_investments_path(budget_id: @budget.id, filter: 'managed') expect(page).to have_content("Assigned idea") expect(page).to_not have_content("Evaluating...") end scenario "Filtering by valuation status" do valuating = create(:budget_investment, budget: @budget, title: "Ongoing valuation") valuated = create(:budget_investment, budget: @budget, title: "Old idea", valuation_finished: true) valuating.valuators << create(:valuator) valuated.valuators << create(:valuator) visit admin_budget_budget_investments_path(budget_id: @budget.id, filter: 'valuation_open') expect(page).to have_content("Ongoing valuation") expect(page).to_not have_content("Old idea") visit admin_budget_budget_investments_path(budget_id: @budget.id, filter: 'valuating') expect(page).to have_content("Ongoing valuation") expect(page).to_not have_content("Old idea") visit admin_budget_budget_investments_path(budget_id: @budget.id, filter: 'valuation_finished') expect(page).to_not have_content("Ongoing valuation") expect(page).to have_content("Old idea") visit admin_budget_budget_investments_path(budget_id: @budget.id, filter: 'all') expect(page).to have_content("Ongoing valuation") expect(page).to have_content("Old idea") end scenario "Filtering by tag" do create(:budget_investment, budget: @budget, title: 'Educate the children', tag_list: 'Education') create(:budget_investment, budget: @budget, title: 'More schools', tag_list: 'Education') create(:budget_investment, budget: @budget, title: 'More hospitals', tag_list: 'Health') visit admin_budget_budget_investments_path(budget_id: @budget.id) expect(page).to have_css(".budget_investment", count: 3) expect(page).to have_content("Educate the children") expect(page).to have_content("More schools") expect(page).to have_content("More hospitals") visit admin_budget_budget_investments_path(budget_id: @budget.id, tag_name: 'Education') expect(page).to_not have_content("More hospitals") expect(page).to have_css(".budget_investment", count: 2) expect(page).to have_content("Educate the children") expect(page).to have_content("More schools") end scenario "Filtering by tag, display only valuation tags" do investment1 = create(:budget_investment, budget: @budget, tag_list: 'Education') investment2 = create(:budget_investment, budget: @budget, tag_list: 'Health') investment1.set_tag_list_on(:valuation, 'Teachers') investment2.set_tag_list_on(:valuation, 'Hospitals') investment1.save investment2.save visit admin_budget_budget_investments_path(budget_id: @budget.id) expect(page).to have_select("tag_name", options: ["All tags", "Hospitals", "Teachers"]) end end scenario 'Show' do administrator = create(:administrator, user: create(:user, username: 'Ana', email: 'ana@admins.org')) valuator = create(:valuator, user: create(:user, username: 'Rachel', email: 'rachel@valuators.org')) budget_investment = create(:budget_investment, price: 1234, price_first_year: 1000, feasibility: "unfeasible", unfeasibility_explanation: 'It is impossible', administrator: administrator) budget_investment.valuators << valuator visit admin_budget_budget_investments_path(budget_investment.budget) click_link budget_investment.title expect(page).to have_content(budget_investment.title) expect(page).to have_content(budget_investment.description) expect(page).to have_content(budget_investment.author.name) expect(page).to have_content(budget_investment.heading.name) expect(page).to have_content('1234') expect(page).to have_content('1000') expect(page).to have_content('Unfeasible') expect(page).to have_content('It is impossible') expect(page).to have_content('Ana (ana@admins.org)') within('#assigned_valuators') do expect(page).to have_content('Rachel (rachel@valuators.org)') end end context "Edit" do scenario "Change title, incompatible, description or heading" do budget_investment = create(:budget_investment, :incompatible) create(:budget_heading, group: budget_investment.group, name: "Barbate") visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit' fill_in 'budget_investment_title', with: 'Potatoes' fill_in 'budget_investment_description', with: 'Carrots' select "#{budget_investment.group.name}: Barbate", from: 'budget_investment[heading_id]' uncheck "budget_investment_incompatible" check "budget_investment_selected" click_button 'Update' expect(page).to have_content 'Potatoes' expect(page).to have_content 'Carrots' expect(page).to have_content 'Barbate' expect(page).to have_content 'Compatibility: Compatible' expect(page).to have_content 'Selected' end scenario "Compatible non-winner can't edit incompatibility" do budget_investment = create(:budget_investment, :selected) create(:budget_heading, group: budget_investment.group, name: "Tetuan") visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit' expect(page).not_to have_content 'Compatibility' expect(page).not_to have_content 'Mark as incompatible' end scenario "Add administrator" do budget_investment = create(:budget_investment) administrator = create(:administrator, user: create(:user, username: 'Marta', email: 'marta@admins.org')) visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit classification' select 'Marta (marta@admins.org)', from: 'budget_investment[administrator_id]' click_button 'Update' expect(page).to have_content 'Investment project updated succesfully.' expect(page).to have_content 'Assigned administrator: Marta' end scenario "Add valuators" do budget_investment = create(:budget_investment) valuator1 = create(:valuator, user: create(:user, username: 'Valentina', email: 'v1@valuators.org')) valuator2 = create(:valuator, user: create(:user, username: 'Valerian', email: 'v2@valuators.org')) valuator3 = create(:valuator, user: create(:user, username: 'Val', email: 'v3@valuators.org')) visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit classification' check "budget_investment_valuator_ids_#{valuator1.id}" check "budget_investment_valuator_ids_#{valuator3.id}" click_button 'Update' expect(page).to have_content 'Investment project updated succesfully.' within('#assigned_valuators') do expect(page).to have_content('Valentina (v1@valuators.org)') expect(page).to have_content('Val (v3@valuators.org)') expect(page).to_not have_content('Undefined') expect(page).to_not have_content('Valerian (v2@valuators.org)') end end scenario "Adds existing valuation tags", :js do budget_investment1 = create(:budget_investment) budget_investment1.set_tag_list_on(:valuation, 'Education, Health') budget_investment1.save budget_investment2 = create(:budget_investment) visit edit_admin_budget_budget_investment_path(budget_investment2.budget, budget_investment2) find('.js-add-tag-link', text: 'Education').click click_button 'Update' expect(page).to have_content 'Investment project updated succesfully.' within "#tags" do expect(page).to have_content 'Education' expect(page).to_not have_content 'Health' end end scenario "Adds non existent valuation tags" do budget_investment = create(:budget_investment) visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit classification' fill_in 'budget_investment_valuation_tag_list', with: 'Refugees, Solidarity' click_button 'Update' expect(page).to have_content 'Investment project updated succesfully.' within "#tags" do expect(page).to have_content 'Refugees' expect(page).to have_content 'Solidarity' end end scenario "Changes valuation and user generated tags" do budget_investment = create(:budget_investment, tag_list: 'Park') budget_investment.set_tag_list_on(:valuation, 'Education') budget_investment.save visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) within("#user-tags") do expect(page).to_not have_content "Education" expect(page).to have_content "Park" end click_link 'Edit classification' fill_in 'budget_investment_tag_list', with: 'Park, Trees' fill_in 'budget_investment_valuation_tag_list', with: 'Education, Environment' click_button 'Update' visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) within("#user-tags") do expect(page).to_not have_content "Education" expect(page).to_not have_content "Environment" expect(page).to have_content "Park, Trees" end within("#tags") do expect(page).to have_content "Education, Environment" expect(page).to_not have_content "Park" expect(page).to_not have_content "Trees" end end scenario "Maintains user tags" do budget_investment = create(:budget_investment, tag_list: 'Park') visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit classification' fill_in 'budget_investment_valuation_tag_list', with: 'Refugees, Solidarity' click_button 'Update' expect(page).to have_content 'Investment project updated succesfully.' visit budget_investment_path(budget_investment.budget, budget_investment) expect(page).to have_content "Park" expect(page).to_not have_content "Refugees, Solidarity" end scenario "Errors on update" do budget_investment = create(:budget_investment) visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit' fill_in 'budget_investment_title', with: '' click_button 'Update' expect(page).to have_content "can't be blank" end end context "Selecting" do let!(:unfeasible_bi) { create(:budget_investment, :unfeasible, budget: @budget, title: "Unfeasible project") } let!(:feasible_bi) { create(:budget_investment, :feasible, budget: @budget, title: "Feasible project") } let!(:feasible_vf_bi) { create(:budget_investment, :feasible, :finished, budget: @budget, title: "Feasible, VF project") } let!(:selected_bi) { create(:budget_investment, :selected, budget: @budget, title: "Selected project") } let!(:winner_bi) { create(:budget_investment, :winner, budget: @budget, title: "Winner project") } scenario "Filtering by valuation and selection" do visit admin_budget_budget_investments_path(@budget) within('#filter-subnav') { click_link 'Valuation finished' } expect(page).to_not have_content(unfeasible_bi.title) expect(page).to_not have_content(feasible_bi.title) expect(page).to have_content(feasible_vf_bi.title) expect(page).to have_content(selected_bi.title) expect(page).to have_content(winner_bi.title) within('#filter-subnav') { click_link 'Val. fin. Feasible' } expect(page).to_not have_content(unfeasible_bi.title) expect(page).to_not have_content(feasible_bi.title) expect(page).to have_content(feasible_vf_bi.title) expect(page).to have_content(selected_bi.title) expect(page).to have_content(winner_bi.title) within('#filter-subnav') { click_link 'Selected' } expect(page).to_not have_content(unfeasible_bi.title) expect(page).to_not have_content(feasible_bi.title) expect(page).to_not have_content(feasible_vf_bi.title) expect(page).to have_content(selected_bi.title) expect(page).to have_content(winner_bi.title) within('#filter-subnav') { click_link 'Winners' } expect(page).to_not have_content(unfeasible_bi.title) expect(page).to_not have_content(feasible_bi.title) expect(page).to_not have_content(feasible_vf_bi.title) expect(page).to_not have_content(selected_bi.title) expect(page).to have_content(winner_bi.title) end scenario "Showing the selection buttons", :js do visit admin_budget_budget_investments_path(@budget) within('#filter-subnav') { click_link 'All' } within("#budget_investment_#{unfeasible_bi.id}") do expect(page).to_not have_link('Select') expect(page).to_not have_link('Selected') end within("#budget_investment_#{feasible_bi.id}") do expect(page).to_not have_link('Select') expect(page).to_not have_link('Selected') end within("#budget_investment_#{feasible_vf_bi.id}") do expect(page).to have_link('Select') expect(page).to_not have_link('Selected') end within("#budget_investment_#{selected_bi.id}") do expect(page).to_not have_link('Select') expect(page).to have_link('Selected') end end scenario "Selecting an investment", :js do visit admin_budget_budget_investments_path(@budget) within('#filter-subnav') { click_link 'All' } within("#budget_investment_#{feasible_vf_bi.id}") do click_link('Select') expect(page).to have_link('Selected') end within('#filter-subnav') { click_link 'Selected' } within("#budget_investment_#{feasible_vf_bi.id}") do expect(page).to_not have_link('Select') expect(page).to have_link('Selected') end end scenario "Unselecting an investment", :js do visit admin_budget_budget_investments_path(@budget) within('#filter-subnav') { click_link 'Selected' } expect(page).to have_content('There are 2 investments') within("#budget_investment_#{selected_bi.id}") do click_link('Selected') end expect(page).to_not have_content(selected_bi.title) expect(page).to have_content('There is 1 investment') within('#filter-subnav') { click_link 'All' } within("#budget_investment_#{selected_bi.id}") do expect(page).to have_link('Select') expect(page).to_not have_link('Selected') end end end end