require 'rails_helper' feature 'Admin budget investments' do let(:budget) { create(:budget) } let(:administrator) do create(:administrator, user: create(:user, username: 'Ana', email: 'ana@admins.org')) end background do admin = create(:administrator) login_as(admin.user) 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 'If budget is finished do not show "Selected" button' do finished_budget = create(:budget, :finished) budget_investment = create(:budget_investment, budget: finished_budget, cached_votes_up: 77) visit admin_budget_budget_investments_path(budget_id: finished_budget.id) within("#budget_investment_#{budget_investment.id}") do 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) expect(page).not_to have_link("Selected") end end scenario 'Display admin and valuator assignments' 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 'Display valuator group assignments' do budget_investment1 = create(:budget_investment, budget: budget) budget_investment2 = create(:budget_investment, budget: budget) budget_investment3 = create(:budget_investment, budget: budget) health_group = create(:valuator_group, name: "Health") culture_group = create(:valuator_group, name: "Culture") budget_investment1.valuator_groups << health_group budget_investment2.valuator_group_ids = [health_group.id, culture_group.id] visit admin_budget_budget_investments_path(budget_id: budget) within("#budget_investment_#{budget_investment1.id}") do expect(page).to have_content("Health") end within("#budget_investment_#{budget_investment2.id}") do expect(page).to have_content("Health") expect(page).to have_content("Culture") end within("#budget_investment_#{budget_investment3.id}") do 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 "Central Park", from: "heading_id" expect(page).not_to have_link("Realocate visitors") expect(page).not_to 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).not_to have_link("Change name") expect(page).not_to have_link("Plant trees") select "Streets: Mercy Street", from: "heading_id" expect(page).not_to have_link("Realocate visitors") expect(page).to have_link("Change name") expect(page).not_to 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).not_to 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).not_to 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_or_group_id" expect(page).to have_content('There is 1 investment') expect(page).not_to have_link("Destroy the city") expect(page).to have_link("Realocate visitors") select "All valuators", from: "valuator_or_group_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_or_group_id" expect(page).to have_content('There is 1 investment') expect(page).not_to have_link("Destroy the city") expect(page).to have_link("Realocate visitors") end scenario "Filtering by valuator group", :js do user = create(:user) health_group = create(:valuator_group, name: "Health") culture_group = create(:valuator_group, name: "Culture") budget_investment1 = create(:budget_investment, title: "Build a hospital", budget: budget) budget_investment1.valuator_groups << health_group budget_investment2 = create(:budget_investment, title: "Build a theatre", budget: budget) budget_investment2.valuator_groups << culture_group visit admin_budget_budget_investments_path(budget_id: budget) expect(page).to have_link("Build a hospital") expect(page).to have_link("Build a theatre") select "Health", from: "valuator_or_group_id" expect(page).to have_content('There is 1 investment') expect(page).to have_link("Build a hospital") expect(page).not_to have_link("Build a theatre") select "All valuators", from: "valuator_or_group_id" expect(page).to have_content('There are 2 investments') expect(page).to have_link("Build a hospital") expect(page).to have_link("Build a theatre") select "Culture", from: "valuator_or_group_id" expect(page).to have_content('There is 1 investment') expect(page).to have_link("Build a theatre") expect(page).not_to have_link("Build a hospital") end scenario "Current filter is properly highlighted" do filters_links = { 'all' => 'All', 'without_admin' => 'Without assigned admin', 'without_valuator' => 'Without assigned valuator', 'under_valuation' => 'Under valuation', 'valuation_finished' => 'Valuation finished' } visit admin_budget_budget_investments_path(budget_id: budget.id) expect(page).not_to 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).not_to 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.push(create(:valuator)) visit admin_budget_budget_investments_path(budget_id: budget.id, filter: 'without_admin') expect(page).to have_content("Evaluating...") expect(page).not_to have_content("Assigned idea") visit admin_budget_budget_investments_path(budget_id: budget.id, filter: 'without_valuator') expect(page).to have_content("Assigned idea") expect(page).not_to have_content("Evaluating...") end scenario "Filtering by valuation status" do valuating = create(:budget_investment, budget: budget, title: "Ongoing valuation", administrator: create(:administrator)) valuated = create(:budget_investment, budget: budget, title: "Old idea", valuation_finished: true) valuating.valuators.push(create(:valuator)) valuated.valuators.push(create(:valuator)) visit admin_budget_budget_investments_path(budget_id: budget.id, filter: 'under_valuation') expect(page).to have_content("Ongoing valuation") expect(page).not_to have_content("Old idea") visit admin_budget_budget_investments_path(budget_id: budget.id, filter: 'valuation_finished') expect(page).not_to 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).not_to 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 scenario "Filtering by tag, display only valuation tags of the current budget" do new_budget = create(:budget) investment1 = create(:budget_investment, budget: budget, tag_list: 'Roads') investment2 = create(:budget_investment, budget: new_budget, tag_list: 'Accessibility') investment1.set_tag_list_on(:valuation, 'Roads') investment2.set_tag_list_on(:valuation, 'Accessibility') investment1.save investment2.save visit admin_budget_budget_investments_path(budget_id: budget.id) expect(page).to have_select("tag_name", options: ["All tags", "Roads"]) expect(page).not_to have_select("tag_name", options: ["All tags", "Accessibility"]) end scenario "Limiting by max number of investments per heading", :js do group_1 = create(:budget_group, budget: budget) group_2 = create(:budget_group, budget: budget) parks = create(:budget_heading, group: group_1) roads = create(:budget_heading, group: group_2) streets = create(:budget_heading, group: group_2) [2, 4, 90, 100, 200, 300].each do |n| create(:budget_investment, heading: parks, cached_votes_up: n, title: "Park with #{n} supports") end [21, 31, 51, 81, 91, 101].each do |n| create(:budget_investment, heading: roads, cached_votes_up: n, title: "Road with #{n} supports") end [3, 10, 30, 33, 44, 55].each do |n| create(:budget_investment, heading: streets, cached_votes_up: n, title: "Street with #{n} supports") end visit admin_budget_budget_investments_path(budget) [2, 4, 90, 100, 200, 300].each do |n| expect(page).to have_link("Park with #{n} supports") end [21, 31, 51, 81, 91, 101].each do |n| expect(page).to have_link("Road with #{n} supports") end [3, 10, 30, 33, 44, 55].each do |n| expect(page).to have_link("Street with #{n} supports") end click_link 'Advanced filters' fill_in "max_per_heading", with: 5 click_button 'Filter' expect(page).to have_content('There are 15 investments') expect(page).not_to have_link("Park with 2 supports") expect(page).not_to have_link("Road with 21 supports") expect(page).not_to have_link("Street with 3 supports") [4, 90, 100, 200, 300].each do |n| expect(page).to have_link("Park with #{n} supports") end [31, 51, 81, 91, 101].each do |n| expect(page).to have_link("Road with #{n} supports") end [10, 30, 33, 44, 55].each do |n| expect(page).to have_link("Street with #{n} supports") end end end context 'Search' do let!(:first_investment) do create(:budget_investment, title: 'Some other investment', budget: budget) end background do create(:budget_investment, title: 'Some investment', budget: budget) end scenario "Search investments by title" do visit admin_budget_budget_investments_path(budget) expect(page).to have_content('Some investment') expect(page).to have_content('Some other investment') fill_in 'title_or_id', with: 'Some investment' click_button 'Search' expect(page).to have_content('Some investment') expect(page).not_to have_content('Some other investment') end scenario 'Search investments by ID' do visit admin_budget_budget_investments_path(budget) expect(page).to have_content('Some investment') expect(page).to have_content('Some other investment') fill_in 'title_or_id', with: first_investment.id click_button 'Search' expect(page).to have_content('Some other investment') expect(page).not_to have_content('Some investment') end end context 'Sorting' do background do create(:budget_investment, title: 'B First Investment', cached_votes_up: 50, budget: budget) create(:budget_investment, title: 'A Second Investment', cached_votes_up: 25, budget: budget) create(:budget_investment, title: 'C Third Investment', cached_votes_up: 10, budget: budget) end scenario 'Sort by ID' do visit admin_budget_budget_investments_path(budget, sort_by: 'id') expect('B First Investment').to appear_before('A Second Investment') expect('A Second Investment').to appear_before('C Third Investment') end scenario 'Sort by title' do visit admin_budget_budget_investments_path(budget, sort_by: 'title') expect('A Second Investment').to appear_before('B First Investment') expect('B First Investment').to appear_before('C Third Investment') end scenario 'Sort by supports' do visit admin_budget_budget_investments_path(budget, sort_by: 'supports') expect('C Third Investment').to appear_before('A Second Investment') expect('A Second Investment').to appear_before('B First Investment') end end context 'Show' do scenario 'Show the investment details' do 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('Without image') expect(page).to have_content('Without documents') 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 expect(page).to have_button "Publish comment" end scenario 'Show image and documents on investment details' do budget_investment = create(:budget_investment, price: 1234, price_first_year: 1000, feasibility: "unfeasible", unfeasibility_explanation: 'It is impossible', administrator: administrator) create(:image, imageable: budget_investment) document = create(:document, documentable: budget_investment) 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('See image') expect(page).to have_content('See documents (1)') 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)') end scenario "If budget is finished, investment cannot be edited or valuation comments created" do # Only milestones can be managed finished_budget = create(:budget, :finished) budget_investment = create(:budget_investment, budget: finished_budget, administrator: administrator) visit admin_budget_budget_investments_path(budget_investment.budget) click_link budget_investment.title expect(page).not_to have_link "Edit" expect(page).not_to have_link "Edit classification" expect(page).not_to have_link "Edit dossier" expect(page).to have_link "Create new milestone" expect(page).not_to have_button "Publish comment" 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).not_to have_content('Undefined') expect(page).not_to have_content('Valerian (v2@valuators.org)') end end scenario "Add valuator group" do budget_investment = create(:budget_investment) health_group = create(:valuator_group, name: "Health") economy_group = create(:valuator_group, name: "Economy") culture_group = create(:valuator_group, name: "Culture") visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit classification' check "budget_investment_valuator_group_ids_#{health_group.id}" check "budget_investment_valuator_group_ids_#{culture_group.id}" click_button 'Update' expect(page).to have_content 'Investment project updated succesfully.' within('#assigned_valuator_groups') do expect(page).to have_content('Health') expect(page).to have_content('Culture') expect(page).not_to have_content('Undefined') expect(page).not_to have_content('Economy') end end pending "Do not display valuators of an assigned group" 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).not_to 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).not_to 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).not_to have_content "Education" expect(page).not_to have_content "Environment" expect(page).to have_content "Park, Trees" end within("#tags") do expect(page).to have_content "Education, Environment" expect(page).not_to have_content "Park" expect(page).not_to 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).not_to have_content "Refugees, Solidarity" end scenario "Shows alert when 'Valuation finished' is checked", :js do budget_investment = create(:budget_investment) visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit dossier' expect(page).to have_content('Valuation finished') accept_confirm { check('Valuation finished') } expect(find('#js-investment-report-alert')).to be_checked end # The feature tested in this scenario works as expected but some underlying reason # we're not aware of makes it fail at random xscenario "Shows alert with unfeasible status when 'Valuation finished' is checked", :js do budget_investment = create(:budget_investment, :unfeasible) visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit dossier' expect(page).to have_content('Valuation finished') valuation = find_field('budget_investment[valuation_finished]') accept_confirm { check('Valuation finished') } expect(valuation).to be_checked end scenario "Undoes check in 'Valuation finished' if user clicks 'cancel' on alert", :js do budget_investment = create(:budget_investment) visit admin_budget_budget_investment_path(budget_investment.budget, budget_investment) click_link 'Edit dossier' dismiss_confirm { check('Valuation finished') } expect(find('#js-investment-report-alert')).not_to be_checked 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") } let!(:undecided_bi) { create(:budget_investment, :undecided, budget: budget, title: "Undecided project") } scenario "Filtering by valuation and selection", :js do visit admin_budget_budget_investments_path(budget) within('#filter-subnav') { click_link 'Valuation finished' } expect(page).not_to have_content(unfeasible_bi.title) expect(page).not_to 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) click_link 'Advanced filters' within('#advanced_filters') { find(:css, "#advanced_filters_[value='feasible']").set(true) } click_button 'Filter' expect(page).not_to have_content(unfeasible_bi.title) expect(page).not_to 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('#advanced_filters') { find(:css, "#advanced_filters_[value='selected']").set(true) } within('#advanced_filters') { find(:css, "#advanced_filters_[value='feasible']").set(false) } click_button 'Filter' expect(page).not_to have_content(unfeasible_bi.title) expect(page).not_to have_content(feasible_bi.title) expect(page).not_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 'Winners' } expect(page).not_to have_content(unfeasible_bi.title) expect(page).not_to have_content(feasible_bi.title) expect(page).not_to have_content(feasible_vf_bi.title) expect(page).not_to have_content(selected_bi.title) expect(page).to have_content(winner_bi.title) end scenario "Aggregating results", :js do visit admin_budget_budget_investments_path(budget) click_link 'Advanced filters' within('#advanced_filters') { find(:css, "#advanced_filters_[value='undecided']").set(true) } click_button 'Filter' expect(page).to have_content(undecided_bi.title) expect(page).not_to have_content(winner_bi.title) expect(page).not_to have_content(selected_bi.title) expect(page).not_to have_content(feasible_bi.title) expect(page).not_to have_content(unfeasible_bi.title) expect(page).not_to have_content(feasible_vf_bi.title) within('#advanced_filters') { find(:css, "#advanced_filters_[value='unfeasible']").set(true) } click_button 'Filter' expect(page).to have_content(undecided_bi.title) expect(page).to have_content(unfeasible_bi.title) expect(page).not_to have_content(winner_bi.title) expect(page).not_to have_content(selected_bi.title) expect(page).not_to have_content(feasible_bi.title) expect(page).not_to have_content(feasible_vf_bi.title) end scenario "Showing the selection buttons", :js do visit admin_budget_budget_investments_path(budget) within("#budget_investment_#{unfeasible_bi.id}") do expect(page).not_to have_link('Select') expect(page).not_to have_link('Selected') end within("#budget_investment_#{feasible_bi.id}") do expect(page).not_to have_link('Select') expect(page).not_to have_link('Selected') end within("#budget_investment_#{feasible_vf_bi.id}") do expect(page).to have_link('Select') expect(page).not_to have_link('Selected') end within("#budget_investment_#{selected_bi.id}") do expect(page).not_to 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("#budget_investment_#{feasible_vf_bi.id}") do click_link('Select') expect(page).to have_link('Selected') end click_link 'Advanced filters' within('#advanced_filters') { find(:css, "#advanced_filters_[value='selected']").set(true) } click_button 'Filter' within("#budget_investment_#{feasible_vf_bi.id}") do expect(page).not_to have_link('Select') expect(page).to have_link('Selected') end end scenario "Unselecting an investment", :js do visit admin_budget_budget_investments_path(budget) click_link 'Advanced filters' within('#advanced_filters') { find(:css, "#advanced_filters_[value='selected']").set(true) } click_button 'Filter' expect(page).to have_content('There are 2 investments') within("#budget_investment_#{selected_bi.id}") do click_link('Selected') end expect(page).not_to have_content(selected_bi.title) expect(page).to have_content('There is 1 investment') visit admin_budget_budget_investments_path(budget) within("#budget_investment_#{selected_bi.id}") do expect(page).to have_link('Select') expect(page).not_to have_link('Selected') end end end context "Selecting csv" do scenario "Downloading CSV file" do investment = create(:budget_investment, :feasible, budget: budget, price: 100) valuator = create(:valuator, user: create(:user, username: 'Rachel', email: 'rachel@val.org')) investment.valuators.push(valuator) admin = create(:administrator, user: create(:user, username: 'Gema')) investment.update(administrator_id: admin.id) visit admin_budget_budget_investments_path(budget) click_link "Download current selection" header = page.response_headers['Content-Disposition'] expect(header).to match(/^attachment/) expect(header).to match(/filename="budget_investments.csv"$/) valuators = investment.valuators.collect(&:description_or_name).join(', ') feasibility_string = "admin.budget_investments.index"\ ".feasibility.#{investment.feasibility}" price = I18n.t(feasibility_string, price: investment.formatted_price) expect(page).to have_content investment.title expect(page).to have_content investment.total_votes.to_s expect(page).to have_content investment.id.to_s expect(page).to have_content investment.heading.name expect(page).to have_content investment.administrator.name expect(page).to have_content valuators expect(page).to have_content price expect(page).to have_content I18n.t('shared.no') end scenario "Downloading CSV file with applied filter" do investment1 = create(:budget_investment, :unfeasible, budget: budget, title: 'compatible') investment2 = create(:budget_investment, :finished, budget: budget, title: 'finished') visit admin_budget_budget_investments_path(budget) within('#filter-subnav') { click_link 'Valuation finished' } click_link "Download current selection" header = page.response_headers['Content-Disposition'] expect(header).to match(/^attachment/) expect(header).to match(/filename="budget_investments.csv"$/) expect(page).to have_content investment2.title expect(page).not_to have_content investment1.title end end end