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 EventsController, type: :controller do
|
2018-03-25 17:30:42 +00:00
|
|
|
describe 'authorization' do
|
|
|
|
include_context :shared_user_context
|
|
|
|
describe 'create' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_event_editor, :post, :create, nonprofit_id: :__our_np, id: :__our_event
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
describe 'update' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_event_editor, :put, :update, nonprofit_id: :__our_np, id: :__our_event
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
describe 'duplicate' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_event_editor, :post, :duplicate, nonprofit_id: :__our_np, id: :__our_event
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
describe 'soft_delete' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_event_editor, :delete, :soft_delete, nonprofit_id: :__our_np, event_id: :__our_event
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
describe 'stats' do
|
2019-08-02 16:20:33 +00:00
|
|
|
include_context :open_to_event_editor, :get, :stats, nonprofit_id: :__our_np, id: :__our_event, without_json_view: true
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'name_and_id' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_np_associate, :get, :name_and_id, nonprofit_id: :__our_np
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'open to all' do
|
|
|
|
describe 'index' do
|
2019-08-02 16:20:33 +00:00
|
|
|
include_context :open_to_all, :get, :index, nonprofit_id: :__our_np, without_json_view: true
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'listings' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_all, :get, :listings, nonprofit_id: :__our_np
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'show' do
|
2019-08-02 16:20:33 +00:00
|
|
|
include_context :open_to_all, :get, :show, nonprofit_id: :__our_np, id: :__our_event, without_json_view: true
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'activities' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_all, :get, :activities, nonprofit_id: :__our_np, id: :__our_event
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
describe 'metrics' do
|
2019-07-30 21:29:24 +00:00
|
|
|
include_context :open_to_all, :get, :metrics, nonprofit_id: :__our_np, id: :__our_event
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
end
|
2019-07-30 21:29:24 +00:00
|
|
|
end
|