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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
449e8298
Commit
449e8298
authored
May 06, 2020
by
Patrick Derichs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add StateNote synthetic note
parent
4f2b8f90
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
0 deletions
+48
-0
app/models/state_note.rb
app/models/state_note.rb
+19
-0
spec/models/state_note_spec.rb
spec/models/state_note_spec.rb
+29
-0
No files found.
app/models/state_note.rb
0 → 100644
View file @
449e8298
# frozen_string_literal: true
class
StateNote
<
SyntheticNote
def
self
.
from_event
(
event
,
resource:
nil
,
resource_parent:
nil
)
attrs
=
note_attributes
(
event
.
state
,
event
,
resource
,
resource_parent
)
StateNote
.
new
(
attrs
)
end
def
note_html
@note_html
||=
"<p dir=
\"
auto
\"
>
#{
note_text
(
html:
true
)
}
</p>"
end
private
def
note_text
(
html:
false
)
event
.
state
end
end
spec/models/state_note_spec.rb
0 → 100644
View file @
449e8298
# frozen_string_literal: true
require
'spec_helper'
describe
StateNote
do
describe
'.from_event'
do
let_it_be
(
:author
)
{
create
(
:user
)
}
let_it_be
(
:project
)
{
create
(
:project
,
:repository
)
}
let_it_be
(
:noteable
)
{
create
(
:issue
,
author:
author
,
project:
project
)
}
ResourceStateEvent
.
states
.
each
do
|
state
,
_value
|
context
"with event state
#{
state
}
"
do
let_it_be
(
:event
)
{
create
(
:resource_state_event
,
issue:
noteable
,
state:
state
,
created_at:
'2020-02-05'
)
}
subject
{
described_class
.
from_event
(
event
,
resource:
noteable
,
resource_parent:
project
)
}
it_behaves_like
'a system note'
,
exclude_project:
true
do
let
(
:action
)
{
state
.
to_s
}
end
it
'contains the expected values'
do
expect
(
subject
.
author
).
to
eq
(
author
)
expect
(
subject
.
created_at
).
to
eq
(
event
.
created_at
)
expect
(
subject
.
note_html
).
to
eq
(
"<p dir=
\"
auto
\"
>
#{
state
}
</p>"
)
end
end
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