-
Notifications
You must be signed in to change notification settings - Fork 3
/
init.rb
120 lines (111 loc) · 4.12 KB
/
init.rb
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
require 'redmine'
require 'issue_patch'
require 'project_patch'
require 'version_patch'
require 'user_patch'
require 'redcase_override'
require 'dispatcher'
Redmine::Plugin.register :redcase do
name 'Redcase'
description 'Test cases management plugin for Redmine'
author 'QA Project'
version '1.0 alpha 0.149'
permission :view_test_cases,
:redcase => [
:index,
:execlist,
:test_suite_manager,
:reassign_test_case,
:execution_suite_manager,
:copy_test_case_to_exec,
:delete_test_case_from_execution_suite,
:test_case_to_obsolete,
:get_test_case,
:execute,
:get_executions,
:export_to_excel,
:export_to_excel2,
:export_to_rtf,
:update_environment,
:update_exelists,
:graph,
:get_graph,
:update_combos,
:update_combos2,
:update_exelists2,
:get_advanced_execution,
:get_attachment_urls
]
permission :edit_test_cases,
:redcase => [
:index,
:execlist,
:test_suite_manager,
:reassign_test_case,
:execution_suite_manager,
:copy_test_case_to_exec,
:delete_test_case_from_execution_suite,
:test_case_to_obsolete,
:get_test_case,
:execute,
:get_executions,
:export_to_excel,
:export_to_excel2,
:export_to_rtf,
:update_environment,
:update_exelists,
:graph,
:get_graph,
:update_combos,
:update_combos2,
:update_exelists2,
:get_advanced_execution,
:get_attachment_urls
]
permission :execute_test_cases,
:redcase => [
:index,
:execlist,
:test_suite_manager,
:reassign_test_case,
:execution_suite_manager,
:copy_test_case_to_exec,
:delete_test_case_from_execution_suite,
:test_case_to_obsolete,
:get_test_case,
:execute,
:get_executions,
:export_to_excel,
:export_to_excel2,
:export_to_rtf,
:update_environment,
:update_exelists,
:graph,
:get_graph,
:update_combos,
:update_combos2,
:update_exelists2,
:get_advanced_execution,
:get_attachment_urls
]
menu :project_menu,
:redcase,
{
:controller => 'redcase',
:action => 'index'
},
{
:param => :project_id,
:if => proc { |p|
(User.current.allowed_to?(:view_test_cases, p) or User.current.allowed_to?(:edit_test_cases, p)) and (p.trackers.select { |t| t.name == 'Test case' }.length > 0)
},
:caption => :label_test_cases,
:after => :new_issue
}
Dispatcher.to_prepare :redcase do
Issue.send :include, IssuePatch
Project.send :include, ProjectPatch
Version.send :include, VersionPatch
User.send :include, UserPatch
end
end