kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
662 lines
23 KiB
662 lines
23 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe OpenProject::TextFormatting do
|
|
include OpenProject::TextFormatting
|
|
include WorkPackagesHelper # soft-dependency
|
|
include ActionView::Helpers::UrlHelper # soft-dependency
|
|
include ActionView::Context
|
|
include OpenProject::StaticRouting::UrlHelpers
|
|
|
|
def controller
|
|
# no-op
|
|
end
|
|
|
|
describe '.format_text' do
|
|
let(:project) { FactoryGirl.create :valid_project }
|
|
let(:identifier) { project.identifier }
|
|
let(:project_member) {
|
|
FactoryGirl.create :user,
|
|
member_in_project: project,
|
|
member_through_role: FactoryGirl.create(:role,
|
|
permissions: [:view_work_packages, :edit_work_packages,
|
|
:browse_repository, :view_changesets, :view_wiki_pages])
|
|
}
|
|
let(:issue) {
|
|
FactoryGirl.create :work_package,
|
|
project: project,
|
|
author: project_member,
|
|
type: project.types.first
|
|
}
|
|
|
|
before do
|
|
@project = project
|
|
|
|
allow(User).to receive(:current).and_return(project_member)
|
|
allow(Setting).to receive(:text_formatting).and_return('textile')
|
|
end
|
|
|
|
context "Changeset links" do
|
|
let(:repository) do
|
|
FactoryGirl.build_stubbed :repository,
|
|
project: project
|
|
end
|
|
let(:changeset1) do
|
|
FactoryGirl.build_stubbed :changeset,
|
|
repository: repository,
|
|
comments: 'My very first commit'
|
|
end
|
|
let(:changeset2) do
|
|
FactoryGirl.build_stubbed :changeset,
|
|
repository: repository,
|
|
comments: 'This commit fixes #1, #2 and references #1 & #3'
|
|
end
|
|
let(:changeset_link) {
|
|
link_to("r#{changeset1.revision}",
|
|
{ controller: 'repositories', action: 'revision', project_id: identifier, rev: changeset1.revision },
|
|
class: 'changeset', title: 'My very first commit')
|
|
}
|
|
let(:changeset_link2) {
|
|
link_to("r#{changeset2.revision}",
|
|
{ controller: 'repositories', action: 'revision', project_id: identifier, rev: changeset2.revision },
|
|
class: 'changeset', title: 'This commit fixes #1, #2 and references #1 & #3')
|
|
}
|
|
|
|
before do
|
|
allow(project).to receive(:repository).and_return(repository)
|
|
|
|
changesets = [changeset1, changeset2]
|
|
|
|
allow(Changeset).to receive(:visible).and_return(changesets)
|
|
|
|
changesets.each do |changeset|
|
|
allow(changesets)
|
|
.to receive(:find_by_repository_id_and_revision)
|
|
.with(project.repository.id, changeset.revision)
|
|
.and_return(changeset)
|
|
end
|
|
end
|
|
|
|
context 'Single link' do
|
|
subject { format_text("r#{changeset1.revision}") }
|
|
|
|
it { is_expected.to eq("<p>#{changeset_link}</p>") }
|
|
end
|
|
|
|
context 'Single link with dot' do
|
|
subject { format_text("r#{changeset1.revision}.") }
|
|
|
|
it { is_expected.to eq("<p>#{changeset_link}.</p>") }
|
|
end
|
|
|
|
context 'Two links comma separated' do
|
|
subject { format_text("r#{changeset1.revision}, r#{changeset2.revision}") }
|
|
|
|
it { is_expected.to eq("<p>#{changeset_link}, #{changeset_link2}</p>") }
|
|
end
|
|
|
|
context 'Single link comma separated without a space' do
|
|
subject { format_text("r#{changeset1.revision},r#{changeset2.revision}") }
|
|
|
|
it { is_expected.to eq("<p>#{changeset_link},#{changeset_link2}</p>") }
|
|
end
|
|
|
|
context 'Escaping' do
|
|
subject { format_text("!r#{changeset1.id}") }
|
|
|
|
it { is_expected.to eq("<p>r#{changeset1.id}</p>") }
|
|
end
|
|
end
|
|
|
|
context 'Version link' do
|
|
let!(:version) {
|
|
FactoryGirl.create :version,
|
|
name: '1.0',
|
|
project: project
|
|
}
|
|
let(:version_link) {
|
|
link_to('1.0',
|
|
{ controller: 'versions', action: 'show', id: version.id },
|
|
class: 'version')
|
|
}
|
|
|
|
context 'Link with version id' do
|
|
subject { format_text("version##{version.id}") }
|
|
|
|
it { is_expected.to eq("<p>#{version_link}</p>") }
|
|
end
|
|
|
|
context 'Link with version' do
|
|
subject { format_text('version:1.0') }
|
|
it { is_expected.to eq("<p>#{version_link}</p>") }
|
|
end
|
|
|
|
context 'Link with quoted version' do
|
|
subject { format_text('version:"1.0"') }
|
|
|
|
it { is_expected.to eq("<p>#{version_link}</p>") }
|
|
end
|
|
|
|
context 'Escaping link with version id' do
|
|
subject { format_text("!version##{version.id}") }
|
|
|
|
it { is_expected.to eq("<p>version##{version.id}</p>") }
|
|
end
|
|
|
|
context 'Escaping link with version' do
|
|
subject { format_text('!version:1.0') }
|
|
|
|
it { is_expected.to eq('<p>version:1.0</p>') }
|
|
end
|
|
|
|
context 'Escaping link with quoted version' do
|
|
subject { format_text('!version:"1.0"') }
|
|
|
|
it { is_expected.to eq('<p>version:"1.0"</p>') }
|
|
end
|
|
end
|
|
|
|
context 'Message links' do
|
|
let(:board) { FactoryGirl.create :board, project: project }
|
|
let(:message1) { FactoryGirl.create :message, board: board }
|
|
let(:message2) {
|
|
FactoryGirl.create :message,
|
|
board: board,
|
|
parent: message1
|
|
}
|
|
|
|
before do
|
|
message1.reload
|
|
end
|
|
|
|
context 'Plain message' do
|
|
subject { format_text("message##{message1.id}") }
|
|
|
|
it { is_expected.to eq("<p>#{link_to(message1.subject, topic_path(message1), class: 'message')}</p>") }
|
|
end
|
|
|
|
context 'Message with parent' do
|
|
subject { format_text("message##{message2.id}") }
|
|
|
|
it { is_expected.to eq("<p>#{link_to(message2.subject, topic_path(message1, anchor: "message-#{message2.id}", r: message2.id), class: 'message')}</p>") }
|
|
end
|
|
end
|
|
|
|
context 'Issue links' do
|
|
let(:issue_link) {
|
|
link_to("##{issue.id}",
|
|
work_package_path(issue),
|
|
class: 'issue work_package status-3 priority-1 created-by-me', title: "#{issue.subject} (#{issue.status})")
|
|
}
|
|
|
|
context 'Plain issue link' do
|
|
subject { format_text("##{issue.id}, [##{issue.id}], (##{issue.id}) and ##{issue.id}.") }
|
|
|
|
it { is_expected.to eq("<p>#{issue_link}, [#{issue_link}], (#{issue_link}) and #{issue_link}.</p>") }
|
|
end
|
|
|
|
context 'Plain issue link to non-existing element' do
|
|
subject { format_text('#0123456789') }
|
|
|
|
it { is_expected.to eq('<p>#0123456789</p>') }
|
|
end
|
|
|
|
context 'Escaping issue link' do
|
|
subject { format_text("!##{issue.id}.") }
|
|
|
|
it { is_expected.to eq("<p>##{issue.id}.</p>") }
|
|
end
|
|
|
|
context 'Cyclic Description Links' do
|
|
let(:issue2) {
|
|
FactoryGirl.create :work_package,
|
|
project: project,
|
|
author: project_member,
|
|
type: project.types.first
|
|
}
|
|
|
|
before do
|
|
issue2.description = "####{issue.id}"
|
|
issue2.save!
|
|
issue.description = "####{issue2.id}"
|
|
issue.save!
|
|
end
|
|
|
|
subject { format_text issue, :description }
|
|
|
|
it "doesn't replace description links with a cycle" do
|
|
expect(subject).to match("###{issue.id}")
|
|
end
|
|
end
|
|
|
|
context 'Description links' do
|
|
subject { format_text issue, :description }
|
|
|
|
it 'replaces the macro with the issue description' do
|
|
expect(subject).to eq("<p>#{issue.description}</p>")
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'Project links' do
|
|
let(:subproject) { FactoryGirl.create :valid_project, parent: project, is_public: true }
|
|
let(:project_url) { { controller: 'projects', action: 'show', id: subproject.identifier } }
|
|
|
|
context 'Plain project link' do
|
|
subject { format_text("project##{subproject.id}") }
|
|
|
|
it { is_expected.to eq("<p>#{link_to(subproject.name, project_url, class: 'project')}</p>") }
|
|
end
|
|
|
|
context 'Plain project link via identifier' do
|
|
subject { format_text("project:#{subproject.identifier}") }
|
|
|
|
it { is_expected.to eq("<p>#{link_to(subproject.name, project_url, class: 'project')}</p>") }
|
|
end
|
|
|
|
context 'Plain project link via name' do
|
|
subject { format_text("project:\"#{subproject.name}\"") }
|
|
|
|
it { is_expected.to eq("<p>#{link_to(subproject.name, project_url, class: 'project')}</p>") }
|
|
end
|
|
end
|
|
|
|
context 'Url links' do
|
|
subject { format_text('http://foo.bar/FAQ#3') }
|
|
|
|
it { is_expected.to eq('<p><a class="external" href="http://foo.bar/FAQ#3">http://foo.bar/FAQ#3</a></p>') }
|
|
end
|
|
|
|
context 'Wiki links' do
|
|
let(:project_2) {
|
|
FactoryGirl.create :valid_project,
|
|
identifier: 'onlinestore'
|
|
}
|
|
let(:wiki_1) {
|
|
FactoryGirl.create :wiki,
|
|
start_page: 'CookBook documentation',
|
|
project: project
|
|
}
|
|
let(:wiki_page_1_1) {
|
|
FactoryGirl.create :wiki_page_with_content,
|
|
wiki: wiki_1,
|
|
title: 'CookBook_documentation'
|
|
}
|
|
let(:wiki_page_1_2) {
|
|
FactoryGirl.create :wiki_page_with_content,
|
|
wiki: wiki_1,
|
|
title: 'Another page'
|
|
}
|
|
|
|
before do
|
|
project_2.reload
|
|
|
|
wiki_page_2_1 = FactoryGirl.create :wiki_page_with_content,
|
|
wiki: project_2.wiki,
|
|
title: 'Start_page'
|
|
|
|
project_2.wiki.pages << wiki_page_2_1
|
|
project_2.wiki.start_page = 'Start Page'
|
|
project_2.wiki.save!
|
|
|
|
project.wiki = wiki_1
|
|
|
|
wiki_1.pages << wiki_page_1_1
|
|
wiki_1.pages << wiki_page_1_2
|
|
end
|
|
|
|
context 'Plain wiki link' do
|
|
subject { format_text('[[CookBook documentation]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/#{project.identifier}/wiki/CookBook_documentation\" class=\"wiki-page\">CookBook documentation</a></p>") }
|
|
end
|
|
|
|
context 'Plain wiki page link' do
|
|
subject { format_text('[[Another page|Page]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/#{project.identifier}/wiki/Another_page\" class=\"wiki-page\">Page</a></p>") }
|
|
end
|
|
|
|
context 'Wiki link with anchor' do
|
|
subject { format_text('[[CookBook documentation#One-section]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/#{project.identifier}/wiki/CookBook_documentation#One-section\" class=\"wiki-page\">CookBook documentation</a></p>") }
|
|
end
|
|
|
|
context 'Wiki page link with anchor' do
|
|
subject { format_text('[[Another page#anchor|Page]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/#{project.identifier}/wiki/Another_page#anchor\" class=\"wiki-page\">Page</a></p>") }
|
|
end
|
|
|
|
context 'Wiki link to an unknown page' do
|
|
subject { format_text('[[Unknown page]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/#{project.identifier}/wiki/Unknown_page\" class=\"wiki-page new\">Unknown page</a></p>") }
|
|
end
|
|
|
|
context 'Wiki page link to an unknown page' do
|
|
subject { format_text('[[Unknown page|404]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/#{project.identifier}/wiki/Unknown_page\" class=\"wiki-page new\">404</a></p>") }
|
|
end
|
|
|
|
context "Link to another project's wiki" do
|
|
subject { format_text('[[onlinestore:]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/onlinestore/wiki\" class=\"wiki-page\">onlinestore</a></p>") }
|
|
end
|
|
|
|
context "Link to another project's wiki with label" do
|
|
subject { format_text('[[onlinestore:|Wiki]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/onlinestore/wiki\" class=\"wiki-page\">Wiki</a></p>") }
|
|
end
|
|
|
|
context "Link to another project's wiki page" do
|
|
subject { format_text('[[onlinestore:Start page]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/onlinestore/wiki/Start_page\" class=\"wiki-page\">Start page</a></p>") }
|
|
end
|
|
|
|
context "Link to another project's wiki page with label" do
|
|
subject { format_text('[[onlinestore:Start page|Text]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/onlinestore/wiki/Start_page\" class=\"wiki-page\">Text</a></p>") }
|
|
end
|
|
|
|
context 'Link to an unknown wiki page in another project' do
|
|
subject { format_text('[[onlinestore:Unknown page]]') }
|
|
|
|
it { is_expected.to eq("<p><a href=\"/projects/onlinestore/wiki/Unknown_page\" class=\"wiki-page new\">Unknown page</a></p>") }
|
|
end
|
|
|
|
context 'Struck through link to wiki page' do
|
|
subject { format_text('-[[Another page|Page]]-') }
|
|
|
|
it { is_expected.to eql("<p><del><a href=\"/projects/#{project.identifier}/wiki/Another_page\" class=\"wiki-page\">Page</a></del></p>") }
|
|
end
|
|
|
|
context 'Named struck through link to wiki page' do
|
|
subject { format_text('-[[Another page|Page]] link-') }
|
|
|
|
it { is_expected.to eql("<p><del><a href=\"/projects/#{project.identifier}/wiki/Another_page\" class=\"wiki-page\">Page</a> link</del></p>") }
|
|
end
|
|
|
|
context 'Escaped link to wiki page' do
|
|
subject { format_text('![[Another page|Page]]') }
|
|
|
|
it { is_expected.to eql('<p>[[Another page|Page]]</p>') }
|
|
end
|
|
|
|
context 'Link to wiki of non-existing project' do
|
|
subject { format_text('[[unknowproject:Start]]') }
|
|
|
|
it { is_expected.to eql('<p>[[unknowproject:Start]]</p>') }
|
|
end
|
|
|
|
context 'Link to wiki page of non-existing project' do
|
|
subject { format_text('[[unknowproject:Start|Page title]]') }
|
|
|
|
it { is_expected.to eql('<p>[[unknowproject:Start|Page title]]</p>') }
|
|
end
|
|
end
|
|
|
|
context 'Redmine links' do
|
|
let(:repository) do
|
|
FactoryGirl.build_stubbed :repository, project: project
|
|
end
|
|
let(:source_url) do
|
|
{ controller: 'repositories',
|
|
action: 'entry',
|
|
project_id: identifier,
|
|
path: 'some/file' }
|
|
end
|
|
let(:source_url_with_ext) do
|
|
{ controller: 'repositories',
|
|
action: 'entry',
|
|
project_id: identifier,
|
|
path: 'some/file.ext' }
|
|
end
|
|
|
|
before do
|
|
allow(project).to receive(:repository).and_return(repository)
|
|
allow(User).to receive(:current).and_return(project_member)
|
|
allow(project_member)
|
|
.to receive(:allowed_to?)
|
|
.with(:browse_repository, project)
|
|
.and_return(true)
|
|
|
|
@to_test = {
|
|
# source
|
|
'source:/some/file' => link_to('source:/some/file', source_url, class: 'source'),
|
|
'source:/some/file.' => link_to('source:/some/file', source_url, class: 'source') + '.',
|
|
'source:/some/file.ext.' => link_to('source:/some/file.ext', source_url_with_ext, class: 'source') + '.',
|
|
'source:/some/file. ' => link_to('source:/some/file', source_url, class: 'source') + '.',
|
|
'source:/some/file.ext. ' => link_to('source:/some/file.ext', source_url_with_ext, class: 'source') + '.',
|
|
'source:/some/file, ' => link_to('source:/some/file', source_url, class: 'source') + ',',
|
|
'source:/some/file@52' => link_to('source:/some/file@52', source_url.merge(rev: 52), class: 'source'),
|
|
'source:/some/file.ext@52' => link_to('source:/some/file.ext@52', source_url_with_ext.merge(rev: 52), class: 'source'),
|
|
'source:/some/file#L110' => link_to('source:/some/file#L110', source_url.merge(anchor: 'L110'), class: 'source'),
|
|
'source:/some/file.ext#L110' => link_to('source:/some/file.ext#L110', source_url_with_ext.merge(anchor: 'L110'), class: 'source'),
|
|
'source:/some/file@52#L110' => link_to('source:/some/file@52#L110', source_url.merge(rev: 52, anchor: 'L110'), class: 'source'),
|
|
'export:/some/file' => link_to('export:/some/file', source_url.merge(format: 'raw'), class: 'source download'),
|
|
# escaping
|
|
'!source:/some/file' => 'source:/some/file',
|
|
# invalid expressions
|
|
'source:' => 'source:'
|
|
}
|
|
end
|
|
|
|
it '' do
|
|
@to_test.each do |text, result|
|
|
expect(format_text(text)).to eql("<p>#{result}</p>")
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'Pre content should not parse wiki and redmine links' do
|
|
let(:wiki) {
|
|
FactoryGirl.create :wiki,
|
|
start_page: 'CookBook documentation',
|
|
project: project
|
|
}
|
|
let(:wiki_page) {
|
|
FactoryGirl.create :wiki_page_with_content,
|
|
wiki: wiki,
|
|
title: 'CookBook_documentation'
|
|
}
|
|
let(:raw) {
|
|
<<-RAW
|
|
[[CookBook documentation]]
|
|
|
|
##{issue.id}
|
|
|
|
<pre>
|
|
[[CookBook documentation]]
|
|
|
|
##{issue.id}
|
|
</pre>
|
|
RAW
|
|
}
|
|
|
|
let(:expected) {
|
|
<<-EXPECTED
|
|
<p><a href="/projects/#{project.identifier}/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a></p>
|
|
<p><a href="/work_packages/#{issue.id}" class="issue work_package status-3 priority-1 created-by-me" title="#{issue.subject} (#{issue.status})">##{issue.id}</a></p>
|
|
<pre>
|
|
[[CookBook documentation]]
|
|
|
|
##{issue.id}
|
|
</pre>
|
|
EXPECTED
|
|
}
|
|
|
|
before do
|
|
project.wiki = wiki
|
|
wiki.pages << wiki_page
|
|
end
|
|
|
|
subject { format_text(raw).gsub(%r{[\r\n\t]}, '') }
|
|
|
|
it { is_expected.to eql(expected.gsub(%r{[\r\n\t]}, '')) }
|
|
end
|
|
|
|
describe 'options' do
|
|
describe '#format' do
|
|
it 'uses format of Settings, if nothing is specified' do
|
|
expect(format_text('*Stars!*')).to eq('<p><strong>Stars!</strong></p>')
|
|
end
|
|
|
|
it 'uses format of options, if specified' do
|
|
expect(format_text('*Stars!*', format: 'plain')).to eq('<p>*Stars!*</p>')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '{{toc}}', 'table of contents macro' do
|
|
# Source: http://en.wikipedia.org/wiki/Orange_(fruit)
|
|
let(:wiki_text) {
|
|
<<-WIKI_TEXT
|
|
{{toc}}
|
|
|
|
h1. Orange
|
|
|
|
h2. Varietes
|
|
|
|
h3. Common Oranges
|
|
|
|
h4. Valencia
|
|
|
|
h5. Naranjito
|
|
|
|
h4. Hart's Tardiff Valencia
|
|
|
|
h3. Navel Oranges
|
|
|
|
h3. Blood Oranges
|
|
|
|
h3. Acidless Oranges
|
|
|
|
h2. Attributes
|
|
|
|
WIKI_TEXT
|
|
}
|
|
|
|
subject(:html) { format_text(wiki_text) }
|
|
|
|
context 'w/ request present' do
|
|
let(:request) { ActionController::TestRequest.new }
|
|
let(:url_for) { '/test' }
|
|
|
|
it 'emits a table of contents for headings h1-h4 with links present' do
|
|
expect(html).to be_html_eql(%{
|
|
<fieldset class='form--fieldset -collapsible'>
|
|
<legend class='form--fieldset-legend' title='Show/Hide table of contents' onclick='toggleFieldset(this);'>
|
|
<a href='javascript:'>Table of Contents</a>
|
|
</legend>
|
|
<div>
|
|
<ul class="toc">
|
|
<li>
|
|
<a href="/test#Orange">Orange</a>
|
|
<ul>
|
|
<li>
|
|
<a href="/test#Varietes">Varietes</a>
|
|
<ul>
|
|
<li>
|
|
<a href="/test#Common-Oranges">Common Oranges</a>
|
|
<ul>
|
|
<li><a href="/test#Valencia">Valencia</a></li>
|
|
<li><a href="/test#Harts-Tardiff-Valencia">Hart's Tardiff Valencia</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="/test#Navel-Oranges">Navel Oranges</a></li>
|
|
<li><a href="/test#Blood-Oranges">Blood Oranges</a></li>
|
|
<li><a href="/test#Acidless-Oranges">Acidless Oranges</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="/test#Attributes">Attributes</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</fieldset>
|
|
}).at_path('fieldset')
|
|
end
|
|
end
|
|
|
|
context 'w/o request present' do
|
|
let(:request) { nil }
|
|
|
|
it 'emits a table of contents for headings h1-h4 with anchors' do
|
|
expect(html).to be_html_eql(%{
|
|
<fieldset class='form--fieldset -collapsible'>
|
|
<legend class='form--fieldset-legend' title='Show/Hide table of contents' onclick='toggleFieldset(this);'>
|
|
<a href='javascript:'>Table of Contents</a>
|
|
</legend>
|
|
<div>
|
|
<ul class="toc">
|
|
<li>
|
|
<a href="#Orange">Orange</a>
|
|
<ul>
|
|
<li>
|
|
<a href="#Varietes">Varietes</a>
|
|
<ul>
|
|
<li>
|
|
<a href="#Common-Oranges">Common Oranges</a>
|
|
<ul>
|
|
<li><a href="#Valencia">Valencia</a></li>
|
|
<li><a href="#Harts-Tardiff-Valencia">Hart's Tardiff Valencia</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="#Navel-Oranges">Navel Oranges</a></li>
|
|
<li><a href="#Blood-Oranges">Blood Oranges</a></li>
|
|
<li><a href="#Acidless-Oranges">Acidless Oranges</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="#Attributes">Attributes</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</fieldset>
|
|
}).at_path('fieldset')
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'deprecated methods' do
|
|
subject { self }
|
|
|
|
it { is_expected.to respond_to :textilizable }
|
|
it { is_expected.to respond_to :textilize }
|
|
end
|
|
end
|
|
|