otwarchive-symphonyarchive/features/step_definitions/profile_steps.rb

86 lines
2.6 KiB
Ruby
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
Given /^I want to edit my profile$/ do
step "I view my profile"
click_link("Edit My Profile")
step %{I should see "Edit My Profile"}
end
When /^I fill in the details of my profile$/ do
fill_in("Title", with: "Test title thingy")
fill_in("About Me", with: "This is some text about me.")
click_button("Update")
end
When /^I change the details in my profile$/ do
fill_in("Title", with: "Alternative title thingy")
fill_in("About Me", with: "This is some different text about me.")
click_button("Update")
end
When /^I remove details from my profile$/ do
fill_in("Title", with: "")
fill_in("About Me", with: "")
click_button("Update")
end
When "the email address change confirmation period is set to {int} days" do |amount|
allow(Devise).to receive(:confirm_within).and_return(amount.days)
end
When "I start to change my email to {string}" do |email|
step %{I fill in "New email" with "#{email}"}
step %{I fill in "Enter new email again" with "#{email}"}
step %{I fill in "Password" with "password"}
step %{I press "Confirm New Email"}
end
When "I confirm my email change request to {string}" do |email|
step %{I should see "Are you sure you want to change your email address to #{email}?"}
step %{I press "Yes, Change Email"}
end
When "I request to change my email to {string}" do |email|
step %{I start to change my email to "#{email}"}
step %{I confirm my email change request to "#{email}"}
end
When "I change my email to {string}" do |email|
step %{I follow "My Preferences"}
step %{I follow "Change Email"}
step %{I request to change my email to "#{email}"}
step %{1 email should be delivered to "#{email}"}
step %{I follow "confirm your email change" in the email}
step %{I should see "Your email has been successfully updated."}
end
When /^I view my profile$/ do
step %{I follow "My Dashboard"}
step %{I should see "Dashboard"}
click_link("Profile")
end
When /^I make a mistake typing my old password$/ do
click_link("Password")
fill_in("password", with: "newpass1")
fill_in("password_confirmation", with: "newpass1")
fill_in("password_check", with: "wrong")
click_button("Change Password")
end
When /^I make a typing mistake confirming my new password$/ do
click_link("Password")
fill_in("password", with: "newpass1")
fill_in("password_confirmation", with: "newpass2")
fill_in("password_check", with: "password")
click_button("Change Password")
end
When /^I change my password$/ do
click_link("Password")
fill_in("password", with: "newpass1")
fill_in("password_confirmation", with: "newpass1")
fill_in("password_check", with: "password")
click_button("Change Password")
end