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

project_imported_from_github.rb « resource « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b817b345fd7edd4d15161280a74158bbe9b7d6f (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 'securerandom'

module QA
  module Resource
    class ProjectImportedFromGithub < Resource::Project
      def fabricate!
        self.import = true
        super

        group.visit!

        Page::Group::Show.perform(&:go_to_new_project)
        go_to_import_tab
        Page::Project::New.perform(&:click_github_link)

        Page::Project::Import::Github.perform do |import_page|
          import_page.add_personal_access_token(@github_personal_access_token)
          import_page.import!(@github_repository_path, @name)
        end
      end

      def go_to_import_tab
        Page::Project::New.perform(&:click_import_project)
      end
    end
  end
end