To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 33 / 330c3139ce88daeba1ec5a385dfead443884905c.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (2.81 KB)
| 1 | 1296:038ba2d95de8 | Chris | # Redmine - project management software |
|---|---|---|---|
| 2 | # Copyright (C) 2006-2012 Jean-Philippe Lang |
||
| 3 | # |
||
| 4 | # This program is free software; you can redistribute it and/or |
||
| 5 | # modify it under the terms of the GNU General Public License |
||
| 6 | # as published by the Free Software Foundation; either version 2 |
||
| 7 | # of the License, or (at your option) any later version. |
||
| 8 | # |
||
| 9 | # This program is distributed in the hope that it will be useful, |
||
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 12 | # GNU General Public License for more details. |
||
| 13 | # |
||
| 14 | # You should have received a copy of the GNU General Public License |
||
| 15 | # along with this program; if not, write to the Free Software |
||
| 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||
| 17 | |||
| 18 | require File.expand_path('../../test_helper', __FILE__)
|
||
| 19 | require 'mail_handler_controller' |
||
| 20 | |||
| 21 | # Re-raise errors caught by the controller. |
||
| 22 | class MailHandlerController; def rescue_action(e) raise e end; end |
||
| 23 | |||
| 24 | class MailHandlerControllerTest < ActionController::TestCase |
||
| 25 | fixtures :users, :projects, :enabled_modules, :roles, :members, :member_roles, :issues, :issue_statuses, |
||
| 26 | :trackers, :projects_trackers, :enumerations |
||
| 27 | |||
| 28 | FIXTURES_PATH = File.dirname(__FILE__) + '/../fixtures/mail_handler' |
||
| 29 | |||
| 30 | def setup |
||
| 31 | @controller = MailHandlerController.new |
||
| 32 | @request = ActionController::TestRequest.new |
||
| 33 | @response = ActionController::TestResponse.new |
||
| 34 | User.current = nil |
||
| 35 | end |
||
| 36 | |||
| 37 | def test_should_create_issue |
||
| 38 | # Enable API and set a key |
||
| 39 | Setting.mail_handler_api_enabled = 1 |
||
| 40 | Setting.mail_handler_api_key = 'secret' |
||
| 41 | |||
| 42 | assert_difference 'Issue.count' do |
||
| 43 | post :index, :key => 'secret', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')) |
||
| 44 | end |
||
| 45 | assert_response 201 |
||
| 46 | end |
||
| 47 | |||
| 48 | def test_should_respond_with_422_if_not_created |
||
| 49 | Project.find('onlinestore').destroy
|
||
| 50 | |||
| 51 | Setting.mail_handler_api_enabled = 1 |
||
| 52 | Setting.mail_handler_api_key = 'secret' |
||
| 53 | |||
| 54 | assert_no_difference 'Issue.count' do |
||
| 55 | post :index, :key => 'secret', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')) |
||
| 56 | end |
||
| 57 | assert_response 422 |
||
| 58 | end |
||
| 59 | |||
| 60 | def test_should_not_allow_with_api_disabled |
||
| 61 | # Disable API |
||
| 62 | Setting.mail_handler_api_enabled = 0 |
||
| 63 | Setting.mail_handler_api_key = 'secret' |
||
| 64 | |||
| 65 | assert_no_difference 'Issue.count' do |
||
| 66 | post :index, :key => 'secret', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')) |
||
| 67 | end |
||
| 68 | assert_response 403 |
||
| 69 | end |
||
| 70 | |||
| 71 | def test_should_not_allow_with_wrong_key |
||
| 72 | # Disable API |
||
| 73 | Setting.mail_handler_api_enabled = 1 |
||
| 74 | Setting.mail_handler_api_key = 'secret' |
||
| 75 | |||
| 76 | assert_no_difference 'Issue.count' do |
||
| 77 | post :index, :key => 'wrong', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')) |
||
| 78 | end |
||
| 79 | assert_response 403 |
||
| 80 | end |
||
| 81 | end |