ref: master
plugins/admin_notifications/test/functional/admin_notifications_plugin_myprofile_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 135 136 137 138 139 140 141 |
require 'test_helper' class AdminNotificationsPluginMyprofileControllerTest < ActionController::TestCase def setup @controller = AdminNotificationsPluginMyprofileController.new @person = create_user('person').person @community = fast_create(Community) environment = Environment.default environment.enable_plugin('AdminNotificationsPlugin') environment.save! login_as(@person.user.login) AdminNotificationsPluginMyprofileController.any_instance.stubs(:profile).returns(@community) end attr_accessor :person should 'profile admin be able to create a notification' do @community.add_admin(@person) post :new, :profile => @community.identifier, :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 'a regular user not to be able to create a notification' do post :new, :profile => @community.identifier, :notifications => { :message => "Message", :active => true, :type => "AdminNotificationsPlugin::DangerNotification" } assert_redirected_to :root assert_nil AdminNotificationsPlugin::Notification.last end should 'profile admin be able to edit a notification' do @community.add_admin(@person) @notification = AdminNotificationsPlugin::Notification.create( :target => @community, :message => "Message", :active => true, :type => "AdminNotificationsPlugin::DangerNotification" ) post :edit, :profile => @community.identifier, :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 'a regular user not be able to edit a notification' do @notification = AdminNotificationsPlugin::Notification.create( :target => @community, :message => "Message", :active => true, :type => "AdminNotificationsPlugin::DangerNotification" ) post :edit, :profile => @community.identifier, :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 'a profile admin be able to destroy a notification' do @community.add_admin(@person) @notification = AdminNotificationsPlugin::Notification.create( :target => @community, :message => "Message", :active => true, :type => "AdminNotificationsPlugin::DangerNotification" ) delete :destroy, :profile => @community.identifier, :id => @notification.id assert_nil AdminNotificationsPlugin::Notification.find_by_id(@notification.id) end should 'a regular user not be able to destroy a notification' do @notification = AdminNotificationsPlugin::Notification.create( :target => @community, :message => "Message", :active => true, :type => "AdminNotificationsPlugin::DangerNotification" ) delete :destroy, :profile => @community.identifier, :id => @notification.id assert_redirected_to :root assert_not_nil AdminNotificationsPlugin::Notification.find_by_id(@notification.id) end should 'a profile admin be able to change Notification status' do @community.add_admin(@person) @notification = AdminNotificationsPlugin::Notification.create( :target => @community, :message => "Message", :active => true, :type => "AdminNotificationsPlugin::DangerNotification" ) post :change_status, :profile => @community.identifier, :id => @notification.id assert_redirected_to :action => 'index' @notification.reload assert !@notification.active end should 'a regular user not be able to change Notification status' do @notification = AdminNotificationsPlugin::Notification.create( :target => @community, :message => "Message", :active => true, :type => "AdminNotificationsPlugin::DangerNotification" ) post :change_status, :profile => @community.identifier, :id => @notification.id assert_redirected_to :root @notification.reload assert @notification.active end end |