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

personal_access_token.rb « resource « factory « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 166054cfcdcf757be6c3e81cf4cf39f45e215f29 (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
module QA
  module Factory
    module Resource
      ##
      # Create a personal access token that can be used by the api
      #
      class PersonalAccessToken < Factory::Base
        attr_accessor :name

        product :access_token do
          Page::Profile::PersonalAccessTokens.act { created_access_token }
        end

        def fabricate!
          Page::Main::Menu.act { go_to_profile_settings }
          Page::Profile::Menu.act { click_access_tokens }

          Page::Profile::PersonalAccessTokens.perform do |page|
            page.fill_token_name(name || 'api-test-token')
            page.check_api
            page.create_token
          end
        end
      end
    end
  end
end