2019-07-30 21:29:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
require 'controllers/support/shared_user_context'
|
|
|
|
|
2019-07-30 21:29:24 +00:00
|
|
|
describe ProfilesController, type: :controller do
|
2018-03-25 17:30:42 +00:00
|
|
|
describe 'authorization' do
|
|
|
|
include_context :shared_user_context
|
|
|
|
describe 'rejects unauthorized users' do
|
|
|
|
describe 'update' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_profile_owner, :put, :update, id: :__our_profile
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'fundraisers' do
|
2019-08-02 16:20:33 +00:00
|
|
|
include_context :open_to_profile_owner, :get, :fundraisers, id: :__our_profile, without_json_view: true
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'donations_history' do
|
2019-08-02 16:20:33 +00:00
|
|
|
include_context :open_to_profile_owner, :get, :donations_history, id: :__our_profile, without_json_view: true
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'open to all' do
|
|
|
|
describe 'show' do
|
2019-08-02 16:20:33 +00:00
|
|
|
include_context :open_to_all, :get, :show, id: :__our_np, without_json_view: true
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-07-30 21:29:24 +00:00
|
|
|
end
|