* Add EditorConfig file for all editors * Add article export service * Add setting to request an export of all articles * On the outside they are called posts * Add articles exported email to mailer and service * Refactor to one public method and test flags * Trigger the export if it was requested and send the email * Recreated migration file with generic export fields * Rename fields and switch to a whitelist * Refactor ArticleExportService into a more generic structure * Rename articles_exported_email to export_email * Fix notify mailer spec * Rename Exporter::Exporter to Exporter::Service * Remove commented out line * Removed body_html, coordinates and updated_at from export * Invert DJ config * Update spec
230 lines
7.4 KiB
Ruby
230 lines
7.4 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 }
|
|
|
|
after do
|
|
Delayed::Worker.delay_jobs = false
|
|
end
|
|
|
|
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
|
|
|
|
context "when requesting an export of the articles" do
|
|
def send_request(flag = true)
|
|
Delayed::Worker.delay_jobs = true
|
|
put "/users/#{user.id}", params: {
|
|
user: { tab: "misc", export_requested: flag }
|
|
}
|
|
end
|
|
|
|
it "updates export_requested flag" do
|
|
send_request
|
|
expect(user.reload.export_requested).to be(true)
|
|
end
|
|
|
|
it "displays a flash with a reminder for the user to expect an email" do
|
|
send_request
|
|
expect(flash[:notice]).to include("The export will be emailed to you shortly.")
|
|
end
|
|
|
|
it "hides the checkbox" do
|
|
send_request
|
|
follow_redirect!
|
|
expect(response.body).not_to include("Request an export of your posts")
|
|
end
|
|
|
|
it "tells the user they recently requested an export" do
|
|
send_request
|
|
follow_redirect!
|
|
expect(response.body).to include("You have recently requested an export")
|
|
end
|
|
|
|
it "sends an email" do
|
|
expect do
|
|
send_request
|
|
Delayed::Worker.new.work_off
|
|
# Delayed::Worker.delay_jobs = false
|
|
end.to change { ActionMailer::Base.deliveries.count }.by(1)
|
|
end
|
|
|
|
it "does not send an email if there was no request" do
|
|
Delayed::Worker.delay_jobs = false
|
|
expect { send_request(false) }.not_to(change { ActionMailer::Base.deliveries.count })
|
|
end
|
|
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
|