2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-03-29 01:45:30 +04:00
|
|
|
# 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.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
2010-08-18 19:01:35 +04:00
|
|
|
|
|
|
|
class PreviewsControllerTest < ActionController::TestCase
|
|
|
|
fixtures :all
|
|
|
|
|
|
|
|
def test_preview_new_issue
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
post :issue, :project_id => '1', :issue => {:description => 'Foo'}
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'preview'
|
|
|
|
assert_not_nil assigns(:description)
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2010-08-18 19:01:35 +04:00
|
|
|
def test_preview_issue_notes
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
post :issue, :project_id => '1', :id => 1, :issue => {:description => Issue.find(1).description}, :notes => 'Foo'
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'preview'
|
|
|
|
assert_not_nil assigns(:notes)
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-03-29 01:45:30 +04:00
|
|
|
def test_preview_journal_notes_for_update
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'preview'
|
|
|
|
assert_not_nil assigns(:notes)
|
|
|
|
assert_tag :p, :content => 'Foo'
|
|
|
|
end
|
2010-08-18 19:01:35 +04:00
|
|
|
|
2010-09-24 20:26:46 +04:00
|
|
|
def test_news
|
|
|
|
get :news, :project_id => 1,
|
|
|
|
:news => {:title => '',
|
|
|
|
:description => 'News description',
|
|
|
|
:summary => ''}
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'common/_preview'
|
|
|
|
assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
|
|
|
|
:content => /News description/
|
|
|
|
end
|
2010-08-18 19:01:35 +04:00
|
|
|
end
|