Commit 93ea3234 authored by Nick Thomas's avatar Nick Thomas

Use the DatabaseCleaner 'deletion' strategy instead of 'truncation'

parent 5a4fb8f0
require 'database_cleaner' require 'database_cleaner'
DatabaseCleaner[:active_record].strategy = :truncation DatabaseCleaner[:active_record].strategy = :deletion
Spinach.hooks.before_scenario do Spinach.hooks.before_scenario do
DatabaseCleaner.start DatabaseCleaner.start
......
...@@ -108,7 +108,7 @@ describe 'Merge request > User resolves diff notes and discussions', :js do ...@@ -108,7 +108,7 @@ describe 'Merge request > User resolves diff notes and discussions', :js do
it 'shows resolved discussion when toggled' do it 'shows resolved discussion when toggled' do
find(".timeline-content .discussion[data-discussion-id='#{note.discussion_id}'] .discussion-toggle-button").click find(".timeline-content .discussion[data-discussion-id='#{note.discussion_id}'] .discussion-toggle-button").click
expect(page.find(".timeline-content #note_#{note.noteable_id}")).to be_visible expect(page.find(".timeline-content #note_#{note.id}")).to be_visible
end end
end end
......
...@@ -11,8 +11,8 @@ describe('Pipelines table in Commits and Merge requests', () => { ...@@ -11,8 +11,8 @@ describe('Pipelines table in Commits and Merge requests', () => {
beforeEach(() => { beforeEach(() => {
PipelinesTable = Vue.extend(pipelinesTable); PipelinesTable = Vue.extend(pipelinesTable);
const pipelines = getJSONFixture(jsonFixtureName).pipelines; const pipelines = getJSONFixture(jsonFixtureName).pipelines; // sorted by id, descending
pipeline = pipelines.find(p => p.id === 1); pipeline = pipelines[2];
}); });
describe('successful request', () => { describe('successful request', () => {
......
...@@ -23,10 +23,10 @@ describe('Pipelines Table Row', () => { ...@@ -23,10 +23,10 @@ describe('Pipelines Table Row', () => {
preloadFixtures(jsonFixtureName); preloadFixtures(jsonFixtureName);
beforeEach(() => { beforeEach(() => {
const pipelines = getJSONFixture(jsonFixtureName).pipelines; const pipelines = getJSONFixture(jsonFixtureName).pipelines; // sorted by id, descending
pipeline = pipelines.find(p => p.id === 1); pipeline = pipelines[2];
pipelineWithoutAuthor = pipelines.find(p => p.id === 2); pipelineWithoutAuthor = pipelines[1];
pipelineWithoutCommit = pipelines.find(p => p.id === 3); pipelineWithoutCommit = pipelines[0];
}); });
afterEach(() => { afterEach(() => {
......
...@@ -12,8 +12,8 @@ describe('Pipelines Table', () => { ...@@ -12,8 +12,8 @@ describe('Pipelines Table', () => {
beforeEach(() => { beforeEach(() => {
PipelinesTableComponent = Vue.extend(pipelinesTableComp); PipelinesTableComponent = Vue.extend(pipelinesTableComp);
const pipelines = getJSONFixture(jsonFixtureName).pipelines; const pipelines = getJSONFixture(jsonFixtureName).pipelines; // ordered by id, descending
pipeline = pipelines.find(p => p.id === 1); pipeline = pipelines[2];
}); });
describe('table', () => { describe('table', () => {
......
require 'spec_helper' require 'spec_helper'
describe Gitlab::BackgroundMigration::DeserializeMergeRequestDiffsAndCommits, :truncate, :migration, schema: 20171114162227 do describe Gitlab::BackgroundMigration::DeserializeMergeRequestDiffsAndCommits, :migration, schema: 20171114162227 do
let(:merge_request_diffs) { table(:merge_request_diffs) } let(:merge_request_diffs) { table(:merge_request_diffs) }
let(:merge_requests) { table(:merge_requests) } let(:merge_requests) { table(:merge_requests) }
......
require 'spec_helper' require 'spec_helper'
describe Gitlab::BackgroundMigration::MigrateSystemUploadsToNewFolder do describe Gitlab::BackgroundMigration::MigrateSystemUploadsToNewFolder, :delete do
let(:migration) { described_class.new } let(:migration) { described_class.new }
before do before do
...@@ -8,7 +8,7 @@ describe Gitlab::BackgroundMigration::MigrateSystemUploadsToNewFolder do ...@@ -8,7 +8,7 @@ describe Gitlab::BackgroundMigration::MigrateSystemUploadsToNewFolder do
end end
describe '#perform' do describe '#perform' do
it 'renames the path of system-uploads', :truncate do it 'renames the path of system-uploads' do
upload = create(:upload, model: create(:project), path: 'uploads/system/project/avatar.jpg') upload = create(:upload, model: create(:project), path: 'uploads/system/project/avatar.jpg')
migration.perform('uploads/system/', 'uploads/-/system/') migration.perform('uploads/system/', 'uploads/-/system/')
......
require 'spec_helper' require 'spec_helper'
describe Gitlab::Database::RenameReservedPathsMigration::V1::RenameBase, :truncate do describe Gitlab::Database::RenameReservedPathsMigration::V1::RenameBase, :delete do
let(:migration) { FakeRenameReservedPathMigrationV1.new } let(:migration) { FakeRenameReservedPathMigrationV1.new }
let(:subject) { described_class.new(['the-path'], migration) } let(:subject) { described_class.new(['the-path'], migration) }
......
require 'spec_helper' require 'spec_helper'
describe Gitlab::Database::RenameReservedPathsMigration::V1::RenameNamespaces, :truncate do describe Gitlab::Database::RenameReservedPathsMigration::V1::RenameNamespaces, :delete do
let(:migration) { FakeRenameReservedPathMigrationV1.new } let(:migration) { FakeRenameReservedPathMigrationV1.new }
let(:subject) { described_class.new(['the-path'], migration) } let(:subject) { described_class.new(['the-path'], migration) }
let(:namespace) { create(:group, name: 'the-path') } let(:namespace) { create(:group, name: 'the-path') }
......
require 'spec_helper' require 'spec_helper'
describe Gitlab::Database::RenameReservedPathsMigration::V1::RenameProjects, :truncate do describe Gitlab::Database::RenameReservedPathsMigration::V1::RenameProjects, :delete do
let(:migration) { FakeRenameReservedPathMigrationV1.new } let(:migration) { FakeRenameReservedPathMigrationV1.new }
let(:subject) { described_class.new(['the-path'], migration) } let(:subject) { described_class.new(['the-path'], migration) }
let(:project) do let(:project) do
......
...@@ -13,7 +13,7 @@ shared_examples 'renames child namespaces' do |type| ...@@ -13,7 +13,7 @@ shared_examples 'renames child namespaces' do |type|
end end
end end
describe Gitlab::Database::RenameReservedPathsMigration::V1, :truncate do describe Gitlab::Database::RenameReservedPathsMigration::V1, :delete do
let(:subject) { FakeRenameReservedPathMigrationV1.new } let(:subject) { FakeRenameReservedPathMigrationV1.new }
before do before do
......
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170508170547_add_head_pipeline_for_each_merge_request.rb') require Rails.root.join('db', 'post_migrate', '20170508170547_add_head_pipeline_for_each_merge_request.rb')
describe AddHeadPipelineForEachMergeRequest, :truncate do describe AddHeadPipelineForEachMergeRequest, :delete do
include ProjectForksHelper include ProjectForksHelper
let(:migration) { described_class.new } let(:migration) { described_class.new }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170803090603_calculate_conv_dev_index_percentages.rb') require Rails.root.join('db', 'post_migrate', '20170803090603_calculate_conv_dev_index_percentages.rb')
describe CalculateConvDevIndexPercentages, truncate: true do describe CalculateConvDevIndexPercentages, :delete do
let(:migration) { described_class.new } let(:migration) { described_class.new }
let!(:conv_dev_index) do let!(:conv_dev_index) do
create(:conversational_development_index_metric, create(:conversational_development_index_metric,
......
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170518231126_fix_wrongly_renamed_routes.rb') require Rails.root.join('db', 'post_migrate', '20170518231126_fix_wrongly_renamed_routes.rb')
describe FixWronglyRenamedRoutes, :truncate, :migration do describe FixWronglyRenamedRoutes, :migration do
let(:subject) { described_class.new } let(:subject) { described_class.new }
let(:namespaces_table) { table(:namespaces) } let(:namespaces_table) { table(:namespaces) }
let(:projects_table) { table(:projects) } let(:projects_table) { table(:projects) }
......
...@@ -8,10 +8,10 @@ describe MigrateIssuesToGhostUser, :migration do ...@@ -8,10 +8,10 @@ describe MigrateIssuesToGhostUser, :migration do
let(:users) { table(:users) } let(:users) { table(:users) }
before do before do
projects.create!(name: 'gitlab') project = projects.create!(name: 'gitlab')
user = users.create(email: 'test@example.com') user = users.create(email: 'test@example.com')
issues.create(title: 'Issue 1', author_id: nil, project_id: 1) issues.create(title: 'Issue 1', author_id: nil, project_id: project.id)
issues.create(title: 'Issue 2', author_id: user.id, project_id: 1) issues.create(title: 'Issue 2', author_id: user.id, project_id: project.id)
end end
context 'when ghost user exists' do context 'when ghost user exists' do
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170324160416_migrate_user_activities_to_users_last_activity_on.rb') require Rails.root.join('db', 'post_migrate', '20170324160416_migrate_user_activities_to_users_last_activity_on.rb')
describe MigrateUserActivitiesToUsersLastActivityOn, :clean_gitlab_redis_shared_state, :truncate do describe MigrateUserActivitiesToUsersLastActivityOn, :clean_gitlab_redis_shared_state, :delete do
let(:migration) { described_class.new } let(:migration) { described_class.new }
let!(:user_active_1) { create(:user) } let!(:user_active_1) { create(:user) }
let!(:user_active_2) { create(:user) } let!(:user_active_2) { create(:user) }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170406142253_migrate_user_project_view.rb') require Rails.root.join('db', 'post_migrate', '20170406142253_migrate_user_project_view.rb')
describe MigrateUserProjectView, :truncate do describe MigrateUserProjectView, :delete do
let(:migration) { described_class.new } let(:migration) { described_class.new }
let!(:user) { create(:user, project_view: 'readme') } let!(:user) { create(:user, project_view: 'readme') }
......
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170815060945_remove_duplicate_mr_events.rb') require Rails.root.join('db', 'post_migrate', '20170815060945_remove_duplicate_mr_events.rb')
describe RemoveDuplicateMrEvents, truncate: true do describe RemoveDuplicateMrEvents, :delete do
let(:migration) { described_class.new } let(:migration) { described_class.new }
describe '#up' do describe '#up' do
......
...@@ -5,8 +5,8 @@ require Rails.root.join('db', 'post_migrate', '20170313133418_rename_more_reserv ...@@ -5,8 +5,8 @@ require Rails.root.join('db', 'post_migrate', '20170313133418_rename_more_reserv
# This migration uses multiple threads, and thus different transactions. This # This migration uses multiple threads, and thus different transactions. This
# means data created in this spec may not be visible to some threads. To work # means data created in this spec may not be visible to some threads. To work
# around this we use the TRUNCATE cleaning strategy. # around this we use the DELETE cleaning strategy.
describe RenameMoreReservedProjectNames, truncate: true do describe RenameMoreReservedProjectNames, :delete do
let(:migration) { described_class.new } let(:migration) { described_class.new }
let!(:project) { create(:project) } let!(:project) { create(:project) }
......
...@@ -5,8 +5,8 @@ require Rails.root.join('db', 'post_migrate', '20161221153951_rename_reserved_pr ...@@ -5,8 +5,8 @@ require Rails.root.join('db', 'post_migrate', '20161221153951_rename_reserved_pr
# This migration uses multiple threads, and thus different transactions. This # This migration uses multiple threads, and thus different transactions. This
# means data created in this spec may not be visible to some threads. To work # means data created in this spec may not be visible to some threads. To work
# around this we use the TRUNCATE cleaning strategy. # around this we use the DELETE cleaning strategy.
describe RenameReservedProjectNames, truncate: true do describe RenameReservedProjectNames, :delete do
let(:migration) { described_class.new } let(:migration) { described_class.new }
let!(:project) { create(:project) } let!(:project) { create(:project) }
......
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170518200835_rename_users_with_renamed_namespace.rb') require Rails.root.join('db', 'post_migrate', '20170518200835_rename_users_with_renamed_namespace.rb')
describe RenameUsersWithRenamedNamespace, truncate: true do describe RenameUsersWithRenamedNamespace, :delete do
it 'renames a user that had their namespace renamed to the namespace path' do it 'renames a user that had their namespace renamed to the namespace path' do
other_user = create(:user, username: 'kodingu') other_user = create(:user, username: 'kodingu')
other_user1 = create(:user, username: 'api0') other_user1 = create(:user, username: 'api0')
......
require 'spec_helper' require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170503004427_update_retried_for_ci_build.rb') require Rails.root.join('db', 'post_migrate', '20170503004427_update_retried_for_ci_build.rb')
describe UpdateRetriedForCiBuild, truncate: true do describe UpdateRetriedForCiBuild, :delete do
let(:pipeline) { create(:ci_pipeline) } let(:pipeline) { create(:ci_pipeline) }
let!(:build_old) { create(:ci_build, pipeline: pipeline, name: 'test') } let!(:build_old) { create(:ci_build, pipeline: pipeline, name: 'test') }
let!(:build_new) { create(:ci_build, pipeline: pipeline, name: 'test') } let!(:build_new) { create(:ci_build, pipeline: pipeline, name: 'test') }
......
require 'spec_helper' require 'spec_helper'
describe Avatarable do describe Avatarable do
subject { create(:project, avatar: fixture_file_upload(File.join(Rails.root, 'spec/fixtures/dk.png'))) } set(:project) { create(:project, avatar: fixture_file_upload(File.join(Rails.root, 'spec/fixtures/dk.png'))) }
let(:gitlab_host) { "https://gitlab.example.com" } let(:gitlab_host) { "https://gitlab.example.com" }
let(:relative_url_root) { "/gitlab" } let(:relative_url_root) { "/gitlab" }
let(:asset_host) { "https://gitlab-assets.example.com" } let(:asset_host) { 'https://gitlab-assets.example.com' }
before do before do
stub_config_setting(base_url: gitlab_host) stub_config_setting(base_url: gitlab_host)
...@@ -15,29 +15,32 @@ describe Avatarable do ...@@ -15,29 +15,32 @@ describe Avatarable do
describe '#avatar_path' do describe '#avatar_path' do
using RSpec::Parameterized::TableSyntax using RSpec::Parameterized::TableSyntax
where(:has_asset_host, :visibility_level, :only_path, :avatar_path) do where(:has_asset_host, :visibility_level, :only_path, :avatar_path_prefix) do
true | Project::PRIVATE | true | [gitlab_host, relative_url_root, subject.avatar.url] true | Project::PRIVATE | true | [gitlab_host, relative_url_root]
true | Project::PRIVATE | false | [gitlab_host, relative_url_root, subject.avatar.url] true | Project::PRIVATE | false | [gitlab_host, relative_url_root]
true | Project::INTERNAL | true | [gitlab_host, relative_url_root, subject.avatar.url] true | Project::INTERNAL | true | [gitlab_host, relative_url_root]
true | Project::INTERNAL | false | [gitlab_host, relative_url_root, subject.avatar.url] true | Project::INTERNAL | false | [gitlab_host, relative_url_root]
true | Project::PUBLIC | true | [subject.avatar.url] true | Project::PUBLIC | true | []
true | Project::PUBLIC | false | [asset_host, subject.avatar.url] true | Project::PUBLIC | false | [asset_host]
false | Project::PRIVATE | true | [relative_url_root, subject.avatar.url] false | Project::PRIVATE | true | [relative_url_root]
false | Project::PRIVATE | false | [gitlab_host, relative_url_root, subject.avatar.url] false | Project::PRIVATE | false | [gitlab_host, relative_url_root]
false | Project::INTERNAL | true | [relative_url_root, subject.avatar.url] false | Project::INTERNAL | true | [relative_url_root]
false | Project::INTERNAL | false | [gitlab_host, relative_url_root, subject.avatar.url] false | Project::INTERNAL | false | [gitlab_host, relative_url_root]
false | Project::PUBLIC | true | [relative_url_root, subject.avatar.url] false | Project::PUBLIC | true | [relative_url_root]
false | Project::PUBLIC | false | [gitlab_host, relative_url_root, subject.avatar.url] false | Project::PUBLIC | false | [gitlab_host, relative_url_root]
end end
with_them do with_them do
before do before do
allow(ActionController::Base).to receive(:asset_host).and_return(has_asset_host ? asset_host : nil) allow(ActionController::Base).to receive(:asset_host) { has_asset_host && asset_host }
subject.visibility_level = visibility_level
project.visibility_level = visibility_level
end end
let(:avatar_path) { (avatar_path_prefix + [project.avatar.url]).join }
it 'returns the expected avatar path' do it 'returns the expected avatar path' do
expect(subject.avatar_path(only_path: only_path)).to eq(avatar_path.join) expect(project.avatar_path(only_path: only_path)).to eq(avatar_path)
end end
end end
end end
......
...@@ -488,7 +488,7 @@ describe Member do ...@@ -488,7 +488,7 @@ describe Member do
member.accept_invite!(user) member.accept_invite!(user)
end end
it "refreshes user's authorized projects", :truncate do it "refreshes user's authorized projects", :delete do
project = member.source project = member.source
expect(user.authorized_projects).not_to include(project) expect(user.authorized_projects).not_to include(project)
...@@ -523,7 +523,7 @@ describe Member do ...@@ -523,7 +523,7 @@ describe Member do
end end
end end
describe "destroying a record", :truncate do describe "destroying a record", :delete do
it "refreshes user's authorized projects" do it "refreshes user's authorized projects" do
project = create(:project, :private) project = create(:project, :private)
user = create(:user) user = create(:user)
......
...@@ -30,7 +30,7 @@ describe ProjectGroupLink do ...@@ -30,7 +30,7 @@ describe ProjectGroupLink do
end end
end end
describe "destroying a record", :truncate do describe "destroying a record", :delete do
it "refreshes group users' authorized projects" do it "refreshes group users' authorized projects" do
project = create(:project, :private) project = create(:project, :private)
group = create(:group) group = create(:group)
......
...@@ -1569,7 +1569,7 @@ describe User do ...@@ -1569,7 +1569,7 @@ describe User do
it { is_expected.to eq([private_group]) } it { is_expected.to eq([private_group]) }
end end
describe '#authorized_projects', :truncate do describe '#authorized_projects', :delete do
context 'with a minimum access level' do context 'with a minimum access level' do
it 'includes projects for which the user is an owner' do it 'includes projects for which the user is an owner' do
user = create(:user) user = create(:user)
......
RSpec.configure do |config| RSpec.configure do |config|
# Ensure all sequences are reset at the start of the suite run
config.before(:suite) do config.before(:suite) do
DatabaseCleaner.clean_with(:truncation) DatabaseCleaner.clean_with(:truncation)
end end
config.append_after(:context) do config.append_after(:context) do
DatabaseCleaner.clean_with(:truncation, cache_tables: false) DatabaseCleaner.clean_with(:deletion, cache_tables: false)
end end
config.before(:each) do config.before(:each) do
...@@ -12,15 +13,15 @@ RSpec.configure do |config| ...@@ -12,15 +13,15 @@ RSpec.configure do |config|
end end
config.before(:each, :js) do config.before(:each, :js) do
DatabaseCleaner.strategy = :truncation DatabaseCleaner.strategy = :deletion
end end
config.before(:each, :truncate) do config.before(:each, :delete) do
DatabaseCleaner.strategy = :truncation DatabaseCleaner.strategy = :deletion
end end
config.before(:each, :migration) do config.before(:each, :migration) do
DatabaseCleaner.strategy = :truncation, { cache_tables: false } DatabaseCleaner.strategy = :deletion, { cache_tables: false }
end end
config.before(:each) do config.before(:each) do
......
...@@ -143,15 +143,17 @@ shared_examples 'discussion comments' do |resource_name| ...@@ -143,15 +143,17 @@ shared_examples 'discussion comments' do |resource_name|
end end
if resource_name == 'merge request' if resource_name == 'merge request'
let(:note_id) { find("#{comments_selector} .note", match: :first)['data-note-id'] }
it 'shows resolved discussion when toggled' do it 'shows resolved discussion when toggled' do
click_button "Resolve discussion" click_button "Resolve discussion"
expect(page).to have_selector('.note-row-1', visible: true) expect(page).to have_selector(".note-row-#{note_id}", visible: true)
refresh refresh
click_button "Toggle discussion" click_button "Toggle discussion"
expect(page).to have_selector('.note-row-1', visible: true) expect(page).to have_selector(".note-row-#{note_id}", visible: true)
end end
end end
end end
......
...@@ -8,7 +8,7 @@ describe JobArtifactUploader do ...@@ -8,7 +8,7 @@ describe JobArtifactUploader do
describe '#store_dir' do describe '#store_dir' do
subject { uploader.store_dir } subject { uploader.store_dir }
let(:path) { "#{job_artifact.created_at.utc.strftime('%Y_%m_%d')}/#{job_artifact.project_id}/#{job_artifact.id}" } let(:path) { "#{job_artifact.created_at.utc.strftime('%Y_%m_%d')}/#{job_artifact.job_id}/#{job_artifact.id}" }
context 'when using local storage' do context 'when using local storage' do
it { is_expected.to start_with(local_path) } it { is_expected.to start_with(local_path) }
...@@ -45,7 +45,7 @@ describe JobArtifactUploader do ...@@ -45,7 +45,7 @@ describe JobArtifactUploader do
it { is_expected.to start_with(local_path) } it { is_expected.to start_with(local_path) }
it { is_expected.to include("/#{job_artifact.created_at.utc.strftime('%Y_%m_%d')}/") } it { is_expected.to include("/#{job_artifact.created_at.utc.strftime('%Y_%m_%d')}/") }
it { is_expected.to include("/#{job_artifact.project_id}/") } it { is_expected.to include("/#{job_artifact.job_id}/#{job_artifact.id}/") }
it { is_expected.to end_with("ci_build_artifacts.zip") } it { is_expected.to end_with("ci_build_artifacts.zip") }
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment