110 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'spec_helper'
 | 
						|
 | 
						|
RSpec.describe Gitlab::Git::Wiki do
 | 
						|
  using RSpec::Parameterized::TableSyntax
 | 
						|
 | 
						|
  let(:project) { create(:project) }
 | 
						|
  let(:user) { project.first_owner }
 | 
						|
  let(:project_wiki) { ProjectWiki.new(project, user) }
 | 
						|
 | 
						|
  subject(:wiki) { project_wiki.wiki }
 | 
						|
 | 
						|
  describe '#pages' do
 | 
						|
    before do
 | 
						|
      create_page('page1', 'content')
 | 
						|
      create_page('page2', 'content2')
 | 
						|
    end
 | 
						|
 | 
						|
    after do
 | 
						|
      destroy_page('page1')
 | 
						|
      destroy_page('page2')
 | 
						|
    end
 | 
						|
 | 
						|
    it 'returns all the pages' do
 | 
						|
      expect(subject.list_pages.count).to eq(2)
 | 
						|
      expect(subject.list_pages.first.title).to eq 'page1'
 | 
						|
      expect(subject.list_pages.last.title).to eq 'page2'
 | 
						|
    end
 | 
						|
 | 
						|
    it 'returns only one page' do
 | 
						|
      pages = subject.list_pages(limit: 1)
 | 
						|
 | 
						|
      expect(pages.count).to eq(1)
 | 
						|
      expect(pages.first.title).to eq 'page1'
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe '#page' do
 | 
						|
    before do
 | 
						|
      create_page('page1', 'content')
 | 
						|
      create_page('foo/page1', 'content foo/page1')
 | 
						|
    end
 | 
						|
 | 
						|
    after do
 | 
						|
      destroy_page('page1')
 | 
						|
      destroy_page('page1', 'foo')
 | 
						|
    end
 | 
						|
 | 
						|
    it 'returns the right page' do
 | 
						|
      expect(subject.page(title: 'page1', dir: '').url_path).to eq 'page1'
 | 
						|
      expect(subject.page(title: 'page1', dir: 'foo').url_path).to eq 'foo/page1'
 | 
						|
    end
 | 
						|
 | 
						|
    it 'returns nil for invalid arguments' do
 | 
						|
      expect(subject.page(title: '')).to be_nil
 | 
						|
      expect(subject.page(title: 'foo', version: ':')).to be_nil
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe '#preview_slug' do
 | 
						|
    where(:title, :format, :expected_slug) do
 | 
						|
      'The Best Thing'       | :markdown  | 'The-Best-Thing'
 | 
						|
      'The Best Thing'       | :md        | 'The-Best-Thing'
 | 
						|
      'The Best Thing'       | :txt       | 'The-Best-Thing'
 | 
						|
      'A Subject/Title Here' | :txt       | 'A-Subject/Title-Here'
 | 
						|
      'A subject'            | :txt       | 'A-subject'
 | 
						|
      'A 1/B 2/C 3'          | :txt       | 'A-1/B-2/C-3'
 | 
						|
      'subject/title'        | :txt       | 'subject/title'
 | 
						|
      'subject/title.md'     | :txt       | 'subject/title.md'
 | 
						|
      'foo<bar>+baz'         | :txt       | 'foo-bar--baz'
 | 
						|
      'foo%2Fbar'            | :txt       | 'foo%2Fbar'
 | 
						|
      ''                     | :markdown  | '.md'
 | 
						|
      ''                     | :md        | '.md'
 | 
						|
      ''                     | :txt       | '.txt'
 | 
						|
    end
 | 
						|
 | 
						|
    with_them do
 | 
						|
      subject { wiki.preview_slug(title, format) }
 | 
						|
 | 
						|
      let(:gitaly_slug) { wiki.list_pages.first }
 | 
						|
 | 
						|
      it { is_expected.to eq(expected_slug) }
 | 
						|
 | 
						|
      it 'matches the slug generated by gitaly' do
 | 
						|
        skip('Gitaly cannot generate a slug for an empty title') unless title.present?
 | 
						|
 | 
						|
        create_page(title, 'content', format: format)
 | 
						|
 | 
						|
        gitaly_slug = wiki.list_pages.first.url_path
 | 
						|
 | 
						|
        is_expected.to eq(gitaly_slug)
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def create_page(name, content, format: :markdown)
 | 
						|
    wiki.write_page(name, format, content, commit_details(name))
 | 
						|
  end
 | 
						|
 | 
						|
  def commit_details(name)
 | 
						|
    Gitlab::Git::Wiki::CommitDetails.new(user.id, user.username, user.name, user.email, "created page #{name}")
 | 
						|
  end
 | 
						|
 | 
						|
  def destroy_page(title, dir = '')
 | 
						|
    page = wiki.page(title: title, dir: dir)
 | 
						|
    project_wiki.delete_page(page, "test commit")
 | 
						|
  end
 | 
						|
end
 |