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
7fcf11f6
Commit
7fcf11f6
authored
Jun 18, 2020
by
Adam Hegyi
Committed by
Mayra Cabrera
Jun 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Merge branch '207312-remove-optimisticlocking-monkeypatch' into 'master'"
This reverts merge request !25566
parent
678c9c1b
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
139 additions
and
142 deletions
+139
-142
changelogs/unreleased/207312-remove-optimisticlocking-monkeypatch.yml
...nreleased/207312-remove-optimisticlocking-monkeypatch.yml
+0
-5
config/initializers/config_initializers_active_record_locking.rb
...initializers/config_initializers_active_record_locking.rb
+46
-0
db/migrate/20200618134223_restore_previous_schema_without_lock_version_null_constraint.rb
...e_previous_schema_without_lock_version_null_constraint.rb
+4
-7
db/migrate/20200618134723_restore_previous_schema_with_lock_version_indices.rb
...4723_restore_previous_schema_with_lock_version_indices.rb
+22
-0
db/post_migrate/20200608205813_set_lock_version_to_not_null.rb
...st_migrate/20200608205813_set_lock_version_to_not_null.rb
+0
-19
db/post_migrate/20200608212030_lock_version_cleanup_for_epics.rb
..._migrate/20200608212030_lock_version_cleanup_for_epics.rb
+0
-18
db/post_migrate/20200608212435_lock_version_cleanup_for_merge_requests.rb
...20200608212435_lock_version_cleanup_for_merge_requests.rb
+0
-18
db/post_migrate/20200608212549_lock_version_cleanup_for_issues.rb
...migrate/20200608212549_lock_version_cleanup_for_issues.rb
+0
-18
db/post_migrate/20200608212652_lock_version_cleanup_for_ci_stages.rb
...rate/20200608212652_lock_version_cleanup_for_ci_stages.rb
+0
-18
db/post_migrate/20200608212807_lock_version_cleanup_for_ci_builds.rb
...rate/20200608212807_lock_version_cleanup_for_ci_builds.rb
+0
-18
db/structure.sql
db/structure.sql
+20
-20
spec/migrations/cleanup_optimistic_locking_nulls_pt2_fixed_spec.rb
...ations/cleanup_optimistic_locking_nulls_pt2_fixed_spec.rb
+1
-1
spec/models/issue_spec.rb
spec/models/issue_spec.rb
+23
-0
spec/models/merge_request_spec.rb
spec/models/merge_request_spec.rb
+23
-0
No files found.
changelogs/unreleased/207312-remove-optimisticlocking-monkeypatch.yml
deleted
100644 → 0
View file @
678c9c1b
---
title
:
Remove Rails Optimistic Locking monkeypatch
merge_request
:
25566
author
:
type
:
fixed
config/initializers/config_initializers_active_record_locking.rb
0 → 100644
View file @
7fcf11f6
# frozen_string_literal: true
# ensure ActiveRecord's version has been required already
require
'active_record/locking/optimistic'
# rubocop:disable Lint/RescueException
module
ActiveRecord
module
Locking
module
Optimistic
private
def
_update_row
(
attribute_names
,
attempted_action
=
"update"
)
return
super
unless
locking_enabled?
begin
locking_column
=
self
.
class
.
locking_column
previous_lock_value
=
read_attribute_before_type_cast
(
locking_column
)
attribute_names
<<
locking_column
self
[
locking_column
]
+=
1
# Patched because when `lock_version` is read as `0`, it may actually be `NULL` in the DB.
possible_previous_lock_value
=
previous_lock_value
.
to_i
==
0
?
[
nil
,
0
]
:
previous_lock_value
affected_rows
=
self
.
class
.
unscoped
.
where
(
locking_column
=>
possible_previous_lock_value
,
self
.
class
.
primary_key
=>
id_in_database
).
update_all
(
attributes_with_values
(
attribute_names
)
)
if
affected_rows
!=
1
raise
ActiveRecord
::
StaleObjectError
.
new
(
self
,
attempted_action
)
end
affected_rows
# If something went wrong, revert the locking_column value.
rescue
Exception
self
[
locking_column
]
=
previous_lock_value
.
to_i
raise
end
end
end
end
end
db/
post_migrate/20200608195222_set_lock_version_not
_null_constraint.rb
→
db/
migrate/20200618134223_restore_previous_schema_without_lock_version
_null_constraint.rb
View file @
7fcf11f6
# frozen_string_literal: true
# frozen_string_literal: true
class
SetLockVersionNot
NullConstraint
<
ActiveRecord
::
Migration
[
6.0
]
class
RestorePreviousSchemaWithoutLockVersion
NullConstraint
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
DOWNTIME
=
false
TABLES
=
%i(epics merge_requests issues ci_stages ci_builds ci_pipelines)
.
freeze
disable_ddl_transaction!
disable_ddl_transaction!
TABLES
=
%i(epics merge_requests issues ci_stages ci_builds ci_pipelines)
.
freeze
def
up
def
up
TABLES
.
each
do
|
table
|
TABLES
.
each
do
|
table
|
add_not_null_constraint
table
,
:lock_version
,
validate:
false
remove_not_null_constraint
table
,
:lock_version
end
end
end
end
def
down
def
down
TABLES
.
each
do
|
table
|
# no-op
remove_not_null_constraint
table
,
:lock_version
end
end
end
end
end
db/
post_migrate/20200608212824_lock_version_cleanup_for_ci_pipelin
es.rb
→
db/
migrate/20200618134723_restore_previous_schema_with_lock_version_indic
es.rb
View file @
7fcf11f6
# frozen_string_literal: true
# frozen_string_literal: true
class
LockVersionCleanupForCiPipelin
es
<
ActiveRecord
::
Migration
[
6.0
]
class
RestorePreviousSchemaWithLockVersionIndic
es
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
DOWNTIME
=
false
...
@@ -8,11 +8,15 @@ class LockVersionCleanupForCiPipelines < ActiveRecord::Migration[6.0]
...
@@ -8,11 +8,15 @@ class LockVersionCleanupForCiPipelines < ActiveRecord::Migration[6.0]
disable_ddl_transaction!
disable_ddl_transaction!
def
up
def
up
validate_not_null_constraint
:ci_pipelines
,
:lock_version
add_concurrent_index
:issues
,
:lock_version
,
where:
"lock_version IS NULL"
remove_concurrent_index
:ci_pipelines
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_pipelines_lock_version"
add_concurrent_index
:merge_requests
,
:lock_version
,
where:
"lock_version IS NULL"
add_concurrent_index
:epics
,
:lock_version
,
where:
"lock_version IS NULL"
add_concurrent_index
:ci_stages
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_stages_lock_version"
add_concurrent_index
:ci_builds
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_builds_lock_version"
add_concurrent_index
:ci_pipelines
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_pipelines_lock_version"
end
end
def
down
def
down
add_concurrent_index
:ci_pipelines
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_pipelines_lock_version"
# no-op
end
end
end
end
db/post_migrate/20200608205813_set_lock_version_to_not_null.rb
deleted
100644 → 0
View file @
678c9c1b
# frozen_string_literal: true
class
SetLockVersionToNotNull
<
ActiveRecord
::
Migration
[
6.0
]
DOWNTIME
=
false
MODELS
=
[
Epic
,
MergeRequest
,
Issue
,
Ci
::
Stage
,
Ci
::
Build
,
Ci
::
Pipeline
].
freeze
disable_ddl_transaction!
def
up
MODELS
.
each
do
|
model
|
model
.
where
(
lock_version:
nil
).
update_all
(
lock_version:
0
)
end
end
def
down
# Nothing to do...
end
end
db/post_migrate/20200608212030_lock_version_cleanup_for_epics.rb
deleted
100644 → 0
View file @
678c9c1b
# frozen_string_literal: true
class
LockVersionCleanupForEpics
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
validate_not_null_constraint
:epics
,
:lock_version
remove_concurrent_index
:epics
,
:lock_version
,
where:
"lock_version IS NULL"
end
def
down
add_concurrent_index
:epics
,
:lock_version
,
where:
"lock_version IS NULL"
end
end
db/post_migrate/20200608212435_lock_version_cleanup_for_merge_requests.rb
deleted
100644 → 0
View file @
678c9c1b
# frozen_string_literal: true
class
LockVersionCleanupForMergeRequests
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
validate_not_null_constraint
:merge_requests
,
:lock_version
remove_concurrent_index
:merge_requests
,
:lock_version
,
where:
"lock_version IS NULL"
end
def
down
add_concurrent_index
:merge_requests
,
:lock_version
,
where:
"lock_version IS NULL"
end
end
db/post_migrate/20200608212549_lock_version_cleanup_for_issues.rb
deleted
100644 → 0
View file @
678c9c1b
# frozen_string_literal: true
class
LockVersionCleanupForIssues
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
validate_not_null_constraint
:issues
,
:lock_version
remove_concurrent_index
:issues
,
:lock_version
,
where:
"lock_version IS NULL"
end
def
down
add_concurrent_index
:issues
,
:lock_version
,
where:
"lock_version IS NULL"
end
end
db/post_migrate/20200608212652_lock_version_cleanup_for_ci_stages.rb
deleted
100644 → 0
View file @
678c9c1b
# frozen_string_literal: true
class
LockVersionCleanupForCiStages
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
validate_not_null_constraint
:ci_stages
,
:lock_version
remove_concurrent_index
:ci_stages
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_stages_lock_version"
end
def
down
add_concurrent_index
:ci_stages
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_stages_lock_version"
end
end
db/post_migrate/20200608212807_lock_version_cleanup_for_ci_builds.rb
deleted
100644 → 0
View file @
678c9c1b
# frozen_string_literal: true
class
LockVersionCleanupForCiBuilds
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
validate_not_null_constraint
:ci_builds
,
:lock_version
remove_concurrent_index
:ci_builds
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_builds_lock_version"
end
def
down
add_concurrent_index
:ci_builds
,
:id
,
where:
"lock_version IS NULL"
,
name:
"tmp_index_ci_builds_lock_version"
end
end
db/structure.sql
View file @
7fcf11f6
...
@@ -1056,8 +1056,7 @@ CREATE TABLE public.ci_builds (
...
@@ -1056,8 +1056,7 @@ CREATE TABLE public.ci_builds (
resource_group_id
bigint
,
resource_group_id
bigint
,
waiting_for_resource_at
timestamp
with
time
zone
,
waiting_for_resource_at
timestamp
with
time
zone
,
processed
boolean
,
processed
boolean
,
scheduling_type
smallint
,
scheduling_type
smallint
CONSTRAINT
check_1e2fbd1b39
CHECK
((
lock_version
IS
NOT
NULL
))
);
);
CREATE
SEQUENCE
public
.
ci_builds_id_seq
CREATE
SEQUENCE
public
.
ci_builds_id_seq
...
@@ -1368,8 +1367,7 @@ CREATE TABLE public.ci_pipelines (
...
@@ -1368,8 +1367,7 @@ CREATE TABLE public.ci_pipelines (
source_sha
bytea
,
source_sha
bytea
,
target_sha
bytea
,
target_sha
bytea
,
external_pull_request_id
bigint
,
external_pull_request_id
bigint
,
ci_ref_id
bigint
,
ci_ref_id
bigint
CONSTRAINT
check_d7e99a025e
CHECK
((
lock_version
IS
NOT
NULL
))
);
);
CREATE
TABLE
public
.
ci_pipelines_config
(
CREATE
TABLE
public
.
ci_pipelines_config
(
...
@@ -1554,8 +1552,7 @@ CREATE TABLE public.ci_stages (
...
@@ -1554,8 +1552,7 @@ CREATE TABLE public.ci_stages (
name
character
varying
,
name
character
varying
,
status
integer
,
status
integer
,
lock_version
integer
DEFAULT
0
,
lock_version
integer
DEFAULT
0
,
"position"
integer
,
"position"
integer
CONSTRAINT
check_81b431e49b
CHECK
((
lock_version
IS
NOT
NULL
))
);
);
CREATE
SEQUENCE
public
.
ci_stages_id_seq
CREATE
SEQUENCE
public
.
ci_stages_id_seq
...
@@ -2514,8 +2511,7 @@ CREATE TABLE public.epics (
...
@@ -2514,8 +2511,7 @@ CREATE TABLE public.epics (
start_date_sourcing_epic_id
integer
,
start_date_sourcing_epic_id
integer
,
due_date_sourcing_epic_id
integer
,
due_date_sourcing_epic_id
integer
,
confidential
boolean
DEFAULT
false
NOT
NULL
,
confidential
boolean
DEFAULT
false
NOT
NULL
,
external_key
character
varying
(
255
),
external_key
character
varying
(
255
)
CONSTRAINT
check_fcfb4a93ff
CHECK
((
lock_version
IS
NOT
NULL
))
);
);
CREATE
SEQUENCE
public
.
epics_id_seq
CREATE
SEQUENCE
public
.
epics_id_seq
...
@@ -3558,8 +3554,7 @@ CREATE TABLE public.issues (
...
@@ -3558,8 +3554,7 @@ CREATE TABLE public.issues (
promoted_to_epic_id
integer
,
promoted_to_epic_id
integer
,
health_status
smallint
,
health_status
smallint
,
external_key
character
varying
(
255
),
external_key
character
varying
(
255
),
sprint_id
bigint
,
sprint_id
bigint
CONSTRAINT
check_fba63f706d
CHECK
((
lock_version
IS
NOT
NULL
))
);
);
CREATE
SEQUENCE
public
.
issues_id_seq
CREATE
SEQUENCE
public
.
issues_id_seq
...
@@ -4139,8 +4134,7 @@ CREATE TABLE public.merge_requests (
...
@@ -4139,8 +4134,7 @@ CREATE TABLE public.merge_requests (
state_id
smallint
DEFAULT
1
NOT
NULL
,
state_id
smallint
DEFAULT
1
NOT
NULL
,
rebase_jid
character
varying
,
rebase_jid
character
varying
,
squash_commit_sha
bytea
,
squash_commit_sha
bytea
,
sprint_id
bigint
,
sprint_id
bigint
CONSTRAINT
check_970d272570
CHECK
((
lock_version
IS
NOT
NULL
))
);
);
CREATE
TABLE
public
.
merge_requests_closing_issues
(
CREATE
TABLE
public
.
merge_requests_closing_issues
(
...
@@ -9892,6 +9886,8 @@ CREATE INDEX index_epics_on_iid ON public.epics USING btree (iid);
...
@@ -9892,6 +9886,8 @@ CREATE INDEX index_epics_on_iid ON public.epics USING btree (iid);
CREATE
INDEX
index_epics_on_last_edited_by_id
ON
public
.
epics
USING
btree
(
last_edited_by_id
);
CREATE
INDEX
index_epics_on_last_edited_by_id
ON
public
.
epics
USING
btree
(
last_edited_by_id
);
CREATE
INDEX
index_epics_on_lock_version
ON
public
.
epics
USING
btree
(
lock_version
)
WHERE
(
lock_version
IS
NULL
);
CREATE
INDEX
index_epics_on_parent_id
ON
public
.
epics
USING
btree
(
parent_id
);
CREATE
INDEX
index_epics_on_parent_id
ON
public
.
epics
USING
btree
(
parent_id
);
CREATE
INDEX
index_epics_on_start_date
ON
public
.
epics
USING
btree
(
start_date
);
CREATE
INDEX
index_epics_on_start_date
ON
public
.
epics
USING
btree
(
start_date
);
...
@@ -10138,6 +10134,8 @@ CREATE INDEX index_issues_on_duplicated_to_id ON public.issues USING btree (dupl
...
@@ -10138,6 +10134,8 @@ CREATE INDEX index_issues_on_duplicated_to_id ON public.issues USING btree (dupl
CREATE
INDEX
index_issues_on_last_edited_by_id
ON
public
.
issues
USING
btree
(
last_edited_by_id
);
CREATE
INDEX
index_issues_on_last_edited_by_id
ON
public
.
issues
USING
btree
(
last_edited_by_id
);
CREATE
INDEX
index_issues_on_lock_version
ON
public
.
issues
USING
btree
(
lock_version
)
WHERE
(
lock_version
IS
NULL
);
CREATE
INDEX
index_issues_on_milestone_id
ON
public
.
issues
USING
btree
(
milestone_id
);
CREATE
INDEX
index_issues_on_milestone_id
ON
public
.
issues
USING
btree
(
milestone_id
);
CREATE
INDEX
index_issues_on_moved_to_id
ON
public
.
issues
USING
btree
(
moved_to_id
)
WHERE
(
moved_to_id
IS
NOT
NULL
);
CREATE
INDEX
index_issues_on_moved_to_id
ON
public
.
issues
USING
btree
(
moved_to_id
)
WHERE
(
moved_to_id
IS
NOT
NULL
);
...
@@ -10304,6 +10302,8 @@ CREATE INDEX index_merge_requests_on_head_pipeline_id ON public.merge_requests U
...
@@ -10304,6 +10302,8 @@ CREATE INDEX index_merge_requests_on_head_pipeline_id ON public.merge_requests U
CREATE
INDEX
index_merge_requests_on_latest_merge_request_diff_id
ON
public
.
merge_requests
USING
btree
(
latest_merge_request_diff_id
);
CREATE
INDEX
index_merge_requests_on_latest_merge_request_diff_id
ON
public
.
merge_requests
USING
btree
(
latest_merge_request_diff_id
);
CREATE
INDEX
index_merge_requests_on_lock_version
ON
public
.
merge_requests
USING
btree
(
lock_version
)
WHERE
(
lock_version
IS
NULL
);
CREATE
INDEX
index_merge_requests_on_merge_user_id
ON
public
.
merge_requests
USING
btree
(
merge_user_id
)
WHERE
(
merge_user_id
IS
NOT
NULL
);
CREATE
INDEX
index_merge_requests_on_merge_user_id
ON
public
.
merge_requests
USING
btree
(
merge_user_id
)
WHERE
(
merge_user_id
IS
NOT
NULL
);
CREATE
INDEX
index_merge_requests_on_milestone_id
ON
public
.
merge_requests
USING
btree
(
milestone_id
);
CREATE
INDEX
index_merge_requests_on_milestone_id
ON
public
.
merge_requests
USING
btree
(
milestone_id
);
...
@@ -11308,6 +11308,12 @@ CREATE INDEX tmp_build_stage_position_index ON public.ci_builds USING btree (sta
...
@@ -11308,6 +11308,12 @@ CREATE INDEX tmp_build_stage_position_index ON public.ci_builds USING btree (sta
CREATE
INDEX
tmp_idx_on_user_id_where_bio_is_filled
ON
public
.
users
USING
btree
(
id
)
WHERE
((
COALESCE
(
bio
,
''
::
character
varying
))::
text
IS
DISTINCT
FROM
''
::
text
);
CREATE
INDEX
tmp_idx_on_user_id_where_bio_is_filled
ON
public
.
users
USING
btree
(
id
)
WHERE
((
COALESCE
(
bio
,
''
::
character
varying
))::
text
IS
DISTINCT
FROM
''
::
text
);
CREATE
INDEX
tmp_index_ci_builds_lock_version
ON
public
.
ci_builds
USING
btree
(
id
)
WHERE
(
lock_version
IS
NULL
);
CREATE
INDEX
tmp_index_ci_pipelines_lock_version
ON
public
.
ci_pipelines
USING
btree
(
id
)
WHERE
(
lock_version
IS
NULL
);
CREATE
INDEX
tmp_index_ci_stages_lock_version
ON
public
.
ci_stages
USING
btree
(
id
)
WHERE
(
lock_version
IS
NULL
);
CREATE
UNIQUE
INDEX
users_security_dashboard_projects_unique_index
ON
public
.
users_security_dashboard_projects
USING
btree
(
project_id
,
user_id
);
CREATE
UNIQUE
INDEX
users_security_dashboard_projects_unique_index
ON
public
.
users_security_dashboard_projects
USING
btree
(
project_id
,
user_id
);
CREATE
UNIQUE
INDEX
vulnerability_feedback_unique_idx
ON
public
.
vulnerability_feedback
USING
btree
(
project_id
,
category
,
feedback_type
,
project_fingerprint
);
CREATE
UNIQUE
INDEX
vulnerability_feedback_unique_idx
ON
public
.
vulnerability_feedback
USING
btree
(
project_id
,
category
,
feedback_type
,
project_fingerprint
);
...
@@ -14053,14 +14059,6 @@ COPY "schema_migrations" (version) FROM STDIN;
...
@@ -14053,14 +14059,6 @@ COPY "schema_migrations" (version) FROM STDIN;
20200605093113
20200605093113
20200608072931
20200608072931
20200608075553
20200608075553
20200608195222
20200608205813
20200608212030
20200608212435
20200608212549
20200608212652
20200608212807
20200608212824
20200608214008
20200608214008
20200609002841
20200609002841
20200609142506
20200609142506
...
@@ -14080,5 +14078,7 @@ COPY "schema_migrations" (version) FROM STDIN;
...
@@ -14080,5 +14078,7 @@ COPY "schema_migrations" (version) FROM STDIN;
20200617001637
20200617001637
20200617001848
20200617001848
20200617002030
20200617002030
20200618134223
20200618134723
\
.
\
.
spec/migrations/cleanup_optimistic_locking_nulls_pt2_fixed_spec.rb
View file @
7fcf11f6
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
require
'spec_helper'
require
'spec_helper'
require
Rails
.
root
.
join
(
'db'
,
'post_migrate'
,
'20200427064130_cleanup_optimistic_locking_nulls_pt2_fixed.rb'
)
require
Rails
.
root
.
join
(
'db'
,
'post_migrate'
,
'20200427064130_cleanup_optimistic_locking_nulls_pt2_fixed.rb'
)
describe
CleanupOptimisticLockingNullsPt2Fixed
,
:migration
,
schema:
20200219193117
do
describe
CleanupOptimisticLockingNullsPt2Fixed
,
:migration
do
test_tables
=
%w(ci_stages ci_builds ci_pipelines)
.
freeze
test_tables
=
%w(ci_stages ci_builds ci_pipelines)
.
freeze
test_tables
.
each
do
|
table
|
test_tables
.
each
do
|
table
|
let
(
table
.
to_sym
)
{
table
(
table
.
to_sym
)
}
let
(
table
.
to_sym
)
{
table
(
table
.
to_sym
)
}
...
...
spec/models/issue_spec.rb
View file @
7fcf11f6
...
@@ -95,6 +95,29 @@ describe Issue do
...
@@ -95,6 +95,29 @@ describe Issue do
end
end
end
end
describe
'locking'
do
using
RSpec
::
Parameterized
::
TableSyntax
where
(
:lock_version
)
do
[
[
0
],
[
"0"
]
]
end
with_them
do
it
'works when an issue has a NULL lock_version'
do
issue
=
create
(
:issue
)
described_class
.
where
(
id:
issue
.
id
).
update_all
(
'lock_version = NULL'
)
issue
.
update!
(
lock_version:
lock_version
,
title:
'locking test'
)
expect
(
issue
.
reload
.
title
).
to
eq
(
'locking test'
)
end
end
end
describe
'.simple_sorts'
do
describe
'.simple_sorts'
do
it
'includes all keys'
do
it
'includes all keys'
do
expect
(
described_class
.
simple_sorts
.
keys
).
to
include
(
expect
(
described_class
.
simple_sorts
.
keys
).
to
include
(
...
...
spec/models/merge_request_spec.rb
View file @
7fcf11f6
...
@@ -55,6 +55,29 @@ describe MergeRequest do
...
@@ -55,6 +55,29 @@ describe MergeRequest do
end
end
end
end
describe
'locking'
do
using
RSpec
::
Parameterized
::
TableSyntax
where
(
:lock_version
)
do
[
[
0
],
[
"0"
]
]
end
with_them
do
it
'works when a merge request has a NULL lock_version'
do
merge_request
=
create
(
:merge_request
)
described_class
.
where
(
id:
merge_request
.
id
).
update_all
(
'lock_version = NULL'
)
merge_request
.
update!
(
lock_version:
lock_version
,
title:
'locking test'
)
expect
(
merge_request
.
reload
.
title
).
to
eq
(
'locking test'
)
end
end
end
describe
'#squash_in_progress?'
do
describe
'#squash_in_progress?'
do
let
(
:repo_path
)
do
let
(
:repo_path
)
do
Gitlab
::
GitalyClient
::
StorageSettings
.
allow_disk_access
do
Gitlab
::
GitalyClient
::
StorageSettings
.
allow_disk_access
do
...
...
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