summaryrefslogtreecommitdiff
path: root/qa/qa/resource/repository/wiki_push.rb
blob: edf76c7cd78f96793aacda2393faebbd1f191125 (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
          # We are using the project based wiki as a standard.
          Wiki::ProjectPage.fabricate_via_api! do |resource|
            resource.title = 'Home'
            resource.content = '# My First Wiki Content'
          end
        end

        def initialize
          @file_name = 'Home.md'
          @file_content = 'This line was created using git push'
          @commit_message = 'Updating using git push'
          @branch_name = 'master'
          @new_branch = false
        end

        def repository_http_uri
          @repository_http_uri ||= wiki.repository_http_location.uri
        end

        def repository_ssh_uri
          @repository_ssh_uri ||= wiki.repository_ssh_location.uri
        end

        def web_url
          # TODO
          # workaround
          # i.e. This replaces the last occurence of the string (case sensitive)
          # and attaches everything before to the new substring
          repository_http_uri.to_s.gsub(/(.*)\b\.wiki\.git\b/i, "\\1/-/wikis/#{@file_name.gsub('.md', '')}")
        end
      end
    end
  end
end