BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
9e3153db
Unverified
Commit
9e3153db
authored
Dec 18, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove not related spec changes
parent
676b79b9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
43 additions
and
43 deletions
+43
-43
build_message_spec.rb
...odels/project_services/chat_message/build_message_spec.rb
+4
-4
issue_message_spec.rb
...odels/project_services/chat_message/issue_message_spec.rb
+5
-5
merge_message_spec.rb
...odels/project_services/chat_message/merge_message_spec.rb
+6
-6
note_message_spec.rb
...models/project_services/chat_message/note_message_spec.rb
+11
-11
push_message_spec.rb
...models/project_services/chat_message/push_message_spec.rb
+13
-13
wiki_page_message_spec.rb
...s/project_services/chat_message/wiki_page_message_spec.rb
+4
-4
No files found.
spec/models/project_services/chat_message/build_message_spec.rb
View file @
9e3153db
...
...
@@ -10,7 +10,7 @@ describe ChatMessage::BuildMessage do
tag:
false
,
project_name:
'project_name'
,
project_url:
'
http://
example.gitlab.com'
,
project_url:
'example.gitlab.com'
,
commit:
{
status:
status
,
...
...
@@ -48,10 +48,10 @@ describe ChatMessage::BuildMessage do
end
def
build_message
(
status_text
=
status
)
"<
http://
example.gitlab.com|project_name>:"
\
" Commit <
http://
example.gitlab.com/commit/"
\
"<example.gitlab.com|project_name>:"
\
" Commit <example.gitlab.com/commit/"
\
"97de212e80737a608d939f648d959671fb0a0142/builds|97de212e>"
\
" of <
http://
example.gitlab.com/commits/develop|develop> branch"
\
" of <example.gitlab.com/commits/develop|develop> branch"
\
" by hacker
#{
status_text
}
in
#{
duration
}
#{
'second'
.
pluralize
(
duration
)
}
"
end
end
spec/models/project_services/chat_message/issue_message_spec.rb
View file @
9e3153db
...
...
@@ -10,14 +10,14 @@ describe ChatMessage::IssueMessage, models: true do
username:
'test.user'
},
project_name:
'project_name'
,
project_url:
'
http://
somewhere.com'
,
project_url:
'somewhere.com'
,
object_attributes:
{
title:
'Issue title'
,
id:
10
,
iid:
100
,
assignee_id:
1
,
url:
'
http://url.com
'
,
url:
'
url
'
,
action:
'open'
,
state:
'opened'
,
description:
'issue description'
...
...
@@ -40,11 +40,11 @@ describe ChatMessage::IssueMessage, models: true do
context
'open'
do
it
'returns a message regarding opening of issues'
do
expect
(
subject
.
pretext
).
to
eq
(
'
[<http://somewhere.com|
project_name>] Issue opened by test.user'
)
'
<somewhere.com|[
project_name>] Issue opened by test.user'
)
expect
(
subject
.
attachments
).
to
eq
([
{
title:
"#100 Issue title"
,
title_link:
"
http://url.com
"
,
title_link:
"
url
"
,
text:
"issue description"
,
color:
color
,
}
...
...
@@ -60,7 +60,7 @@ describe ChatMessage::IssueMessage, models: true do
it
'returns a message regarding closing of issues'
do
expect
(
subject
.
pretext
).
to
eq
(
'
[<http://somewhere.com|project_name>] Issue <http://url.com
|#100 Issue title> closed by test.user'
)
'
<somewhere.com|[project_name>] Issue <url
|#100 Issue title> closed by test.user'
)
expect
(
subject
.
attachments
).
to
be_empty
end
end
...
...
spec/models/project_services/chat_message/merge_message_spec.rb
View file @
9e3153db
...
...
@@ -10,14 +10,14 @@ describe ChatMessage::MergeMessage, models: true do
username:
'test.user'
},
project_name:
'project_name'
,
project_url:
'
http://
somewhere.com'
,
project_url:
'somewhere.com'
,
object_attributes:
{
title:
"Issue title
\n
Second line"
,
id:
10
,
iid:
100
,
assignee_id:
1
,
url:
'
http://url.com
'
,
url:
'
url
'
,
state:
'opened'
,
description:
'issue description'
,
source_branch:
'source_branch'
,
...
...
@@ -31,8 +31,8 @@ describe ChatMessage::MergeMessage, models: true do
context
'open'
do
it
'returns a message regarding opening of merge requests'
do
expect
(
subject
.
pretext
).
to
eq
(
'test.user opened <
http://
somewhere.com/merge_requests/100|merge request !100> '
\
'in <
http://
somewhere.com|project_name>: *Issue title*'
)
'test.user opened <somewhere.com/merge_requests/100|merge request !100> '
\
'in <somewhere.com|project_name>: *Issue title*'
)
expect
(
subject
.
attachments
).
to
be_empty
end
end
...
...
@@ -43,8 +43,8 @@ describe ChatMessage::MergeMessage, models: true do
end
it
'returns a message regarding closing of merge requests'
do
expect
(
subject
.
pretext
).
to
eq
(
'test.user closed <
http://
somewhere.com/merge_requests/100|merge request !100> '
\
'in <
http://
somewhere.com|project_name>: *Issue title*'
)
'test.user closed <somewhere.com/merge_requests/100|merge request !100> '
\
'in <somewhere.com|project_name>: *Issue title*'
)
expect
(
subject
.
attachments
).
to
be_empty
end
end
...
...
spec/models/project_services/chat_message/note_message_spec.rb
View file @
9e3153db
...
...
@@ -11,15 +11,15 @@ describe ChatMessage::NoteMessage, models: true do
avatar_url:
'http://fakeavatar'
},
project_name:
'project_name'
,
project_url:
'
http://
somewhere.com'
,
project_url:
'somewhere.com'
,
repository:
{
name:
'project_name'
,
url:
'
http://
somewhere.com'
,
url:
'somewhere.com'
,
},
object_attributes:
{
id:
10
,
note:
'comment on a commit'
,
url:
'
http://url.com
'
,
url:
'
url
'
,
noteable_type:
'Commit'
}
}
...
...
@@ -37,8 +37,8 @@ describe ChatMessage::NoteMessage, models: true do
it
'returns a message regarding notes on commits'
do
message
=
described_class
.
new
(
@args
)
expect
(
message
.
pretext
).
to
eq
(
"test.user <
http://url.com
|commented on "
\
"commit 5f163b2b> in <
http://
somewhere.com|project_name>: "
\
expect
(
message
.
pretext
).
to
eq
(
"test.user <
url
|commented on "
\
"commit 5f163b2b> in <somewhere.com|project_name>: "
\
"*Added a commit message*"
)
expected_attachments
=
[
{
...
...
@@ -63,8 +63,8 @@ describe ChatMessage::NoteMessage, models: true do
it
'returns a message regarding notes on a merge request'
do
message
=
described_class
.
new
(
@args
)
expect
(
message
.
pretext
).
to
eq
(
"test.user <
http://url.com
|commented on "
\
"merge request !30> in <
http://
somewhere.com|project_name>: "
\
expect
(
message
.
pretext
).
to
eq
(
"test.user <
url
|commented on "
\
"merge request !30> in <somewhere.com|project_name>: "
\
"*merge request title*"
)
expected_attachments
=
[
{
...
...
@@ -90,8 +90,8 @@ describe ChatMessage::NoteMessage, models: true do
it
'returns a message regarding notes on an issue'
do
message
=
described_class
.
new
(
@args
)
expect
(
message
.
pretext
).
to
eq
(
"test.user <
http://url.com
|commented on "
\
"issue #20> in <
http://
somewhere.com|project_name>: "
\
"test.user <
url
|commented on "
\
"issue #20> in <somewhere.com|project_name>: "
\
"*issue title*"
)
expected_attachments
=
[
{
...
...
@@ -115,8 +115,8 @@ describe ChatMessage::NoteMessage, models: true do
it
'returns a message regarding notes on a project snippet'
do
message
=
described_class
.
new
(
@args
)
expect
(
message
.
pretext
).
to
eq
(
"test.user <
http://url.com
|commented on "
\
"snippet #5> in <
http://
somewhere.com|project_name>: "
\
expect
(
message
.
pretext
).
to
eq
(
"test.user <
url
|commented on "
\
"snippet #5> in <somewhere.com|project_name>: "
\
"*snippet title*"
)
expected_attachments
=
[
{
...
...
spec/models/project_services/chat_message/push_message_spec.rb
View file @
9e3153db
...
...
@@ -10,7 +10,7 @@ describe ChatMessage::PushMessage, models: true do
project_name:
'project_name'
,
ref:
'refs/heads/master'
,
user_name:
'test.user'
,
project_url:
'
http://url.com
'
project_url:
'
url
'
}
end
...
...
@@ -19,20 +19,20 @@ describe ChatMessage::PushMessage, models: true do
context
'push'
do
before
do
args
[
:commits
]
=
[
{
message:
'message1'
,
url:
'
http://url1.com
'
,
id:
'abcdefghijkl'
,
author:
{
name:
'author1'
}
},
{
message:
'message2'
,
url:
'
http://url2.com
'
,
id:
'123456789012'
,
author:
{
name:
'author2'
}
},
{
message:
'message1'
,
url:
'
url1
'
,
id:
'abcdefghijkl'
,
author:
{
name:
'author1'
}
},
{
message:
'message2'
,
url:
'
url2
'
,
id:
'123456789012'
,
author:
{
name:
'author2'
}
},
]
end
it
'returns a message regarding pushes'
do
expect
(
subject
.
pretext
).
to
eq
(
'test.user pushed to branch <
http://url.com
/commits/master|master> of '
\
'<
http://url.com|project_name> (<http://url.com
/compare/before...after|Compare changes>)'
'test.user pushed to branch <
url
/commits/master|master> of '
\
'<
url|project_name> (<url
/compare/before...after|Compare changes>)'
)
expect
(
subject
.
attachments
).
to
eq
([
{
text:
"<
http://url1.com
|abcdefgh>: message1 - author1
\n
"
\
"<
http://url2.com
|12345678>: message2 - author2"
,
text:
"<
url1
|abcdefgh>: message1 - author1
\n
"
\
"<
url2
|12345678>: message2 - author2"
,
color:
color
,
}
])
...
...
@@ -47,14 +47,14 @@ describe ChatMessage::PushMessage, models: true do
project_name:
'project_name'
,
ref:
'refs/tags/new_tag'
,
user_name:
'test.user'
,
project_url:
'
http://url.com
'
project_url:
'
url
'
}
end
it
'returns a message regarding pushes'
do
expect
(
subject
.
pretext
).
to
eq
(
'test.user pushed new tag '
\
'<http://url.com
/commits/new_tag|new_tag> to '
\
'<http://url.com
|project_name>'
)
'<url
/commits/new_tag|new_tag> to '
\
'<url
|project_name>'
)
expect
(
subject
.
attachments
).
to
be_empty
end
end
...
...
@@ -66,8 +66,8 @@ describe ChatMessage::PushMessage, models: true do
it
'returns a message regarding a new branch'
do
expect
(
subject
.
pretext
).
to
eq
(
'test.user pushed new branch <
http://url.com
/commits/master|master> to '
\
'<
http://url.com
|project_name>'
'test.user pushed new branch <
url
/commits/master|master> to '
\
'<
url
|project_name>'
)
expect
(
subject
.
attachments
).
to
be_empty
end
...
...
@@ -80,7 +80,7 @@ describe ChatMessage::PushMessage, models: true do
it
'returns a message regarding a removed branch'
do
expect
(
subject
.
pretext
).
to
eq
(
'test.user removed branch master from <
http://url.com
|project_name>'
'test.user removed branch master from <
url
|project_name>'
)
expect
(
subject
.
attachments
).
to
be_empty
end
...
...
spec/models/project_services/chat_message/wiki_page_message_spec.rb
View file @
9e3153db
...
...
@@ -10,10 +10,10 @@ describe ChatMessage::WikiPageMessage, models: true do
username:
'test.user'
},
project_name:
'project_name'
,
project_url:
'
http://
somewhere.com'
,
project_url:
'somewhere.com'
,
object_attributes:
{
title:
'Wiki page title'
,
url:
'
http://url.com
'
,
url:
'
url
'
,
content:
'Wiki page description'
}
}
...
...
@@ -25,7 +25,7 @@ describe ChatMessage::WikiPageMessage, models: true do
it
'returns a message that a new wiki page was created'
do
expect
(
subject
.
pretext
).
to
eq
(
'test.user created <
http://url.com|wiki page> in <http://
somewhere.com|project_name>: '
\
'test.user created <
url|wiki page> in <
somewhere.com|project_name>: '
\
'*Wiki page title*'
)
end
end
...
...
@@ -35,7 +35,7 @@ describe ChatMessage::WikiPageMessage, models: true do
it
'returns a message that a wiki page was updated'
do
expect
(
subject
.
pretext
).
to
eq
(
'test.user edited <
http://url.com|wiki page> in <http://
somewhere.com|project_name>: '
\
'test.user edited <
url|wiki page> in <
somewhere.com|project_name>: '
\
'*Wiki page title*'
)
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