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
c9b057d1
Commit
c9b057d1
authored
Oct 30, 2020
by
Nikola Milojevic
Committed by
Bob Van Landuyt
Oct 30, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix logic for consume_relation in reader
- add param for mark_as_consumed
parent
8492a3dd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
25 deletions
+16
-25
lib/gitlab/import_export/json/ndjson_reader.rb
lib/gitlab/import_export/json/ndjson_reader.rb
+2
-7
lib/gitlab/import_export/project/sample/date_calculator.rb
lib/gitlab/import_export/project/sample/date_calculator.rb
+0
-1
lib/gitlab/import_export/project/sample/sample_data_relation_tree_restorer.rb
...port/project/sample/sample_data_relation_tree_restorer.rb
+5
-6
spec/lib/gitlab/import_export/json/ndjson_reader_spec.rb
spec/lib/gitlab/import_export/json/ndjson_reader_spec.rb
+8
-10
spec/lib/gitlab/import_export/project/sample/date_calculator_spec.rb
...tlab/import_export/project/sample/date_calculator_spec.rb
+1
-1
No files found.
lib/gitlab/import_export/json/ndjson_reader.rb
View file @
c9b057d1
...
@@ -29,9 +29,9 @@ module Gitlab
...
@@ -29,9 +29,9 @@ module Gitlab
json_decode
(
data
)
json_decode
(
data
)
end
end
def
consume_relation
(
importable_path
,
key
)
def
consume_relation
(
importable_path
,
key
,
mark_as_consumed:
true
)
Enumerator
.
new
do
|
documents
|
Enumerator
.
new
do
|
documents
|
next
unless
@consumed_relations
.
add?
(
"
#{
importable_path
}
/
#{
key
}
"
)
next
if
mark_as_consumed
&&
!
@consumed_relations
.
add?
(
"
#{
importable_path
}
/
#{
key
}
"
)
# This reads from `tree/project/merge_requests.ndjson`
# This reads from `tree/project/merge_requests.ndjson`
path
=
file_path
(
importable_path
,
"
#{
key
}
.ndjson"
)
path
=
file_path
(
importable_path
,
"
#{
key
}
.ndjson"
)
...
@@ -44,11 +44,6 @@ module Gitlab
...
@@ -44,11 +44,6 @@ module Gitlab
end
end
end
end
# TODO: Move clear logic into main comsume_relation method (see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/41699#note_430465330)
def
clear_consumed_relations
@consumed_relations
.
clear
end
private
private
def
json_decode
(
string
)
def
json_decode
(
string
)
...
...
lib/gitlab/import_export/project/sample/date_calculator.rb
View file @
c9b057d1
...
@@ -9,7 +9,6 @@ module Gitlab
...
@@ -9,7 +9,6 @@ module Gitlab
def
initialize
(
dates
)
def
initialize
(
dates
)
@dates
=
dates
.
dup
@dates
=
dates
.
dup
@dates
.
flatten!
@dates
.
compact!
@dates
.
compact!
@dates
.
sort!
@dates
.
sort!
@dates
.
map!
{
|
date
|
date
.
to_time
.
to_f
}
@dates
.
map!
{
|
date
|
date
.
to_time
.
to_f
}
...
...
lib/gitlab/import_export/project/sample/sample_data_relation_tree_restorer.rb
View file @
c9b057d1
...
@@ -30,13 +30,12 @@ module Gitlab
...
@@ -30,13 +30,12 @@ module Gitlab
data_hash
[
'due_date'
]
=
date_calculator
.
calculate_by_closest_date_to_average
(
data_hash
[
'due_date'
].
to_time
)
unless
data_hash
[
'due_date'
].
nil?
data_hash
[
'due_date'
]
=
date_calculator
.
calculate_by_closest_date_to_average
(
data_hash
[
'due_date'
].
to_time
)
unless
data_hash
[
'due_date'
].
nil?
end
end
# TODO: Move clear logic into main comsume_relation method (see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/41699#note_430465330)
def
dates
def
dates
unless
relation_reader
.
legacy?
return
if
relation_reader
.
legacy?
DATE_MODELS
.
map
do
|
tag
|
relation_reader
.
consume_relation
(
@importable_path
,
tag
).
map
{
|
model
|
model
.
first
[
'due_date'
]
}.
tap
do
DATE_MODELS
.
flat_map
do
|
tag
|
relation_reader
.
clear_consumed_relations
relation_reader
.
consume_relation
(
@importable_path
,
tag
,
mark_as_consumed:
false
).
map
do
|
model
|
end
model
.
first
[
'due_date'
]
end
end
end
end
end
end
...
...
spec/lib/gitlab/import_export/json/ndjson_reader_spec.rb
View file @
c9b057d1
...
@@ -67,6 +67,14 @@ RSpec.describe Gitlab::ImportExport::JSON::NdjsonReader do
...
@@ -67,6 +67,14 @@ RSpec.describe Gitlab::ImportExport::JSON::NdjsonReader do
it
'yields nothing to the Enumerator'
do
it
'yields nothing to the Enumerator'
do
expect
(
subject
.
to_a
).
to
eq
([])
expect
(
subject
.
to_a
).
to
eq
([])
end
end
context
'with mark_as_consumed: false'
do
subject
{
ndjson_reader
.
consume_relation
(
importable_path
,
key
,
mark_as_consumed:
false
)
}
it
'yields every relation value to the Enumerator'
do
expect
(
subject
.
count
).
to
eq
(
1
)
end
end
end
end
context
'key has not been consumed'
do
context
'key has not been consumed'
do
...
@@ -102,14 +110,4 @@ RSpec.describe Gitlab::ImportExport::JSON::NdjsonReader do
...
@@ -102,14 +110,4 @@ RSpec.describe Gitlab::ImportExport::JSON::NdjsonReader do
end
end
end
end
end
end
describe
'#clear_consumed_relations'
do
let
(
:dir_path
)
{
fixture
}
subject
{
ndjson_reader
.
clear_consumed_relations
}
it
'returns empty set'
do
expect
(
subject
).
to
be_empty
end
end
end
end
spec/lib/gitlab/import_export/project/sample/date_calculator_spec.rb
View file @
c9b057d1
...
@@ -13,7 +13,7 @@ RSpec.describe Gitlab::ImportExport::Project::Sample::DateCalculator do
...
@@ -13,7 +13,7 @@ RSpec.describe Gitlab::ImportExport::Project::Sample::DateCalculator do
end
end
context
'when dates are not empty'
do
context
'when dates are not empty'
do
let
(
:dates
)
{
[
[
nil
,
'2020-01-01 00:00:00 +0000'
],
[
nil
,
'2021-01-01 00:00:00 +0000'
],
[
nil
,
'2022-01-01 23:59:59 +0000'
]
]
}
let
(
:dates
)
{
[
nil
,
'2020-01-01 00:00:00 +0000'
,
'2021-01-01 00:00:00 +0000'
,
nil
,
'2022-01-01 23:59:59 +0000'
]
}
it
{
is_expected
.
to
eq
(
Time
.
zone
.
parse
(
'2021-01-01 00:00:00 +0000'
))
}
it
{
is_expected
.
to
eq
(
Time
.
zone
.
parse
(
'2021-01-01 00:00:00 +0000'
))
}
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