Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210430135954_copy_adoption_segments_namespace_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25dfaa2e314a279aaf926915712b90bbd9875383 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'spec_helper'

require_migration!

RSpec.describe CopyAdoptionSegmentsNamespace, :migration do
  let(:namespaces_table) { table(:namespaces) }
  let(:segments_table) { table(:analytics_devops_adoption_segments) }

  before do
    namespaces_table.create!(id: 123, name: 'group1', path: 'group1')
    namespaces_table.create!(id: 124, name: 'group2', path: 'group2')

    segments_table.create!(id: 1, namespace_id: 123, display_namespace_id: nil)
    segments_table.create!(id: 2, namespace_id: 124, display_namespace_id: 123)
  end

  it 'updates all segments without display namespace' do
    migrate!

    expect(segments_table.find(1).display_namespace_id).to eq 123
    expect(segments_table.find(2).display_namespace_id).to eq 123
  end
end