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
Boxiang Sun
gitlab-ce
Commits
efbb9501
Commit
efbb9501
authored
Dec 12, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added test
parent
210e90df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
0 deletions
+81
-0
spec/javascripts/diffs/store/mutations_spec.js
spec/javascripts/diffs/store/mutations_spec.js
+81
-0
No files found.
spec/javascripts/diffs/store/mutations_spec.js
View file @
efbb9501
...
...
@@ -277,6 +277,87 @@ describe('DiffsStoreMutations', () => {
expect
(
state
.
diffFiles
[
0
].
highlighted_diff_lines
[
0
].
discussions
[
0
].
id
).
toEqual
(
1
);
});
it
(
'
updates existing discussion
'
,
()
=>
{
const
diffPosition
=
{
base_sha
:
'
ed13df29948c41ba367caa757ab3ec4892509910
'
,
head_sha
:
'
b921914f9a834ac47e6fd9420f78db0f83559130
'
,
new_line
:
null
,
new_path
:
'
500-lines-4.txt
'
,
old_line
:
5
,
old_path
:
'
500-lines-4.txt
'
,
start_sha
:
'
ed13df29948c41ba367caa757ab3ec4892509910
'
,
};
const
state
=
{
latestDiff
:
true
,
diffFiles
:
[
{
file_hash
:
'
ABC
'
,
parallel_diff_lines
:
[
{
left
:
{
line_code
:
'
ABC_1
'
,
discussions
:
[],
},
right
:
{
line_code
:
'
ABC_1
'
,
discussions
:
[],
},
},
],
highlighted_diff_lines
:
[
{
line_code
:
'
ABC_1
'
,
discussions
:
[],
},
],
},
],
};
const
discussion
=
{
id
:
1
,
line_code
:
'
ABC_1
'
,
diff_discussion
:
true
,
resolvable
:
true
,
original_position
:
diffPosition
,
position
:
diffPosition
,
diff_file
:
{
file_hash
:
state
.
diffFiles
[
0
].
file_hash
,
},
};
const
diffPositionByLineCode
=
{
ABC_1
:
diffPosition
,
};
mutations
[
types
.
SET_LINE_DISCUSSIONS_FOR_FILE
](
state
,
{
discussion
,
diffPositionByLineCode
,
});
expect
(
state
.
diffFiles
[
0
].
parallel_diff_lines
[
0
].
left
.
discussions
.
length
).
toEqual
(
1
);
expect
(
state
.
diffFiles
[
0
].
parallel_diff_lines
[
0
].
left
.
discussions
[
0
].
id
).
toEqual
(
1
);
expect
(
state
.
diffFiles
[
0
].
parallel_diff_lines
[
0
].
right
.
discussions
).
toEqual
([]);
expect
(
state
.
diffFiles
[
0
].
highlighted_diff_lines
[
0
].
discussions
.
length
).
toEqual
(
1
);
expect
(
state
.
diffFiles
[
0
].
highlighted_diff_lines
[
0
].
discussions
[
0
].
id
).
toEqual
(
1
);
mutations
[
types
.
SET_LINE_DISCUSSIONS_FOR_FILE
](
state
,
{
discussion
:
{
...
discussion
,
resolved
:
true
,
notes
:
[
'
test
'
],
},
diffPositionByLineCode
,
});
expect
(
state
.
diffFiles
[
0
].
parallel_diff_lines
[
0
].
left
.
discussions
[
0
].
notes
.
length
).
toBe
(
1
);
expect
(
state
.
diffFiles
[
0
].
highlighted_diff_lines
[
0
].
discussions
[
0
].
notes
.
length
).
toBe
(
1
);
expect
(
state
.
diffFiles
[
0
].
parallel_diff_lines
[
0
].
left
.
discussions
[
0
].
resolved
).
toBe
(
true
);
expect
(
state
.
diffFiles
[
0
].
highlighted_diff_lines
[
0
].
discussions
[
0
].
resolved
).
toBe
(
true
);
});
it
(
'
should add legacy discussions to the given line
'
,
()
=>
{
const
diffPosition
=
{
base_sha
:
'
ed13df29948c41ba367caa757ab3ec4892509910
'
,
...
...
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