summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/cicd/pull_with_deploy_key_spec.rb
blob: 91ade2649acbb8ef24e2f98b2d5d63af40b25bf0 (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
require 'digest/sha1'

module QA
  feature 'pull codes with a deploy key', :core, :docker do
    let(:runner_name) { "qa-runner-#{Time.now.to_i}" }

    after do
      Service::Runner.new(runner_name).remove!
    end

    scenario 'user pushes .gitlab-ci.yml to the repository' do
      Runtime::Browser.visit(:gitlab, Page::Main::Login)
      Page::Main::Login.act { sign_in_using_credentials }

      project = Factory::Resource::Project.fabricate! do |resource|
        resource.name = 'cicd-pull-with-deploy-key'
      end

      Factory::Resource::Runner.fabricate! do |runner|
        runner.project = project
        runner.name = runner_name
        runner.tags = %w[qa docker]
        runner.executor = 'shell'
        runner.image = 'gitlab/gitlab-runner:ubuntu'
      end

      key = Runtime::RSAKey.new

      Factory::Resource::DeployKey.fabricate! do |resource|
        resource.project = project
        resource.title = 'deploy key title'
        resource.key = key.public_key
      end

      Factory::Resource::SecretVariable.fabricate! do |resource|
        resource.project = project
        resource.key = 'DEPLOY_KEY'
        resource.value = key.to_pem
      end

      project.visit!

      repository_url = Page::Project::Show.act do
        choose_repository_clone_ssh
        repository_location
      end

      repository_uri = URI.parse(repository_url)

      gitlab_ci =
        <<~YAML
          cat-config:
            script:
              - mkdir -p ~/.ssh
              - ssh-keyscan -p #{repository_uri.port} #{repository_uri.host} >> ~/.ssh/known_hosts
              - eval $(ssh-agent -s)
              - echo "$DEPLOY_KEY" | ssh-add -
              - git clone #{repository_url}
              - sha1sum #{project.name}/.gitlab-ci.yml
            tags:
              - qa
              - docker
        YAML

      sha1sum = Digest::SHA1.hexdigest(gitlab_ci)

      Factory::Repository::Push.fabricate! do |push|
        push.project = project
        push.file_name = '.gitlab-ci.yml'
        push.commit_message = 'Add .gitlab-ci.yml'
        push.file_content = gitlab_ci
      end

      Page::Project::Show.act { wait_for_push }
      Page::Menu::Side.act { click_ci_cd_pipelines }

      Page::Project::Pipeline::Index.act do
        wait_for_latest_pipeline
        go_to_latest_pipeline
      end

      Page::Project::Pipeline::Show.act do
        go_to_first_job
      end

      Page::Project::Job::Show.perform do |job|
        expect(job.output).to include(sha1sum)
      end
    end
  end
end