2020-07-28 23:09:34 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Namespace::TraversalHierarchy, type: :model do
|
2021-04-17 20:07:23 +05:30
|
|
|
let_it_be(:root, reload: true) { create(:group, :with_hierarchy) }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
describe '.for_namespace' do
|
2021-04-17 20:07:23 +05:30
|
|
|
let(:hierarchy) { described_class.for_namespace(group) }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
context 'with root group' do
|
2021-04-17 20:07:23 +05:30
|
|
|
let(:group) { root }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
it { expect(hierarchy.root).to eq root }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with child group' do
|
2021-04-17 20:07:23 +05:30
|
|
|
let(:group) { root.children.first.children.first }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
it { expect(hierarchy.root).to eq root }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with group outside of hierarchy' do
|
2021-04-17 20:07:23 +05:30
|
|
|
let(:group) { create(:namespace) }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
it { expect(hierarchy.root).not_to eq root }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.new' do
|
2021-04-17 20:07:23 +05:30
|
|
|
let(:hierarchy) { described_class.new(group) }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
context 'with root group' do
|
2021-04-17 20:07:23 +05:30
|
|
|
let(:group) { root }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
it { expect(hierarchy.root).to eq root }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with child group' do
|
2021-04-17 20:07:23 +05:30
|
|
|
let(:group) { root.children.first }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
it { expect { hierarchy }.to raise_error(StandardError, 'Must specify a root node') }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#incorrect_traversal_ids' do
|
|
|
|
subject { described_class.new(root).incorrect_traversal_ids }
|
|
|
|
|
|
|
|
it { is_expected.to match_array Namespace.all }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#sync_traversal_ids!' do
|
|
|
|
let(:hierarchy) { described_class.new(root) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
hierarchy.sync_traversal_ids!
|
|
|
|
root.reload
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'hierarchy with traversal_ids'
|
|
|
|
it { expect(hierarchy.incorrect_traversal_ids).to be_empty }
|
|
|
|
end
|
|
|
|
end
|