summaryrefslogtreecommitdiff
path: root/spec/features/projects/network_graph_spec.rb
blob: 3e6166aa528b4a568b57c5e665130617bd6c3bb0 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
require 'spec_helper'

describe 'Project Network Graph', :js do
  let(:user) { create :user }
  let(:project) { create :project, :repository, namespace: user.namespace }

  before do
    sign_in(user)

    # Stub Graph max_size to speed up test (10 commits vs. 650)
    allow(Network::Graph).to receive(:max_count).and_return(10)
  end

  context 'when branch is master' do
    def switch_ref_to(ref_name)
      first('.js-project-refs-dropdown').click

      page.within '.project-refs-form' do
        click_link ref_name
      end
    end

    def click_show_only_selected_branch_checkbox
      find('#filter_ref').click
    end

    before do
      visit project_network_path(project, 'master')
    end

    it 'renders project network' do
      expect(page).to have_selector ".network-graph"
      expect(page).to have_selector '.dropdown-menu-toggle', text: "master"
      page.within '.network-graph' do
        expect(page).to have_content 'master'
      end
    end

    it 'switches ref to branch' do
      switch_ref_to('feature')

      expect(page).to have_selector '.dropdown-menu-toggle', text: 'feature'
      page.within '.network-graph' do
        expect(page).to have_content 'feature'
      end
    end

    it 'switches ref to tag' do
      switch_ref_to('v1.0.0')

      expect(page).to have_selector '.dropdown-menu-toggle', text: 'v1.0.0'
      page.within '.network-graph' do
        expect(page).to have_content 'v1.0.0'
      end
    end

    it 'renders by commit sha of "v1.0.0"' do
      page.within ".network-form" do
        fill_in 'extended_sha1', with: '6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9'
        find('button').click
      end

      expect(page).to have_selector ".network-graph"
      expect(page).to have_selector '.dropdown-menu-toggle', text: "master"
      page.within '.network-graph' do
        expect(page).to have_content 'v1.0.0'
      end
    end

    it 'filters select tag' do
      switch_ref_to('v1.0.0')

      expect(page).to have_css 'title', text: 'Graph ยท v1.0.0', visible: false
      page.within '.network-graph' do
        expect(page).to have_content 'Change some files'
      end

      click_show_only_selected_branch_checkbox

      page.within '.network-graph' do
        expect(page).not_to have_content 'Change some files'
      end

      click_show_only_selected_branch_checkbox

      page.within '.network-graph' do
        expect(page).to have_content 'Change some files'
      end
    end

    it 'renders error message when sha commit not exists' do
      page.within ".network-form" do
        fill_in 'extended_sha1', with: ';'
        find('button').click
      end

      expect(page).to have_selector '.flash-alert', text: _("Git revision ';' does not exist.")
    end
  end

  it 'renders project network with test branch' do
    visit project_network_path(project, "'test'")

    page.within '.network-graph' do
      expect(page).to have_content "'test'"
    end
  end
end