summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/graphql/representation/submodule_tree_entry_spec.rb
blob: a3ff75f17e640c551743297ba5db4a8c4837939d (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
26
27
28
29
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Graphql::Representation::SubmoduleTreeEntry do
  let(:project) { create(:project, :repository) }
  let(:repository) { project.repository }

  describe '.decorate' do
    it 'returns array of SubmoduleTreeEntry' do
      entries = described_class.decorate(repository.tree)

      expect(entries.first).to be_a(described_class)

      expect(entries.map(&:web_url)).to contain_exactly(
        "https://gitlab.com/gitlab-org/gitlab-grack",
        "https://github.com/gitlabhq/gitlab-shell",
        "https://github.com/randx/six"
      )

      expect(entries.map(&:tree_url)).to contain_exactly(
        "https://gitlab.com/gitlab-org/gitlab-grack/tree/645f6c4c82fd3f5e06f67134450a570b795e55a6",
        "https://github.com/gitlabhq/gitlab-shell/tree/79bceae69cb5750d6567b223597999bfa91cb3b9",
        "https://github.com/randx/six/tree/409f37c4f05865e4fb208c771485f211a22c4c2d"
      )
    end
  end
end