summaryrefslogtreecommitdiff
path: root/spec/migrations/20210430135954_copy_adoption_segments_namespace_spec.rb
blob: 0fb3029ec6a1ca8e4aaedd2cf098595529a5edac (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, feature_category: :devops_reports 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