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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
dd8680a7
Commit
dd8680a7
authored
Nov 15, 2017
by
Michael Kozono
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop temporary tracking table when finished
parent
d5300856
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
131 additions
and
92 deletions
+131
-92
db/post_migrate/20171103140253_track_untracked_uploads.rb
db/post_migrate/20171103140253_track_untracked_uploads.rb
+12
-8
lib/gitlab/background_migration/populate_untracked_uploads.rb
...gitlab/background_migration/populate_untracked_uploads.rb
+6
-0
spec/lib/gitlab/background_migration/populate_untracked_uploads_spec.rb
...b/background_migration/populate_untracked_uploads_spec.rb
+29
-7
spec/lib/gitlab/background_migration/prepare_untracked_uploads_spec.rb
...ab/background_migration/prepare_untracked_uploads_spec.rb
+28
-35
spec/migrations/track_untracked_uploads_spec.rb
spec/migrations/track_untracked_uploads_spec.rb
+42
-42
spec/support/track_untracked_uploads_helpers.rb
spec/support/track_untracked_uploads_helpers.rb
+14
-0
No files found.
db/post_migrate/20171103140253_track_untracked_uploads.rb
View file @
dd8680a7
...
@@ -10,6 +10,18 @@ class TrackUntrackedUploads < ActiveRecord::Migration
...
@@ -10,6 +10,18 @@ class TrackUntrackedUploads < ActiveRecord::Migration
MIGRATION
=
'PrepareUntrackedUploads'
MIGRATION
=
'PrepareUntrackedUploads'
def
up
def
up
ensure_temporary_tracking_table_exists
BackgroundMigrationWorker
.
perform_async
(
MIGRATION
)
end
def
down
if
table_exists?
(
:untracked_files_for_uploads
)
drop_table
:untracked_files_for_uploads
end
end
def
ensure_temporary_tracking_table_exists
unless
table_exists?
(
:untracked_files_for_uploads
)
unless
table_exists?
(
:untracked_files_for_uploads
)
create_table
:untracked_files_for_uploads
do
|
t
|
create_table
:untracked_files_for_uploads
do
|
t
|
t
.
string
:path
,
limit:
600
,
null:
false
t
.
string
:path
,
limit:
600
,
null:
false
...
@@ -25,13 +37,5 @@ class TrackUntrackedUploads < ActiveRecord::Migration
...
@@ -25,13 +37,5 @@ class TrackUntrackedUploads < ActiveRecord::Migration
unless
index_exists?
(
:untracked_files_for_uploads
,
:tracked
)
unless
index_exists?
(
:untracked_files_for_uploads
,
:tracked
)
add_index
:untracked_files_for_uploads
,
:tracked
add_index
:untracked_files_for_uploads
,
:tracked
end
end
BackgroundMigrationWorker
.
perform_async
(
MIGRATION
)
end
def
down
if
table_exists?
(
:untracked_files_for_uploads
)
drop_table
:untracked_files_for_uploads
end
end
end
end
end
lib/gitlab/background_migration/populate_untracked_uploads.rb
View file @
dd8680a7
...
@@ -208,6 +208,8 @@ module Gitlab
...
@@ -208,6 +208,8 @@ module Gitlab
# to do.
# to do.
end
end
end
end
drop_temp_table_if_finished
end
end
private
private
...
@@ -215,6 +217,10 @@ module Gitlab
...
@@ -215,6 +217,10 @@ module Gitlab
def
migrate?
def
migrate?
UntrackedFile
.
table_exists?
&&
Upload
.
table_exists?
UntrackedFile
.
table_exists?
&&
Upload
.
table_exists?
end
end
def
drop_temp_table_if_finished
UntrackedFile
.
connection
.
drop_table
(
:untracked_files_for_uploads
)
if
UntrackedFile
.
untracked
.
empty?
end
end
end
end
end
end
end
spec/lib/gitlab/background_migration/populate_untracked_uploads_spec.rb
View file @
dd8680a7
require
'spec_helper'
require
'spec_helper'
require
Rails
.
root
.
join
(
'db'
,
'post_migrate'
,
'20171103140253_track_untracked_uploads'
)
describe
Gitlab
::
BackgroundMigration
::
PopulateUntrackedUploads
,
:migration
,
:sidekiq
,
schema:
20171103140253
do
describe
Gitlab
::
BackgroundMigration
::
PopulateUntrackedUploads
,
:migration
,
:sidekiq
,
:temp_table_may_drop
,
schema:
20171103140253
do
include
TrackUntrackedUploadsHelpers
include
TrackUntrackedUploadsHelpers
subject
{
described_class
.
new
}
let!
(
:untracked_files_for_uploads
)
{
table
(
:untracked_files_for_uploads
)
}
let!
(
:untracked_files_for_uploads
)
{
table
(
:untracked_files_for_uploads
)
}
let!
(
:uploads
)
{
table
(
:uploads
)
}
let!
(
:uploads
)
{
table
(
:uploads
)
}
before
do
# Prevent the TrackUntrackedUploads migration from running PrepareUntrackedUploads job
allow
(
BackgroundMigrationWorker
).
to
receive
(
:perform_async
).
and_return
(
true
)
end
context
'with untracked files and tracked files in untracked_files_for_uploads'
do
context
'with untracked files and tracked files in untracked_files_for_uploads'
do
let!
(
:appearance
)
{
create
(
:appearance
,
logo:
uploaded_file
,
header_logo:
uploaded_file
)
}
let!
(
:appearance
)
{
create
(
:appearance
,
logo:
uploaded_file
,
header_logo:
uploaded_file
)
}
let!
(
:user1
)
{
create
(
:user
,
:with_avatar
)
}
let!
(
:user1
)
{
create
(
:user
,
:with_avatar
)
}
...
@@ -35,7 +43,7 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
...
@@ -35,7 +43,7 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
it
'adds untracked files to the uploads table'
do
it
'adds untracked files to the uploads table'
do
expect
do
expect
do
described_class
.
new
.
perform
(
1
,
1000
)
subject
.
perform
(
1
,
1000
)
end
.
to
change
{
uploads
.
count
}.
from
(
4
).
to
(
8
)
end
.
to
change
{
uploads
.
count
}.
from
(
4
).
to
(
8
)
expect
(
user2
.
uploads
.
count
).
to
eq
(
1
)
expect
(
user2
.
uploads
.
count
).
to
eq
(
1
)
...
@@ -44,13 +52,15 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
...
@@ -44,13 +52,15 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
end
end
it
'sets all added or confirmed tracked files to tracked'
do
it
'sets all added or confirmed tracked files to tracked'
do
expect
(
subject
).
to
receive
(
:drop_temp_table_if_finished
)
# Don't drop the table so we can look at it
expect
do
expect
do
described_class
.
new
.
perform
(
1
,
1000
)
subject
.
perform
(
1
,
1000
)
end
.
to
change
{
untracked_files_for_uploads
.
where
(
tracked:
true
).
count
}.
from
(
0
).
to
(
8
)
end
.
to
change
{
untracked_files_for_uploads
.
where
(
tracked:
true
).
count
}.
from
(
0
).
to
(
8
)
end
end
it
'does not create duplicate uploads of already tracked files'
do
it
'does not create duplicate uploads of already tracked files'
do
described_class
.
new
.
perform
(
1
,
1000
)
subject
.
perform
(
1
,
1000
)
expect
(
user1
.
uploads
.
count
).
to
eq
(
1
)
expect
(
user1
.
uploads
.
count
).
to
eq
(
1
)
expect
(
project1
.
uploads
.
count
).
to
eq
(
2
)
expect
(
project1
.
uploads
.
count
).
to
eq
(
2
)
...
@@ -62,7 +72,7 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
...
@@ -62,7 +72,7 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
end_id
=
untracked_files_for_uploads
.
all
.
to_a
[
3
].
id
end_id
=
untracked_files_for_uploads
.
all
.
to_a
[
3
].
id
expect
do
expect
do
described_class
.
new
.
perform
(
start_id
,
end_id
)
subject
.
perform
(
start_id
,
end_id
)
end
.
to
change
{
uploads
.
count
}.
from
(
4
).
to
(
6
)
end
.
to
change
{
uploads
.
count
}.
from
(
4
).
to
(
6
)
expect
(
user1
.
uploads
.
count
).
to
eq
(
1
)
expect
(
user1
.
uploads
.
count
).
to
eq
(
1
)
...
@@ -80,7 +90,7 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
...
@@ -80,7 +90,7 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
end_id
=
untracked_files_for_uploads
.
all
.
to_a
[
7
].
id
end_id
=
untracked_files_for_uploads
.
all
.
to_a
[
7
].
id
expect
do
expect
do
described_class
.
new
.
perform
(
start_id
,
end_id
)
subject
.
perform
(
start_id
,
end_id
)
end
.
to
change
{
uploads
.
count
}.
from
(
4
).
to
(
6
)
end
.
to
change
{
uploads
.
count
}.
from
(
4
).
to
(
6
)
expect
(
user1
.
uploads
.
count
).
to
eq
(
1
)
expect
(
user1
.
uploads
.
count
).
to
eq
(
1
)
...
@@ -92,12 +102,24 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
...
@@ -92,12 +102,24 @@ describe Gitlab::BackgroundMigration::PopulateUntrackedUploads, :migration, :sid
# Only 4 have been either confirmed or added to uploads
# Only 4 have been either confirmed or added to uploads
expect
(
untracked_files_for_uploads
.
where
(
tracked:
true
).
count
).
to
eq
(
4
)
expect
(
untracked_files_for_uploads
.
where
(
tracked:
true
).
count
).
to
eq
(
4
)
end
end
it
'does not drop the temporary tracking table after processing the batch, if there are still untracked rows'
do
subject
.
perform
(
1
,
untracked_files_for_uploads
.
last
.
id
-
1
)
expect
(
table_exists?
(
:untracked_files_for_uploads
)).
to
be_truthy
end
it
'drops the temporary tracking table after processing the batch, if there are no untracked rows left'
do
subject
.
perform
(
1
,
untracked_files_for_uploads
.
last
.
id
)
expect
(
table_exists?
(
:untracked_files_for_uploads
)).
to
be_falsey
end
end
end
context
'with no untracked files'
do
context
'with no untracked files'
do
it
'does not add to the uploads table (and does not raise error)'
do
it
'does not add to the uploads table (and does not raise error)'
do
expect
do
expect
do
described_class
.
new
.
perform
(
1
,
1000
)
subject
.
perform
(
1
,
1000
)
end
.
not_to
change
{
uploads
.
count
}.
from
(
0
)
end
.
not_to
change
{
uploads
.
count
}.
from
(
0
)
end
end
end
end
...
...
spec/lib/gitlab/background_migration/prepare_untracked_uploads_spec.rb
View file @
dd8680a7
...
@@ -17,6 +17,13 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
...
@@ -17,6 +17,13 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
end
end
end
end
around
do
|
example
|
# Especially important so the follow-up migration does not get run
Sidekiq
::
Testing
.
fake!
do
example
.
run
end
end
context
'when files were uploaded before and after hashed storage was enabled'
do
context
'when files were uploaded before and after hashed storage was enabled'
do
let!
(
:appearance
)
{
create
(
:appearance
,
logo:
uploaded_file
,
header_logo:
uploaded_file
)
}
let!
(
:appearance
)
{
create
(
:appearance
,
logo:
uploaded_file
,
header_logo:
uploaded_file
)
}
let!
(
:user
)
{
create
(
:user
,
:with_avatar
)
}
let!
(
:user
)
{
create
(
:user
,
:with_avatar
)
}
...
@@ -34,39 +41,31 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
...
@@ -34,39 +41,31 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
end
end
it
'adds unhashed files to the untracked_files_for_uploads table'
do
it
'adds unhashed files to the untracked_files_for_uploads table'
do
Sidekiq
::
Testing
.
fake!
do
expect
do
expect
do
described_class
.
new
.
perform
described_class
.
new
.
perform
end
.
to
change
{
untracked_files_for_uploads
.
count
}.
from
(
0
).
to
(
5
)
end
.
to
change
{
untracked_files_for_uploads
.
count
}.
from
(
0
).
to
(
5
)
end
end
end
it
'adds files with paths relative to CarrierWave.root'
do
it
'adds files with paths relative to CarrierWave.root'
do
Sidekiq
::
Testing
.
fake!
do
described_class
.
new
.
perform
described_class
.
new
.
perform
untracked_files_for_uploads
.
all
.
each
do
|
file
|
untracked_files_for_uploads
.
all
.
each
do
|
file
|
expect
(
file
.
path
.
start_with?
(
'uploads/'
)).
to
be_truthy
expect
(
file
.
path
.
start_with?
(
'uploads/'
)).
to
be_truthy
end
end
end
end
end
it
'does not add hashed files to the untracked_files_for_uploads table'
do
it
'does not add hashed files to the untracked_files_for_uploads table'
do
Sidekiq
::
Testing
.
fake!
do
described_class
.
new
.
perform
described_class
.
new
.
perform
hashed_file_path
=
project2
.
uploads
.
where
(
uploader:
'FileUploader'
).
first
.
path
hashed_file_path
=
project2
.
uploads
.
where
(
uploader:
'FileUploader'
).
first
.
path
expect
(
untracked_files_for_uploads
.
where
(
"path like '%
#{
hashed_file_path
}
%'"
).
exists?
).
to
be_falsey
expect
(
untracked_files_for_uploads
.
where
(
"path like '%
#{
hashed_file_path
}
%'"
).
exists?
).
to
be_falsey
end
end
end
it
'correctly schedules the follow-up background migration jobs'
do
it
'correctly schedules the follow-up background migration jobs'
do
Sidekiq
::
Testing
.
fake!
do
described_class
.
new
.
perform
described_class
.
new
.
perform
expect
(
described_class
::
FOLLOW_UP_MIGRATION
).
to
be_scheduled_migration
(
1
,
5
)
expect
(
described_class
::
FOLLOW_UP_MIGRATION
).
to
be_scheduled_migration
(
1
,
5
)
expect
(
BackgroundMigrationWorker
.
jobs
.
size
).
to
eq
(
1
)
expect
(
BackgroundMigrationWorker
.
jobs
.
size
).
to
eq
(
1
)
end
end
end
# E.g. from a previous failed run of this background migration
# E.g. from a previous failed run of this background migration
context
'when there is existing data in untracked_files_for_uploads'
do
context
'when there is existing data in untracked_files_for_uploads'
do
...
@@ -75,13 +74,11 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
...
@@ -75,13 +74,11 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
end
end
it
'does not error or produce duplicates of existing data'
do
it
'does not error or produce duplicates of existing data'
do
Sidekiq
::
Testing
.
fake!
do
expect
do
expect
do
described_class
.
new
.
perform
described_class
.
new
.
perform
end
.
not_to
change
{
untracked_files_for_uploads
.
count
}.
from
(
5
)
end
.
not_to
change
{
untracked_files_for_uploads
.
count
}.
from
(
5
)
end
end
end
end
end
# E.g. The installation is in use at the time of migration, and someone has
# E.g. The installation is in use at the time of migration, and someone has
# just uploaded a file
# just uploaded a file
...
@@ -97,24 +94,20 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
...
@@ -97,24 +94,20 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
end
end
it
'does not add files from /uploads/tmp'
do
it
'does not add files from /uploads/tmp'
do
Sidekiq
::
Testing
.
fake!
do
expect
do
expect
do
described_class
.
new
.
perform
described_class
.
new
.
perform
end
.
to
change
{
untracked_files_for_uploads
.
count
}.
from
(
0
).
to
(
5
)
end
.
to
change
{
untracked_files_for_uploads
.
count
}.
from
(
0
).
to
(
5
)
end
end
end
end
end
end
end
# Very new or lightly-used installations that are running this migration
# Very new or lightly-used installations that are running this migration
# may not have an upload directory because they have no uploads.
# may not have an upload directory because they have no uploads.
context
'when no files were ever uploaded'
do
context
'when no files were ever uploaded'
do
it
'does not add to the untracked_files_for_uploads table (and does not raise error)'
do
it
'does not add to the untracked_files_for_uploads table (and does not raise error)'
do
Sidekiq
::
Testing
.
fake!
do
expect
do
expect
do
described_class
.
new
.
perform
described_class
.
new
.
perform
end
.
not_to
change
{
untracked_files_for_uploads
.
count
}.
from
(
0
)
end
.
not_to
change
{
untracked_files_for_uploads
.
count
}.
from
(
0
)
end
end
end
end
end
end
end
spec/migrations/track_untracked_uploads_spec.rb
View file @
dd8680a7
require
'spec_helper'
require
'spec_helper'
require
Rails
.
root
.
join
(
'db'
,
'post_migrate'
,
'20171103140253_track_untracked_uploads'
)
require
Rails
.
root
.
join
(
'db'
,
'post_migrate'
,
'20171103140253_track_untracked_uploads'
)
describe
TrackUntrackedUploads
,
:migration
,
:sidekiq
do
describe
TrackUntrackedUploads
,
:migration
,
:sidekiq
,
:temp_table_may_drop
do
include
TrackUntrackedUploadsHelpers
include
TrackUntrackedUploadsHelpers
let
(
:untracked_files_for_uploads
)
{
table
(
:untracked_files_for_uploads
)
}
let
(
:untracked_files_for_uploads
)
{
table
(
:untracked_files_for_uploads
)
}
...
@@ -18,14 +18,20 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
...
@@ -18,14 +18,20 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
end
end
end
end
it
'correctly schedules the follow-up background migration'
do
context
'before running the background migration'
do
around
do
|
example
|
# Especially important so the follow-up migration does not get run
Sidekiq
::
Testing
.
fake!
do
Sidekiq
::
Testing
.
fake!
do
example
.
run
end
end
it
'correctly schedules the follow-up background migration'
do
migrate!
migrate!
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
expect
(
BackgroundMigrationWorker
.
jobs
.
size
).
to
eq
(
1
)
expect
(
BackgroundMigrationWorker
.
jobs
.
size
).
to
eq
(
1
)
end
end
end
it
'ensures the untracked_files_for_uploads table exists'
do
it
'ensures the untracked_files_for_uploads table exists'
do
expect
do
expect
do
...
@@ -47,6 +53,7 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
...
@@ -47,6 +53,7 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
record
=
untracked_files_for_uploads
.
create!
(
path:
long_path
)
record
=
untracked_files_for_uploads
.
create!
(
path:
long_path
)
expect
(
record
.
reload
.
path
.
size
).
to
eq
(
519
)
expect
(
record
.
reload
.
path
.
size
).
to
eq
(
519
)
end
end
end
context
'with tracked and untracked uploads'
do
context
'with tracked and untracked uploads'
do
let!
(
:appearance
)
{
create
(
:appearance
,
logo:
uploaded_file
,
header_logo:
uploaded_file
)
}
let!
(
:appearance
)
{
create
(
:appearance
,
logo:
uploaded_file
,
header_logo:
uploaded_file
)
}
...
@@ -77,7 +84,6 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
...
@@ -77,7 +84,6 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
end
end
it
'tracks untracked uploads'
do
it
'tracks untracked uploads'
do
Sidekiq
::
Testing
.
inline!
do
expect
do
expect
do
migrate!
migrate!
end
.
to
change
{
uploads
.
count
}.
from
(
4
).
to
(
8
)
end
.
to
change
{
uploads
.
count
}.
from
(
4
).
to
(
8
)
...
@@ -87,10 +93,8 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
...
@@ -87,10 +93,8 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
expect
(
project2
.
reload
.
uploads
.
first
.
attributes
).
to
include
(
@project2_avatar_attributes
)
expect
(
project2
.
reload
.
uploads
.
first
.
attributes
).
to
include
(
@project2_avatar_attributes
)
expect
(
project2
.
uploads
.
last
.
attributes
).
to
include
(
@project2_markdown_attributes
)
expect
(
project2
.
uploads
.
last
.
attributes
).
to
include
(
@project2_markdown_attributes
)
end
end
end
it
'ignores already-tracked uploads'
do
it
'ignores already-tracked uploads'
do
Sidekiq
::
Testing
.
inline!
do
migrate!
migrate!
expect
(
appearance
.
reload
.
uploads
.
where
(
"path like '%/logo/%'"
).
first
.
attributes
).
to
include
(
@appearance_logo_attributes
)
expect
(
appearance
.
reload
.
uploads
.
where
(
"path like '%/logo/%'"
).
first
.
attributes
).
to
include
(
@appearance_logo_attributes
)
...
@@ -98,15 +102,11 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
...
@@ -98,15 +102,11 @@ describe TrackUntrackedUploads, :migration, :sidekiq do
expect
(
project1
.
reload
.
uploads
.
first
.
attributes
).
to
include
(
@project1_avatar_attributes
)
expect
(
project1
.
reload
.
uploads
.
first
.
attributes
).
to
include
(
@project1_avatar_attributes
)
expect
(
project1
.
uploads
.
last
.
attributes
).
to
include
(
@project1_markdown_attributes
)
expect
(
project1
.
uploads
.
last
.
attributes
).
to
include
(
@project1_markdown_attributes
)
end
end
end
it
'all untracked_files_for_uploads records are marked as tracked'
do
it
'the temporary table untracked_files_for_uploads no longer exists'
do
Sidekiq
::
Testing
.
inline!
do
migrate!
migrate!
expect
(
untracked_files_for_uploads
.
count
).
to
eq
(
8
)
expect
(
table_exists?
(
:untracked_files_for_uploads
)).
to
be_falsey
expect
(
untracked_files_for_uploads
.
count
).
to
eq
(
untracked_files_for_uploads
.
where
(
tracked:
true
).
count
)
end
end
end
end
end
end
end
spec/support/track_untracked_uploads_helpers.rb
View file @
dd8680a7
...
@@ -3,4 +3,18 @@ module TrackUntrackedUploadsHelpers
...
@@ -3,4 +3,18 @@ module TrackUntrackedUploadsHelpers
fixture_path
=
Rails
.
root
.
join
(
'spec'
,
'fixtures'
,
'rails_sample.jpg'
)
fixture_path
=
Rails
.
root
.
join
(
'spec'
,
'fixtures'
,
'rails_sample.jpg'
)
fixture_file_upload
(
fixture_path
)
fixture_file_upload
(
fixture_path
)
end
end
def
recreate_temp_table_if_dropped
TrackUntrackedUploads
.
new
.
ensure_temporary_tracking_table_exists
end
RSpec
.
configure
do
|
config
|
config
.
after
(
:each
,
:temp_table_may_drop
)
do
recreate_temp_table_if_dropped
end
config
.
after
(
:context
,
:temp_table_may_drop
)
do
recreate_temp_table_if_dropped
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