-
Notifications
You must be signed in to change notification settings - Fork 11
/
init.rb
executable file
·112 lines (106 loc) · 3.56 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
require 'redmine'
require 'issue_patch'
require 'project_patch'
require 'version_patch'
require 'user_patch'
require 'redcase_override'
Redmine::Plugin.register :redcase do
name 'Redcase'
description 'Test cases management plugin for Redmine'
version '1.0 alpha 1.8'
author 'QA Project, Denis Savitsky'
author_url 'https://github.com/sadfuzzy'
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' },
:if => proc { |p|
(User.current.allowed_to?(:view_test_cases, p) ||
User.current.allowed_to?(:edit_test_cases, p)) &&
(p.trackers.select { |t| t.name == 'Test case' }.length > 0)
},
:caption => 'Test cases',
:after => :new_issue,
:param => :project_id
Rails.configuration.to_prepare do
Issue.send :include, IssuePatch
Project.send :include, ProjectPatch
Version.send :include, VersionPatch
User.send :include, UserPatch
end
end