summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/3_create/repository/user_views_commit_diff_patch_spec.rb
blob: b862a7bd1edf966f8f0102dde9c82db9a52b658f (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
# frozen_string_literal: true

module QA
  context 'Create' do
    # failure reported: https://gitlab.com/gitlab-org/quality/nightly/issues/42
    # also failing in staging until the fix is picked into the next release:
    #  https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24533
    describe 'Commit data', :quarantine do
      before(:context) do
        Runtime::Browser.visit(:gitlab, Page::Main::Login)
        Page::Main::Login.perform(&:sign_in_using_credentials)

        project_push = Resource::Repository::ProjectPush.fabricate! do |push|
          push.file_name = 'README.md'
          push.file_content = '# This is a test project'
          push.commit_message = 'Add README.md'
        end
        @project = project_push.project

        # first file added has no parent commit, thus no diff data
        # add second file to repo to enable diff from initial commit
        @commit_message = 'Add second file'

        Page::Project::Show.perform(&:create_new_file!)
        Page::File::Form.perform do |f|
          f.add_name('second')
          f.add_content('second file content')
          f.add_commit_message(@commit_message)
          f.commit_changes
        end
      end

      def view_commit
        @project.visit!
        Page::Project::Show.perform do |page|
          page.go_to_commit(@commit_message)
        end
      end

      def raw_content
        find('pre').text
      end

      it 'user views raw email patch' do
        user = Resource::User.fabricate_via_api! do |user|
          user.username = Runtime::User.username
        end

        view_commit

        Page::Project::Commit::Show.perform(&:select_email_patches)

        expect(page).to have_content("From: #{user.name} <#{user.public_email}>")
        expect(page).to have_content('Subject: [PATCH] Add second file')
        expect(page).to have_content('diff --git a/second b/second')
      end

      it 'user views raw commit diff' do
        view_commit

        Page::Project::Commit::Show.perform(&:select_plain_diff)

        expect(raw_content).to start_with('diff --git a/second b/second')
        expect(page).to have_content('+second file content')
      end
    end
  end
end