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

releases_helpers.rb « features « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5846aad15dcf9b44561edbd413b277a70c9ba94 (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
# frozen_string_literal: true

# These helpers fill fields on the "New Release" and "Edit Release" pages.
#
# Usage:
#   describe "..." do
#     include Features::ReleasesHelpers
#     ...
#
#     fill_tag_name("v1.0")
#     select_create_from("my-feature-branch")
#
module Features
  module ReleasesHelpers
    include ListboxHelpers

    def select_new_tag_name(tag_name)
      open_tag_popover

      page.within '[data-testid="tag-name-search"]' do
        find('input[type="search"]').set(tag_name)
        wait_for_all_requests

        click_button("Create tag #{tag_name}")
      end
    end

    def select_create_from(branch_name)
      open_tag_popover

      page.within '[data-testid="create-from-field"]' do
        find('.ref-selector button').click

        wait_for_all_requests

        find('input[aria-label="Search branches, tags, and commits"]').set(branch_name)

        wait_for_all_requests

        select_listbox_item(branch_name.to_s, exact_text: true)

        click_button _('Save')
      end
    end

    def fill_release_title(release_title)
      fill_in('Release title', with: release_title)
    end

    def select_milestone(milestone_title)
      page.within '[data-testid="milestones-field"]' do
        find('button').click

        wait_for_all_requests

        find('input[aria-label="Search Milestones"]').set(milestone_title)

        wait_for_all_requests

        find('button', text: milestone_title, match: :first).click
      end
    end

    def fill_release_notes(release_notes)
      fill_in('Release notes', with: release_notes)
    end

    def fill_asset_link(link)
      all('input[name="asset-url"]').last.set(link[:url])
      all('input[name="asset-link-name"]').last.set(link[:title])
      all('select[name="asset-type"]').last.find("option[value=\"#{link[:type]}\"").select_option
    end

    # Click "Add another link" and tab back to the beginning of the new row
    def add_another_asset_link
      click_button('Add another link')
    end

    def open_tag_popover(name = s_('Release|Search or create tag name'))
      return if page.has_css? '.release-tag-selector'

      click_button name
      wait_for_all_requests
    end
  end
end