tasks_controller_test.rb
1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
require File.dirname(__FILE__) + '/../test_helper'
require 'tasks_controller'
class TasksController; def rescue_action(e) raise e end; end
class TasksControllerTest < Test::Unit::TestCase
noosfero_test :profile => 'testuser'
def setup
@controller = TasksController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
self.profile = create_user('testuser').person
@controller.stubs(:profile).returns(profile)
login_as 'testuser'
end
attr_accessor :profile
def test_local_files_reference
assert_local_files_reference
end
def test_valid_xhtml
assert_valid_xhtml
end
should 'list pending tasks' do
get :index
assert_response :success
assert_template 'index'
assert_kind_of Array, assigns(:tasks)
end
should 'list processed tasks' do
get :processed
assert_response :success
assert_template 'processed'
assert_kind_of Array, assigns(:tasks)
end
should 'be able to finish a task' do
t = profile.tasks.build; t.save!
post :close, :decision => 'finish', :id => t.id
assert_redirected_to :action => 'index'
t.reload
ok('task should be finished') { t.status == Task::Status::FINISHED }
end
should 'be able to cancel a task' do
t = profile.tasks.build; t.save!
post :close, :decision => 'cancel', :id => t.id
assert_redirected_to :action => 'index'
t.reload
ok('task should be cancelled') { t.status == Task::Status::CANCELLED }
end
should 'affiliate roles to user after finish add member task'
should 'display form to add members task'
should 'display all roles checked if target has no members'
should 'display member role checked if target has members'
end