##// END OF EJS Templates
Replace Date.today with User.current.today (#22320)....
Replace Date.today with User.current.today (#22320). Depending on the offset between a user's configured timezone and the server timezone, Date.today may be more or less often wrong from the user's perspective, leading to things like issues marked as overdue too early or too late, or yesterday / tomorrow being displayed / selected where 'today' is intended. A test case illustrating the problem with Issue#overdue? is included Patch by Jens Kraemer. git-svn-id: http://svn.redmine.org/redmine/trunk@15379 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14856:cda9c63d9c21
r14997:ed50d42210ea
Show More
mail_handler_controller_test.rb
96 lines | 3.2 KiB | text/x-ruby | RubyLexer
/ test / functional / mail_handler_controller_test.rb
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711 # Redmine - project management software
Jean-Philippe Lang
Updates copyright for 2016....
r14856 # Copyright (C) 2006-2016 Jean-Philippe Lang
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 #
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711 #
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711 #
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Jean-Baptiste Barth
Use absolute paths in test/**/* requires for Ruby 1.9.2 compatibility. #4050...
r4395 require File.expand_path('../../test_helper', __FILE__)
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570
Eric Davis
Upgraded to Rails 2.3.4 (#3597)...
r2773 class MailHandlerControllerTest < ActionController::TestCase
Jean-Philippe Lang
Add support for multiple email addresses per user (#4244)....
r13504 fixtures :users, :email_addresses, :projects, :enabled_modules, :roles, :members, :member_roles, :issues, :issue_statuses,
Jean-Baptiste Barth
Fixed test/functional/mail_handler_controller_test.rb breaking when run alone (#12285)...
r10561 :trackers, :projects_trackers, :enumerations
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 FIXTURES_PATH = File.dirname(__FILE__) + '/../fixtures/mail_handler'
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 def setup
User.current = nil
end
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 def test_should_create_issue
# Enable API and set a key
Setting.mail_handler_api_enabled = 1
Setting.mail_handler_api_key = 'secret'
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711
Jean-Philippe Lang
Adds tests for MailHandler....
r7975 assert_difference 'Issue.count' do
post :index, :key => 'secret', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml'))
end
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 assert_response 201
end
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711
Jean-Philippe Lang
Adds private issue option to receiving emails (#8424)....
r13880 def test_should_create_issue_with_options
# Enable API and set a key
Setting.mail_handler_api_enabled = 1
Setting.mail_handler_api_key = 'secret'
assert_difference 'Issue.count' do
post :index, :key => 'secret',
:email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')),
:issue => {:is_private => '1'}
end
assert_response 201
issue = Issue.order(:id => :desc).first
assert_equal true, issue.is_private
end
Jean-Philippe Lang
Adds tests for MailHandler....
r7975 def test_should_respond_with_422_if_not_created
Project.find('onlinestore').destroy
Setting.mail_handler_api_enabled = 1
Setting.mail_handler_api_key = 'secret'
assert_no_difference 'Issue.count' do
post :index, :key => 'secret', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml'))
end
assert_response 422
end
def test_should_not_allow_with_api_disabled
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 # Disable API
Setting.mail_handler_api_enabled = 0
Setting.mail_handler_api_key = 'secret'
Toshi MARUYAMA
remove trailing white-spaces from test/functional/mail_handler_controller_test.rb....
r6711
Jean-Philippe Lang
Adds tests for MailHandler....
r7975 assert_no_difference 'Issue.count' do
post :index, :key => 'secret', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml'))
end
assert_response 403
end
def test_should_not_allow_with_wrong_key
Setting.mail_handler_api_enabled = 1
Setting.mail_handler_api_key = 'secret'
assert_no_difference 'Issue.count' do
post :index, :key => 'wrong', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml'))
end
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 assert_response 403
end
Jean-Philippe Lang
Adds a form to manually submit an email to the mail handler....
r13932
def test_new
Setting.mail_handler_api_enabled = 1
Setting.mail_handler_api_key = 'secret'
get :new, :key => 'secret'
assert_response :success
end
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 end