forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert
settings/exports
controller spec to system/request specs (m…
- Loading branch information
1 parent
2946a92
commit 5a8f2fe
Showing
3 changed files
with
65 additions
and
47 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rails_helper' | ||
|
||
RSpec.describe 'Settings / Exports' do | ||
context 'when not signed in' do | ||
describe 'GET /settings/export' do | ||
it 'redirects to sign in page' do | ||
get settings_export_path | ||
|
||
expect(response) | ||
.to redirect_to new_user_session_path | ||
end | ||
end | ||
|
||
describe 'POST /settings/export' do | ||
it 'redirects to sign in page' do | ||
post settings_export_path | ||
|
||
expect(response) | ||
.to redirect_to new_user_session_path | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rails_helper' | ||
|
||
RSpec.describe 'Export page' do | ||
let(:user) { Fabricate :user } | ||
|
||
before { sign_in user } | ||
|
||
describe 'Viewing the export page' do | ||
context 'when signed in' do | ||
it 'shows the export page', :aggregate_failures do | ||
visit settings_export_path | ||
|
||
expect(page) | ||
.to have_content(takeout_summary) | ||
.and have_private_cache_control | ||
end | ||
end | ||
end | ||
|
||
describe 'Creating a new archive' do | ||
it 'queues a worker and redirects' do | ||
visit settings_export_path | ||
|
||
expect { request_archive } | ||
.to change(BackupWorker.jobs, :size).by(1) | ||
expect(page) | ||
.to have_content(takeout_summary) | ||
end | ||
|
||
def request_archive | ||
click_on I18n.t('exports.archive_takeout.request') | ||
end | ||
end | ||
|
||
def takeout_summary | ||
I18n.t('settings.export') | ||
end | ||
end |