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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-07-20 15:26:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-07-20 15:26:25 +0300
commita09983ae35713f5a2bbb100981116d31ce99826e (patch)
tree2ee2af7bd104d57086db360a7e6d8c9d5d43667a /spec/support/shared_examples/namespaces
parent18c5ab32b738c0b6ecb4d0df3994000482f34bd8 (diff)
Add latest changes from gitlab-org/gitlab@13-2-stable-ee
Diffstat (limited to 'spec/support/shared_examples/namespaces')
-rw-r--r--spec/support/shared_examples/namespaces/hierarchy_examples.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/support/shared_examples/namespaces/hierarchy_examples.rb b/spec/support/shared_examples/namespaces/hierarchy_examples.rb
new file mode 100644
index 00000000000..d5754f47be2
--- /dev/null
+++ b/spec/support/shared_examples/namespaces/hierarchy_examples.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+RSpec.shared_examples 'hierarchy with traversal_ids' do
+ # A convenient null node to represent the parent of root.
+ let(:null_node) { double(traversal_ids: []) }
+
+ # Walk the tree to assert that the current_node's traversal_id is always
+ # present and equal to it's parent's traversal_ids plus it's own ID.
+ def validate_traversal_ids(current_node, parent = null_node)
+ expect(current_node.traversal_ids).to be_present
+ expect(current_node.traversal_ids).to eq parent.traversal_ids + [current_node.id]
+
+ current_node.children.each do |child|
+ validate_traversal_ids(child, current_node)
+ end
+ end
+
+ it 'will be valid' do
+ validate_traversal_ids(root)
+ end
+end