app
bin
config
db
docs
lib
log
nanobox
public
spec
controllers
activitypub
admin
api
auth
concerns
oauth
settings
exports
two_factor_authentication
applications_controller_spec.rb
deletes_controller_spec.rb
exports_controller_spec.rb
follower_domains_controller_spec.rb
imports_controller_spec.rb
notifications_controller_spec.rb
preferences_controller_spec.rb
profiles_controller_spec.rb
two_factor_authentications_controller_spec.rb
well_known
about_controller_spec.rb
account_follow_controller_spec.rb
account_unfollow_controller_spec.rb
accounts_controller_spec.rb
application_controller_spec.rb
authorize_follows_controller_spec.rb
follower_accounts_controller_spec.rb
following_accounts_controller_spec.rb
home_controller_spec.rb
manifests_controller_spec.rb
media_controller_spec.rb
remote_follow_controller_spec.rb
statuses_controller_spec.rb
stream_entries_controller_spec.rb
tags_controller_spec.rb
fabricators
features
fixtures
helpers
lib
mailers
models
policies
presenters
requests
routing
services
support
validators
views
workers
rails_helper.rb
spec_helper.rb
streaming
vendor
.babelrc
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.yml
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.postcssrc.yml
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.travis.yml
.yarnclean
Aptfile
CODEOWNERS
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
ISSUE_TEMPLATE.md
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
boxfile.yml
config.ru
docker-compose.yml
docker_entrypoint.sh
jest.config.js
package.json
scalingo.json
yarn.lock
* Separate notifications preferences from general preferences * Refine settings/notifications/show * remove preferences.notifications
38 lines
1009 B
Ruby
38 lines
1009 B
Ruby
require 'rails_helper'
|
|
|
|
describe Settings::NotificationsController do
|
|
render_views
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
before do
|
|
sign_in user, scope: :user
|
|
end
|
|
|
|
describe 'GET #show' do
|
|
it 'returns http success' do
|
|
get :show
|
|
expect(response).to have_http_status(:success)
|
|
end
|
|
end
|
|
|
|
describe 'PUT #update' do
|
|
it 'updates notifications settings' do
|
|
user.settings['notification_emails'] = user.settings['notification_emails'].merge('follow' => false)
|
|
user.settings['interactions'] = user.settings['interactions'].merge('must_be_follower' => true)
|
|
|
|
put :update, params: {
|
|
user: {
|
|
notification_emails: { follow: '1' },
|
|
interactions: { must_be_follower: '0' },
|
|
}
|
|
}
|
|
|
|
expect(response).to redirect_to(settings_notifications_path)
|
|
user.reload
|
|
expect(user.settings['notification_emails']['follow']).to be true
|
|
expect(user.settings['interactions']['must_be_follower']).to be false
|
|
end
|
|
end
|
|
end
|