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

import_github_repo_spec.rb « project « 1_manage « browser_ui « features « specs « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5072b6d48bf02ea16ce460d5a63d1ecaad5fdd09 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# frozen_string_literal: true

module QA
  RSpec.describe 'Manage', :github, :requires_admin do
    describe 'Project import' do
      let!(:user) do
        Resource::User.fabricate_via_api! do |resource|
          resource.api_client = Runtime::API::Client.as_admin
        end
      end

      let(:group) { Resource::Group.fabricate_via_api! }

      let(:imported_project) do
        Resource::ProjectImportedFromGithub.fabricate_via_browser_ui! do |project|
          project.name = 'imported-project'
          project.group = group
          project.github_personal_access_token = Runtime::Env.github_access_token
          project.github_repository_path = 'gitlab-qa-github/test-project'
        end
      end

      before do
        Runtime::Feature.enable(:invite_members_group_modal, group: group)
        group.add_member(user, Resource::Members::AccessLevel::MAINTAINER)
      end

      after do
        user.remove_via_api!
      end

      it 'imports a GitHub repo', testcase: 'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1762' do
        Flow::Login.sign_in(as: user)

        imported_project # import the project

        Page::Main::Menu.perform(&:go_to_projects)
        Page::Dashboard::Projects.perform do |dashboard|
          dashboard.go_to_project(imported_project.name)
        end

        Page::Project::Show.perform(&:wait_for_import)

        verify_repository_import
        verify_issues_import
        verify_merge_requests_import
        verify_labels_import
        verify_milestones_import
        verify_wiki_import
      end

      def verify_repository_import
        Page::Project::Show.perform do |project|
          expect(project).to have_content('This test project is used for automated GitHub import by GitLab QA.')
          expect(project).to have_content(imported_project.name)
        end
      end

      def verify_issues_import
        QA::Support::Retrier.retry_on_exception do
          Page::Project::Menu.perform(&:click_issues)

          Page::Project::Issue::Show.perform do |issue_page|
            expect(issue_page).to have_content('This is a sample issue')

            click_link 'This is a sample issue'

            expect(issue_page).to have_content('This is a sample first comment')

            # Comments
            comment_text = 'This is a comment from @sliaquat'

            expect(issue_page).to have_comment(comment_text)
            expect(issue_page).to have_label('custom new label')
            expect(issue_page).to have_label('help wanted')
            expect(issue_page).to have_label('good first issue')
          end
        end
      end

      def verify_merge_requests_import
        Page::Project::Menu.perform(&:click_merge_requests)

        Page::MergeRequest::Show.perform do |merge_request|
          expect(merge_request).to have_content('Improve readme')

          click_link 'Improve readme'

          expect(merge_request).to have_content('This improves the README file a bit.')

          # Comments
          expect(merge_request).to have_content('[PR comment by @sliaquat] Nice work!')

          # Diff comments
          expect(merge_request).to have_content('[Single diff comment] Good riddance')
          expect(merge_request).to have_content('[Single diff comment] Nice addition')

          expect(merge_request).to have_label('bug')
          expect(merge_request).to have_label('documentation')
        end
      end

      def verify_labels_import
        # TODO: Waiting on https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/19228
        # to build upon it.
      end

      def verify_milestones_import
        # TODO: Waiting on https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/18727
        # to build upon it.
      end

      def verify_wiki_import
        Page::Project::Menu.perform(&:click_wiki)

        Page::Project::Wiki::Show.perform do |wiki|
          expect(wiki).to have_content('Welcome to the test-project wiki!')
        end
      end
    end
  end
end