summaryrefslogtreecommitdiff
path: root/qa/qa/resource/repository/wiki_push.rb
blob: 957123008548bdefd0ea0b190ae32db0f9dae666 (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
# frozen_string_literal: true

module QA
  module Resource
    module Repository
      class WikiPush < Repository::Push
        attribute :wiki do
          Wiki.fabricate! do |resource|
            resource.title = 'Home'
            resource.content = '# My First Wiki Content'
            resource.message = 'Update home'
          end
        end

        def initialize
          @file_name = 'Home.md'
          @file_content = '# Welcome to My Wiki'
          @commit_message = 'Updating Home Page'
          @branch_name = 'master'
          @new_branch = false
        end

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

        def fabricate!
          super
          wiki.visit!
        end
      end
    end
  end
end