Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
16c720fd
Commit
16c720fd
authored
Feb 11, 2013
by
Andrew8xx8
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issues helper improved
parent
f1360084
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
1 deletion
+61
-1
app/helpers/issues_helper.rb
app/helpers/issues_helper.rb
+7
-1
spec/helpers/issues_helper_spec.rb
spec/helpers/issues_helper_spec.rb
+54
-0
No files found.
app/helpers/issues_helper.rb
View file @
16c720fd
...
...
@@ -42,15 +42,21 @@ module IssuesHelper
end
def
url_for_issue
(
issue_id
)
return
""
if
@project
.
nil?
if
@project
.
used_default_issues_tracker?
url
=
project_issue_url
project_id:
@project
,
id:
issue_id
else
url
=
Settings
[
:issues_tracker
][
@project
.
issues_tracker
][
"issues_url"
]
url
.
gsub
(
':id'
,
issue_id
.
to_s
).
gsub
(
':project_id'
,
@project
.
id
.
to_s
)
url
.
gsub
(
':id'
,
issue_id
.
to_s
)
.
gsub
(
':project_id'
,
@project
.
id
.
to_s
)
.
gsub
(
':issues_tracker_id'
,
@project
.
issues_tracker_id
.
to_s
)
end
end
def
title_for_issue
(
issue_id
)
return
""
if
@project
.
nil?
if
@project
.
used_default_issues_tracker?
&&
issue
=
@project
.
issues
.
where
(
id:
issue_id
).
first
issue
.
title
else
...
...
spec/helpers/issues_helper_spec.rb
0 → 100644
View file @
16c720fd
require
"spec_helper"
describe
IssuesHelper
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
let
(
:ext_project
)
{
create
(
:redmine_project
)
}
describe
:title_for_issue
do
it
"should return issue title if used internal tracker"
do
@project
=
project
title_for_issue
(
issue
.
id
).
should
eq
issue
.
title
end
it
"should always return empty string if used external tracker"
do
@project
=
ext_project
title_for_issue
(
rand
(
100
)).
should
eq
""
end
it
"should always return empty string if project nil"
do
@project
=
nil
title_for_issue
(
rand
(
100
)).
should
eq
""
end
end
describe
:url_for_issue
do
let
(
:issue_id
)
{
3
}
let
(
:issues_url
)
{
"http://redmine/:project_id/:issues_tracker_id/:id"
}
let
(
:ext_expected
)
do
issues_url
.
gsub
(
':id'
,
issue_id
.
to_s
)
.
gsub
(
':project_id'
,
ext_project
.
id
.
to_s
)
.
gsub
(
':issues_tracker_id'
,
ext_project
.
issues_tracker_id
.
to_s
)
end
let
(
:int_expected
)
{
polymorphic_path
([
project
,
issue
])
}
it
"should return internal path if used internal tracker"
do
@project
=
project
url_for_issue
(
issue
.
id
).
should
match
(
int_expected
)
end
it
"should return path to external tracker"
do
@project
=
ext_project
Settings
[
:issues_tracker
][
ext_project
.
issues_tracker
][
"issues_url"
]
=
issues_url
url_for_issue
(
issue_id
).
should
match
(
ext_expected
)
end
it
"should return empty string if project nil"
do
@project
=
nil
url_for_issue
(
issue
.
id
).
should
eq
""
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment