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
a7ff59d2
Commit
a7ff59d2
authored
Dec 14, 2021
by
Allen Cook
Committed by
Dylan Griffith
Dec 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "GitLab Migration - Pipeline schedules"
parent
8a46caf5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
85 additions
and
0 deletions
+85
-0
ee/spec/lib/ee/bulk_imports/projects/stage_spec.rb
ee/spec/lib/ee/bulk_imports/projects/stage_spec.rb
+1
-0
lib/bulk_imports/projects/pipelines/pipeline_schedules_pipeline.rb
...imports/projects/pipelines/pipeline_schedules_pipeline.rb
+15
-0
lib/bulk_imports/projects/stage.rb
lib/bulk_imports/projects/stage.rb
+4
-0
spec/lib/bulk_imports/projects/pipelines/pipeline_schedules_pipeline_spec.rb
...ts/projects/pipelines/pipeline_schedules_pipeline_spec.rb
+64
-0
spec/lib/bulk_imports/projects/stage_spec.rb
spec/lib/bulk_imports/projects/stage_spec.rb
+1
-0
No files found.
ee/spec/lib/ee/bulk_imports/projects/stage_spec.rb
View file @
a7ff59d2
...
...
@@ -26,6 +26,7 @@ RSpec.describe BulkImports::Projects::Stage do
[
5
,
BulkImports
::
Common
::
Pipelines
::
WikiPipeline
],
[
5
,
BulkImports
::
Common
::
Pipelines
::
UploadsPipeline
],
[
5
,
BulkImports
::
Projects
::
Pipelines
::
AutoDevopsPipeline
],
[
5
,
BulkImports
::
Projects
::
Pipelines
::
PipelineSchedulesPipeline
],
[
6
,
BulkImports
::
Common
::
Pipelines
::
EntityFinisher
]
]
end
...
...
lib/bulk_imports/projects/pipelines/pipeline_schedules_pipeline.rb
0 → 100644
View file @
a7ff59d2
# frozen_string_literal: true
module
BulkImports
module
Projects
module
Pipelines
class
PipelineSchedulesPipeline
include
NdjsonPipeline
relation_name
'pipeline_schedules'
extractor
::
BulkImports
::
Common
::
Extractors
::
NdjsonExtractor
,
relation:
relation
end
end
end
end
lib/bulk_imports/projects/stage.rb
View file @
a7ff59d2
...
...
@@ -87,6 +87,10 @@ module BulkImports
pipeline:
BulkImports
::
Projects
::
Pipelines
::
AutoDevopsPipeline
,
stage:
5
},
pipeline_schedules:
{
pipeline:
BulkImports
::
Projects
::
Pipelines
::
PipelineSchedulesPipeline
,
stage:
5
},
finisher:
{
pipeline:
BulkImports
::
Common
::
Pipelines
::
EntityFinisher
,
stage:
6
...
...
spec/lib/bulk_imports/projects/pipelines/pipeline_schedules_pipeline_spec.rb
0 → 100644
View file @
a7ff59d2
# frozen_string_literal: true
require
'spec_helper'
RSpec
.
describe
BulkImports
::
Projects
::
Pipelines
::
PipelineSchedulesPipeline
do
let_it_be
(
:user
)
{
create
(
:user
)
}
let_it_be
(
:group
)
{
create
(
:group
)
}
let_it_be
(
:project
)
{
create
(
:project
,
group:
group
)
}
let_it_be
(
:bulk_import
)
{
create
(
:bulk_import
,
user:
user
)
}
let_it_be
(
:entity
)
do
create
(
:bulk_import_entity
,
:project_entity
,
project:
project
,
bulk_import:
bulk_import
,
source_full_path:
'source/full/path'
,
destination_name:
'My Destination Project'
,
destination_namespace:
group
.
full_path
)
end
let_it_be
(
:tracker
)
{
create
(
:bulk_import_tracker
,
entity:
entity
)
}
let_it_be
(
:context
)
{
BulkImports
::
Pipeline
::
Context
.
new
(
tracker
)
}
let
(
:schedule_attributes
)
{
{}
}
let
(
:schedule
)
do
{
'description'
=>
'test pipeline schedule'
,
'cron'
=>
'1 1 1 1 1'
,
'cron_timezone'
=>
'UTC'
,
'ref'
=>
'testref'
,
'created_at'
=>
'2016-06-13T15:02:47.967Z'
,
'updated_at'
=>
'2016-06-14T15:02:47.967Z'
}.
merge
(
schedule_attributes
)
end
subject
(
:pipeline
)
{
described_class
.
new
(
context
)
}
before
do
group
.
add_owner
(
user
)
allow_next_instance_of
(
BulkImports
::
Common
::
Extractors
::
NdjsonExtractor
)
do
|
extractor
|
allow
(
extractor
).
to
receive
(
:extract
).
and_return
(
BulkImports
::
Pipeline
::
ExtractedData
.
new
(
data:
[
schedule
]))
end
pipeline
.
run
end
it
'imports schedule into destination project'
do
expect
(
project
.
pipeline_schedules
.
count
).
to
eq
(
1
)
pipeline_schedule
=
project
.
pipeline_schedules
.
first
schedule
.
each
do
|
k
,
v
|
expect
(
pipeline_schedule
.
send
(
k
)).
to
eq
(
v
)
end
end
context
'is active'
do
let
(
:schedule_attributes
)
{
{
'active'
=>
true
}
}
it
'imports the schedule but active is false'
do
expect
(
project
.
pipeline_schedules
.
first
.
active
).
to
be_falsey
end
end
end
spec/lib/bulk_imports/projects/stage_spec.rb
View file @
a7ff59d2
...
...
@@ -27,6 +27,7 @@ RSpec.describe BulkImports::Projects::Stage do
[
5
,
BulkImports
::
Common
::
Pipelines
::
WikiPipeline
],
[
5
,
BulkImports
::
Common
::
Pipelines
::
UploadsPipeline
],
[
5
,
BulkImports
::
Projects
::
Pipelines
::
AutoDevopsPipeline
],
[
5
,
BulkImports
::
Projects
::
Pipelines
::
PipelineSchedulesPipeline
],
[
6
,
BulkImports
::
Common
::
Pipelines
::
EntityFinisher
]
]
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