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
a34d70c3
Commit
a34d70c3
authored
Aug 16, 2021
by
Jaime Martinez
Committed by
Max Woolf
Aug 16, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add pages_smart_check_outdated_sha feature flag
parent
21607dbf
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
94 additions
and
25 deletions
+94
-25
app/services/projects/update_pages_service.rb
app/services/projects/update_pages_service.rb
+14
-2
config/feature_flags/development/pages_smart_check_outdated_sha.yml
...ture_flags/development/pages_smart_check_outdated_sha.yml
+8
-0
spec/services/projects/update_pages_service_spec.rb
spec/services/projects/update_pages_service_spec.rb
+72
-23
No files found.
app/services/projects/update_pages_service.rb
View file @
a34d70c3
...
@@ -149,7 +149,9 @@ module Projects
...
@@ -149,7 +149,9 @@ module Projects
File
.
open
(
artifacts_path
)
do
|
file
|
File
.
open
(
artifacts_path
)
do
|
file
|
deployment
=
project
.
pages_deployments
.
create!
(
file:
file
,
deployment
=
project
.
pages_deployments
.
create!
(
file:
file
,
file_count:
entries_count
,
file_count:
entries_count
,
file_sha256:
sha256
)
file_sha256:
sha256
,
ci_build_id:
build
.
id
)
validate_outdated_sha!
validate_outdated_sha!
...
@@ -236,7 +238,17 @@ module Projects
...
@@ -236,7 +238,17 @@ module Projects
end
end
def
validate_outdated_sha!
def
validate_outdated_sha!
raise
InvalidStateError
,
'build SHA is outdated for this ref'
unless
latest?
return
if
latest?
if
Feature
.
enabled?
(
:pages_smart_check_outdated_sha
,
project
,
default_enabled: :yaml
)
# use pipeline_id in case the build is retried
last_deployed_pipeline_id
=
project
.
pages_metadatum
&
.
pages_deployment
&
.
ci_build
&
.
pipeline_id
return
unless
last_deployed_pipeline_id
return
if
last_deployed_pipeline_id
<=
build
.
pipeline_id
end
raise
InvalidStateError
,
'build SHA is outdated for this ref'
end
end
def
latest?
def
latest?
...
...
config/feature_flags/development/pages_smart_check_outdated_sha.yml
0 → 100644
View file @
a34d70c3
---
name
:
pages_smart_check_outdated_sha
introduced_by_url
:
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67303
rollout_issue_url
:
https://gitlab.com/gitlab-org/gitlab/-/issues/336574
milestone
:
'
14.2'
type
:
development
group
:
group::release
default_enabled
:
false
spec/services/projects/update_pages_service_spec.rb
View file @
a34d70c3
...
@@ -4,6 +4,8 @@ require "spec_helper"
...
@@ -4,6 +4,8 @@ require "spec_helper"
RSpec
.
describe
Projects
::
UpdatePagesService
do
RSpec
.
describe
Projects
::
UpdatePagesService
do
let_it_be
(
:project
,
refind:
true
)
{
create
(
:project
,
:repository
)
}
let_it_be
(
:project
,
refind:
true
)
{
create
(
:project
,
:repository
)
}
let_it_be
(
:old_pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
sha:
project
.
commit
(
'HEAD'
).
sha
)
}
let_it_be
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
sha:
project
.
commit
(
'HEAD'
).
sha
)
}
let_it_be
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
sha:
project
.
commit
(
'HEAD'
).
sha
)
}
let
(
:build
)
{
create
(
:ci_build
,
pipeline:
pipeline
,
ref:
'HEAD'
)
}
let
(
:build
)
{
create
(
:ci_build
,
pipeline:
pipeline
,
ref:
'HEAD'
)
}
...
@@ -94,6 +96,7 @@ RSpec.describe Projects::UpdatePagesService do
...
@@ -94,6 +96,7 @@ RSpec.describe Projects::UpdatePagesService do
expect
(
deployment
.
file_count
).
to
eq
(
3
)
expect
(
deployment
.
file_count
).
to
eq
(
3
)
expect
(
deployment
.
file_sha256
).
to
eq
(
artifacts_archive
.
file_sha256
)
expect
(
deployment
.
file_sha256
).
to
eq
(
artifacts_archive
.
file_sha256
)
expect
(
project
.
pages_metadatum
.
reload
.
pages_deployment_id
).
to
eq
(
deployment
.
id
)
expect
(
project
.
pages_metadatum
.
reload
.
pages_deployment_id
).
to
eq
(
deployment
.
id
)
expect
(
deployment
.
ci_build_id
).
to
eq
(
build
.
id
)
end
end
it
'fails if another deployment is in progress'
do
it
'fails if another deployment is in progress'
do
...
@@ -106,19 +109,6 @@ RSpec.describe Projects::UpdatePagesService do
...
@@ -106,19 +109,6 @@ RSpec.describe Projects::UpdatePagesService do
end
end
end
end
it
'fails if sha on branch was updated before deployment was uploaded'
do
expect
(
subject
).
to
receive
(
:create_pages_deployment
).
and_wrap_original
do
|
m
,
*
args
|
build
.
update!
(
ref:
'feature'
)
m
.
call
(
*
args
)
end
expect
(
execute
).
not_to
eq
(
:success
)
expect
(
project
.
pages_metadatum
).
not_to
be_deployed
expect
(
deploy_status
).
to
be_failed
expect
(
deploy_status
.
description
).
to
eq
(
'build SHA is outdated for this ref'
)
end
it
'does not fail if pages_metadata is absent'
do
it
'does not fail if pages_metadata is absent'
do
project
.
pages_metadatum
.
destroy!
project
.
pages_metadatum
.
destroy!
project
.
reload
project
.
reload
...
@@ -190,16 +180,6 @@ RSpec.describe Projects::UpdatePagesService do
...
@@ -190,16 +180,6 @@ RSpec.describe Projects::UpdatePagesService do
expect
(
ProjectPagesMetadatum
.
find_by_project_id
(
project
)).
to
be_nil
expect
(
ProjectPagesMetadatum
.
find_by_project_id
(
project
)).
to
be_nil
end
end
it
'fails if sha on branch is not latest'
do
build
.
update!
(
ref:
'feature'
)
expect
(
execute
).
not_to
eq
(
:success
)
expect
(
project
.
pages_metadatum
).
not_to
be_deployed
expect
(
deploy_status
).
to
be_failed
expect
(
deploy_status
.
description
).
to
eq
(
'build SHA is outdated for this ref'
)
end
context
'when using empty file'
do
context
'when using empty file'
do
let
(
:file
)
{
empty_file
}
let
(
:file
)
{
empty_file
}
...
@@ -274,6 +254,75 @@ RSpec.describe Projects::UpdatePagesService do
...
@@ -274,6 +254,75 @@ RSpec.describe Projects::UpdatePagesService do
expect
(
execute
).
to
eq
(
:success
)
expect
(
execute
).
to
eq
(
:success
)
end
end
end
end
context
"when sha on branch was updated before deployment was uploaded"
do
before
do
expect
(
subject
).
to
receive
(
:create_pages_deployment
).
and_wrap_original
do
|
m
,
*
args
|
build
.
update!
(
ref:
'feature'
)
m
.
call
(
*
args
)
end
end
shared_examples
'fails with outdated reference message'
do
it
'fails'
do
expect
(
execute
).
not_to
eq
(
:success
)
expect
(
project
.
reload
.
pages_metadatum
).
not_to
be_deployed
expect
(
deploy_status
).
to
be_failed
expect
(
deploy_status
.
description
).
to
eq
(
'build SHA is outdated for this ref'
)
end
end
shared_examples
'successfully deploys'
do
it
'succeeds'
do
expect
do
expect
(
execute
).
to
eq
(
:success
)
end
.
to
change
{
project
.
pages_deployments
.
count
}.
by
(
1
)
deployment
=
project
.
pages_deployments
.
last
expect
(
deployment
.
ci_build_id
).
to
eq
(
build
.
id
)
end
end
include_examples
'successfully deploys'
context
'when pages_smart_check_outdated_sha feature flag is disabled'
do
before
do
stub_feature_flags
(
pages_smart_check_outdated_sha:
false
)
end
include_examples
'fails with outdated reference message'
end
context
'when old deployment present'
do
before
do
old_build
=
create
(
:ci_build
,
pipeline:
old_pipeline
,
ref:
'HEAD'
)
old_deployment
=
create
(
:pages_deployment
,
ci_build:
old_build
,
project:
project
)
project
.
update_pages_deployment!
(
old_deployment
)
end
include_examples
'successfully deploys'
context
'when pages_smart_check_outdated_sha feature flag is disabled'
do
before
do
stub_feature_flags
(
pages_smart_check_outdated_sha:
false
)
end
include_examples
'fails with outdated reference message'
end
end
context
'when newer deployment present'
do
before
do
new_pipeline
=
create
(
:ci_pipeline
,
project:
project
,
sha:
project
.
commit
(
'HEAD'
).
sha
)
new_build
=
create
(
:ci_build
,
pipeline:
new_pipeline
,
ref:
'HEAD'
)
new_deployment
=
create
(
:pages_deployment
,
ci_build:
new_build
,
project:
project
)
project
.
update_pages_deployment!
(
new_deployment
)
end
include_examples
'fails with outdated reference message'
end
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