To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / test / functional / .svn / text-base / mail_handler_controller_test.rb.svn-base @ 442:753f1380d6bc

History | View | Annotate | Download (1.99 KB)

1
# redMine - project management software
2
# Copyright (C) 2006-2008  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, :trackers, :enumerations
26
  
27
  FIXTURES_PATH = File.dirname(__FILE__) + '/../fixtures/mail_handler'
28
  
29
  def setup
30
    @controller = MailHandlerController.new
31
    @request    = ActionController::TestRequest.new
32
    @response   = ActionController::TestResponse.new
33
    User.current = nil
34
  end
35
  
36
  def test_should_create_issue
37
    # Enable API and set a key
38
    Setting.mail_handler_api_enabled = 1
39
    Setting.mail_handler_api_key = 'secret'
40
    
41
    post :index, :key => 'secret', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml'))
42
    assert_response 201
43
  end
44
  
45
  def test_should_not_allow
46
    # Disable API
47
    Setting.mail_handler_api_enabled = 0
48
    Setting.mail_handler_api_key = 'secret'
49
    
50
    post :index, :key => 'secret', :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml'))
51
    assert_response 403
52
  end
53
end