diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-01-26 14:36:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-01-26 14:36:02 +0000 |
commit | 9c1077841eb0747b875794eb468a3aa881f97ff5 (patch) | |
tree | b07c362a867d7f38d7e4f5bc222f07bab0a6a618 /test/ui/issues_test.rb | |
parent | 08826ed0b65ca997046c735e24d185869eeaa30d (diff) | |
download | redmine-9c1077841eb0747b875794eb468a3aa881f97ff5.tar.gz redmine-9c1077841eb0747b875794eb468a3aa881f97ff5.zip |
Adds first Capybara tests (#12822).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11270 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/ui/issues_test.rb')
-rw-r--r-- | test/ui/issues_test.rb | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/test/ui/issues_test.rb b/test/ui/issues_test.rb new file mode 100644 index 000000000..43f3536ac --- /dev/null +++ b/test/ui/issues_test.rb @@ -0,0 +1,68 @@ +# Redmine - project management software +# Copyright (C) 2006-2013 Jean-Philippe Lang +# +# 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. +# +# 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. +# +# 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. + +require File.expand_path('../base', __FILE__) + +class Redmine::UiTest::IssuesTest < Redmine::UiTest::Base + fixtures :projects, :users, :roles, :members, :member_roles, + :trackers, :projects_trackers, :enabled_modules, :issue_statuses, :issues, + :enumerations, :custom_fields, :custom_values, :custom_fields_trackers + + # create an issue + def test_add_issue + log_user('jsmith', 'jsmith') + visit new_issue_path(:project_id => 1) + within('form#issue-form') do + select 'Bug', :from => 'Tracker' + select 'Low', :from => 'Priority' + fill_in 'Subject', :with => 'new test issue' + fill_in 'Description', :with => 'new issue' + select '0 %', :from => 'Done' + fill_in 'Due date', :with => '' + select '', :from => 'Assignee' + fill_in 'Searchable field', :with => 'Value for field 2' + # click_button 'Create' would match both 'Create' and 'Create and continue' buttons + find('input[name=commit]').click + end + + # find created issue + issue = Issue.find_by_subject("new test issue") + assert_kind_of Issue, issue + + # check redirection + find 'div#flash_notice', :visible => true, :text => "Issue \##{issue.id} created." + assert_equal issue_path(:id => issue), current_path + + # check issue attributes + assert_equal 'jsmith', issue.author.login + assert_equal 1, issue.project.id + assert_equal IssueStatus.find_by_name('New'), issue.status + assert_equal Tracker.find_by_name('Bug'), issue.tracker + assert_equal IssuePriority.find_by_name('Low'), issue.priority + assert_equal 'Value for field 2', issue.custom_field_value(CustomField.find_by_name('Searchable field')) + end + + def test_preview_issue_description + log_user('jsmith', 'jsmith') + visit new_issue_path(:project_id => 1) + within('form#issue-form') do + fill_in 'Description', :with => 'new issue description' + click_link 'Preview' + end + find 'div#preview fieldset', :visible => true, :text => 'new issue description' + end +end |