summaryrefslogtreecommitdiff
path: root/qa/qa/factory/repository/project_push.rb
blob: 272b7fc5818fc1b2e04ac781d69c28e34474ae86 (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
module QA
  module Factory
    module Repository
      class ProjectPush < Factory::Repository::Push
        attribute :project do
          Factory::Resource::Project.fabricate! do |resource|
            resource.name = 'project-with-code'
            resource.description = 'Project with repository'
          end
        end

        def initialize
          @file_name = 'file.txt'
          @file_content = '# This is test project'
          @commit_message = "This is a test commit"
          @branch_name = 'master'
          @new_branch = true
        end

        def repository_http_uri
          @repository_http_uri ||= begin
            project.visit!
            Page::Project::Show.act do
              choose_repository_clone_http
              repository_location.uri
            end
          end
        end

        def repository_ssh_uri
          @repository_ssh_uri ||= begin
            project.visit!
            Page::Project::Show.act do
              choose_repository_clone_ssh
              repository_location.uri
            end
          end
        end
      end
    end
  end
end