summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/project/wikis_spec.rb
blob: 49290a1a8969386d82cd0a7456ab5e9ce36d0832 (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
module QA
  feature 'Wiki Functionality', :core do
    def login
      Runtime::Browser.visit(:gitlab, Page::Main::Login)
      Page::Main::Login.act { sign_in_using_credentials }
    end

    def validate_content(content)
      expect(page).to have_content('Wiki was successfully updated')
      expect(page).to have_content(/#{content}/)
    end

    before do
      login
    end

    scenario 'User creates, edits, clones, and pushes to the wiki' do
      wiki = Factory::Resource::Wiki.fabricate! do |resource|
        resource.title = 'Home'
        resource.content = '# My First Wiki Content'
        resource.message = 'Update home'
      end

      validate_content('My First Wiki Content')

      Page::Project::Wiki::Edit.act { go_to_edit_page }
      Page::Project::Wiki::New.perform do |page|
        page.set_content("My Second Wiki Content")
        page.save_changes
      end

      validate_content('My Second Wiki Content')

      Factory::Repository::WikiPush.fabricate! do |push|
        push.wiki = wiki
        push.file_name = 'Home.md'
        push.file_content = '# My Third Wiki Content'
        push.commit_message = 'Update Home.md'
      end
      Page::Menu::Side.act { click_wiki }

      expect(page).to have_content('My Third Wiki Content')
    end
  end
end