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
775cee73
Commit
775cee73
authored
Aug 16, 2017
by
Grzegorz Bizon
Committed by
Jose Ivan Vargas
Sep 02, 2017
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it possible to provide schema version in tests
parent
24da4198
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
25 deletions
+24
-25
spec/lib/gitlab/background_migration/migrate_events_to_push_event_payloads_spec.rb
...d_migration/migrate_events_to_push_event_payloads_spec.rb
+5
-16
spec/spec_helper.rb
spec/spec_helper.rb
+4
-9
spec/support/migrations_helpers.rb
spec/support/migrations_helpers.rb
+15
-0
No files found.
spec/lib/gitlab/background_migration/migrate_events_to_push_event_payloads_spec.rb
View file @
775cee73
...
...
@@ -210,7 +210,11 @@ describe Gitlab::BackgroundMigration::MigrateEventsToPushEventPayloads::Event do
end
end
describe
Gitlab
::
BackgroundMigration
::
MigrateEventsToPushEventPayloads
do
##
# The background migration relies on a temporary table, hence we're migrating
# to a specific version of the database where said table is still present.
#
describe
Gitlab
::
BackgroundMigration
::
MigrateEventsToPushEventPayloads
,
:migration
,
schema:
20170608152748
do
let
(
:migration
)
{
described_class
.
new
}
let
(
:project
)
{
create
(
:project_empty_repo
)
}
let
(
:author
)
{
create
(
:user
)
}
...
...
@@ -229,21 +233,6 @@ describe Gitlab::BackgroundMigration::MigrateEventsToPushEventPayloads do
)
end
# The background migration relies on a temporary table, hence we're migrating
# to a specific version of the database where said table is still present.
before
:all
do
ActiveRecord
::
Migration
.
verbose
=
false
ActiveRecord
::
Migrator
.
migrate
(
ActiveRecord
::
Migrator
.
migrations_paths
,
20170608152748
)
end
after
:all
do
ActiveRecord
::
Migrator
.
migrate
(
ActiveRecord
::
Migrator
.
migrations_paths
)
ActiveRecord
::
Migration
.
verbose
=
true
end
describe
'#perform'
do
it
'returns if data should not be migrated'
do
allow
(
migration
).
to
receive
(
:migrate?
).
and_return
(
false
)
...
...
spec/spec_helper.rb
View file @
775cee73
...
...
@@ -136,17 +136,12 @@ RSpec.configure do |config|
Sidekiq
.
redis
(
&
:flushall
)
end
config
.
before
(
:example
,
:migration
)
do
ActiveRecord
::
Migrator
.
migrate
(
migrations_paths
,
previous_migration
.
version
)
reset_column_in_migration_models
config
.
before
(
:context
,
:migration
)
do
schema_migrate_down!
end
config
.
after
(
:example
,
:migration
)
do
ActiveRecord
::
Migrator
.
migrate
(
migrations_paths
)
reset_column_in_migration_models
config
.
after
(
:context
,
:migration
)
do
schema_migrate_up!
end
config
.
around
(
:each
,
:nested_groups
)
do
|
example
|
...
...
spec/support/migrations_helpers.rb
View file @
775cee73
...
...
@@ -31,6 +31,21 @@ module MigrationsHelpers
end
end
def
migration_schema_version
self
.
class
.
metadata
[
:schema
]
||
previous_migration
.
version
end
def
schema_migrate_down!
ActiveRecord
::
Migrator
.
migrate
(
migrations_paths
,
migration_schema_version
)
reset_column_in_migration_models
end
def
schema_migrate_up!
ActiveRecord
::
Migrator
.
migrate
(
migrations_paths
)
reset_column_in_migration_models
end
def
migrate!
ActiveRecord
::
Migrator
.
up
(
migrations_paths
)
do
|
migration
|
migration
.
name
==
described_class
.
name
...
...
Alain Takoudjou
@alain.takoudjou
mentioned in commit
0f8d7012
·
Feb 07, 2020
mentioned in commit
0f8d7012
mentioned in commit 0f8d7012138b9eec92ea0a42d63b10e363899aea
Toggle commit list
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