summaryrefslogtreecommitdiff
path: root/qa/qa/page/search/results.rb
blob: 55477db88041f8577ab061d2fa7569b3e3967708 (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
# frozen_string_literal: true

module QA
  module Page
    module Search
      class Results < QA::Page::Base
        view 'app/views/search/_category.html.haml' do
          element :code_tab
          element :projects_tab
        end

        view 'app/views/search/results/_blob_data.html.haml' do
          element :result_item_content
          element :file_title_content
          element :file_text_content
        end

        view 'app/views/shared/projects/_project.html.haml' do
          element :project
        end

        def switch_to_code
          switch_to_tab(:code_tab)
        end

        def switch_to_projects
          switch_to_tab(:projects_tab)
        end

        def has_file_in_project?(file_name, project_name)
          has_element?(:result_item_content, text: "#{project_name}: #{file_name}")
        end

        def has_file_with_content?(file_name, file_text)
          within_element_by_index(:result_item_content, 0) do
            break false unless has_element?(:file_title_content, text: file_name)

            has_element?(:file_text_content, text: file_text)
          end
        end

        def has_project?(project_name)
          has_element?(:project, project_name: project_name)
        end

        private

        def switch_to_tab(tab)
          retry_until do
            click_element(tab)
            has_active_element?(tab)
          end
        end
      end
    end
  end
end