182 lines
5.9 KiB
Ruby
182 lines
5.9 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "UserSettings", type: :request do
|
|
let(:user) { create(:user) }
|
|
|
|
describe "GET /settings/:tab" do
|
|
context "when not signed-in" do
|
|
it "redirects them to login" do
|
|
get "/settings"
|
|
expect(response).to redirect_to("/enter")
|
|
end
|
|
end
|
|
|
|
context "when signed-in" do
|
|
before { login_as user }
|
|
|
|
it "renders various settings tabs properly" do
|
|
%w[organization switch-organizations billing misc account].each do |tab|
|
|
get "/settings/#{tab}"
|
|
expect(response.body).to include("Settings for")
|
|
end
|
|
end
|
|
|
|
it "handles unknown settings tab properly" do
|
|
expect { get "/settings/does-not-exist" }.
|
|
to raise_error(ActionController::RoutingError)
|
|
end
|
|
|
|
it "doesn't let user access membership if user has no monthly_dues" do
|
|
get "/settings/membership"
|
|
expect(response.body).not_to include("Settings for")
|
|
end
|
|
|
|
it "allows user with monthly_dues to access membership" do
|
|
user.update_column(:monthly_dues, 5)
|
|
get "/settings/membership"
|
|
expect(response.body).to include("Settings for")
|
|
end
|
|
|
|
it "allows users to visit the account page" do
|
|
get "/settings/account"
|
|
expect(response.body).to include("Danger Zone")
|
|
end
|
|
|
|
it "renders heads up dupe account message with proper param" do
|
|
get "/settings?state=previous-registration"
|
|
error_message = "There is an existing account authorized with that social account"
|
|
expect(response.body).to include error_message
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "PUT /update/:id" do
|
|
before { login_as user }
|
|
|
|
it "updates summary" do
|
|
put "/users/#{user.id}", params: { user: { tab: "profile", summary: "Hello new summary" } }
|
|
expect(user.summary).to eq("Hello new summary")
|
|
end
|
|
|
|
it "updates username to too short username" do
|
|
put "/users/#{user.id}", params: { user: { tab: "profile", username: "h" } }
|
|
expect(response.body).to include("Username is too short")
|
|
end
|
|
end
|
|
|
|
describe "DELETE /users/remove_association" do
|
|
context "when user has two identities" do
|
|
let(:user) { create(:user, :two_identities) }
|
|
|
|
before { login_as user }
|
|
|
|
it "allows the user to remove an identity" do
|
|
delete "/users/remove_association", params: { provider: "twitter" }
|
|
expect(user.identities.count).to eq 1
|
|
end
|
|
|
|
it "removes the correct identity" do
|
|
delete "/users/remove_association", params: { provider: "twitter" }
|
|
expect(user.identities.first.provider).to eq "github"
|
|
end
|
|
|
|
it "removes their associated username" do
|
|
delete "/users/remove_association", params: { provider: "twitter" }
|
|
expect(user.twitter_username).to eq nil
|
|
end
|
|
|
|
it "redirects successfully to /settings/account" do
|
|
delete "/users/remove_association", params: { provider: "twitter" }
|
|
expect(response).to redirect_to "/settings/account"
|
|
end
|
|
|
|
it "renders a successful response message" do
|
|
delete "/users/remove_association", params: { provider: "twitter" }
|
|
expect(flash[:notice]).to eq "Your Twitter account was successfully removed."
|
|
end
|
|
|
|
it "does not show the Remove OAuth section afterward" do
|
|
delete "/users/remove_association", params: { provider: "twitter" }
|
|
expect(response.body).not_to include "Remove OAuth Associations"
|
|
end
|
|
end
|
|
|
|
# Users won't be able to do this via the view, but in case they hit the route somehow...
|
|
context "when user has only one identity" do
|
|
before { login_as user }
|
|
|
|
it "sets the proper error message" do
|
|
delete "/users/remove_association", params: { provider: "github" }
|
|
expect(flash[:error]).
|
|
to eq "An error occurred. Please try again or send an email to: yo@dev.to"
|
|
end
|
|
|
|
it "does not delete any identities" do
|
|
original_identity_count = user.identities.count
|
|
delete "/users/remove_association", params: { provider: "github" }
|
|
expect(user.identities.count).to eq original_identity_count
|
|
end
|
|
|
|
it "redirects successfully to /settings/account" do
|
|
delete "/users/remove_association", params: { provider: "github" }
|
|
expect(response).to redirect_to "/settings/account"
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "DELETE /users/destroy" do
|
|
context "when user has no articles or comments" do
|
|
before do
|
|
login_as user
|
|
delete "/users/destroy"
|
|
end
|
|
|
|
it "destroys the user" do
|
|
expect(user.persisted?).to eq false
|
|
end
|
|
|
|
it "sends an email to the user" do
|
|
expect(EmailMessage.last.to).to eq user.email
|
|
end
|
|
|
|
it "signs out the user" do
|
|
expect(controller.current_user).to eq nil
|
|
end
|
|
|
|
it "redirects successfully to the home page" do
|
|
expect(response).to redirect_to "/"
|
|
end
|
|
end
|
|
|
|
context "when users are not allowed to destroy" do
|
|
let(:user_with_article) { create(:user, :with_article) }
|
|
let(:user_with_comment) { create(:user, :with_only_comment) }
|
|
let(:user_with_article_and_comment) { create(:user, :with_article_and_comment) }
|
|
let(:users) { [user_with_article, user_with_comment, user_with_article_and_comment] }
|
|
|
|
it "does not allow invalid users to delete their account" do
|
|
users.each do |user|
|
|
login_as user
|
|
delete "/users/destroy"
|
|
expect(user.persisted?).to eq true
|
|
end
|
|
end
|
|
|
|
it "redirects successfully to /settings/account" do
|
|
users.each do |user|
|
|
login_as user
|
|
delete "/users/destroy"
|
|
expect(response).to redirect_to "/settings/account"
|
|
end
|
|
end
|
|
|
|
it "shows the proper error message after redirecting" do
|
|
users.each do |user|
|
|
login_as user
|
|
delete "/users/destroy"
|
|
expect(flash[:error]).to eq "An error occurred. Try requesting an account deletion below."
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|