require 'rails_helper' feature "Admin custom images" do background do admin = create(:administrator) login_as(admin.user) end scenario "Upload valid image" do visit admin_root_path within("#side_menu") do click_link "Custom images" end within("tr.logo_header") do attach_file "site_customization_image_image", "spec/fixtures/files/logo_header.png" click_button "Update" end expect(page).to have_css("tr.logo_header img[src*='logo_header.png']") expect(page).to have_css("img[src*='logo_header.png']", count: 1) end scenario "Upload invalid image" do visit admin_root_path within("#side_menu") do click_link "Custom images" end within("tr.icon_home") do attach_file "site_customization_image_image", "spec/fixtures/files/logo_header.png" click_button "Update" end expect(page).to have_content("Width must be 330px") expect(page).to have_content("Height must be 240px") end scenario "Delete image" do visit admin_root_path within("#side_menu") do click_link "Custom images" end within("tr.social_media_icon") do attach_file "site_customization_image_image", "spec/fixtures/files/social_media_icon.png" click_button "Update" end expect(page).to have_css("img[src*='social_media_icon.png']") within("tr.social_media_icon") do click_link "Delete" end expect(page).not_to have_css("img[src*='social_media_icon.png']") end end