cirandas.net

ref: master

plugins/admin_notifications/test/functional/admin_notifications_plugin_admin_controller_test.rb


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
require 'test_helper'
require_relative '../../controllers/admin_notifications_plugin_admin_controller'

class AdminNotificationsPluginAdminControllerTest < ActionController::TestCase
  def setup
    @controller = AdminNotificationsPluginAdminController.new
    @person = create_user('person').person

    @environment = Environment.default
    @environment.enable_plugin('AdminNotificationsPlugin')
    @environment.save!

    login_as(@person.user.login)
  end

  attr_accessor :person

  should 'an admin be able to create a notification' do
    @environment.add_admin(@person)
     post :new, :notifications => {
                  :message => "Message",
                  :active => true,
                  :type => "AdminNotificationsPlugin::DangerNotification"
                }
     assert_redirected_to :action => 'index'
     notification = AdminNotificationsPlugin::Notification.last
     assert_equal "Message", notification.message
     assert notification.active
     assert_equal "AdminNotificationsPlugin::DangerNotification", notification.type
  end

  should 'an user not to be able to create a notification' do
     post :new, :notifications => {
                  :message => "Message",
                  :active => true,
                  :type => "AdminNotificationsPlugin::DangerNotification"
                }
     assert_redirected_to :root
     assert_nil AdminNotificationsPlugin::Notification.last
  end

   should 'an admin be able to edit a notification' do
    @environment.add_admin(@person)
    @notification = AdminNotificationsPlugin::Notification.create(
                      :target => @environment,
                      :message => "Message",
                      :active => true,
                      :type => "AdminNotificationsPlugin::DangerNotification"
                    )
     post :edit, :id => @notification.id, :notifications => {
                                            :message => "Edited Message",
                                            :active => false,
                                            :type => "AdminNotificationsPlugin::WarningNotification"
                                          }
     @notification = AdminNotificationsPlugin::Notification.last
     assert_redirected_to :action => 'index'
     assert_equal "Edited Message", @notification.message
     assert !@notification.active
     assert_equal "AdminNotificationsPlugin::WarningNotification", @notification.type
  end

  should 'an user not to be able to edit a notification' do
    @notification = AdminNotificationsPlugin::Notification.create(
                      :target => @environment,
                      :message => "Message",
                      :active => true,
                      :type => "AdminNotificationsPlugin::DangerNotification"
                    )
     post :edit, :notifications => {
                   :message => "Edited Message",
                   :active => false,
                   :type => "AdminNotificationsPlugin::DangerNotification"
                 }
     @notification.reload
     assert_redirected_to :root
     assert_equal "Message", @notification.message
     assert @notification.active
  end

  should 'an admin be able to destroy a notification' do
    @environment.add_admin(@person)
    @notification = AdminNotificationsPlugin::Notification.create(
                      :target => @environment,
                      :message => "Message",
                      :active => true,
                      :type => "AdminNotificationsPlugin::DangerNotification"
                    )
    delete :destroy, :id => @notification.id
    assert_nil AdminNotificationsPlugin::Notification.find_by id: @notification.id
  end

  should 'an user not to be able to destroy a notification' do
    @notification = AdminNotificationsPlugin::Notification.create(
                      :target => @environment,
                      :message => "Message",
                      :active => true,
                      :type => "AdminNotificationsPlugin::DangerNotification"
                    )
     delete :destroy, :id => @notification.id

     assert_redirected_to :root
     assert_not_nil AdminNotificationsPlugin::Notification.find_by id: @notification.id
  end

  should 'an admin be able to change Notification status' do
    @environment.add_admin(@person)
    @notification = AdminNotificationsPlugin::Notification.create(
                      :target => @environment,
                      :message => "Message",
                      :active => true,
                      :type => "AdminNotificationsPlugin::DangerNotification"
                    )
     post :change_status, :id => @notification.id
     assert_redirected_to :action => 'index'

     @notification.reload
     assert !@notification.active
  end

  should 'an user not be able to change Notification status' do
    @notification = AdminNotificationsPlugin::Notification.create(
                      :target => @environment,
                      :message => "Message",
                      :active => true,
                      :type => "AdminNotificationsPlugin::DangerNotification"
                    )
     post :change_status, :id => @notification.id
     assert_redirected_to :root

     @notification.reload
     assert @notification.active
  end

end