2019-07-25 01:21:37 -04:00
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2015-05-12 19:07:48 -04:00
|
|
|
|
require 'spec_helper'
|
|
|
|
|
require 'nokogiri'
|
|
|
|
|
|
|
|
|
|
module Gitlab
|
2017-07-10 10:24:02 -04:00
|
|
|
|
describe Asciidoc do
|
2019-06-14 03:53:08 -04:00
|
|
|
|
include FakeBlobHelpers
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
allow_any_instance_of(ApplicationSetting).to receive(:current).and_return(::ApplicationSetting.create_from_defaults)
|
|
|
|
|
end
|
2015-05-12 19:07:48 -04:00
|
|
|
|
|
|
|
|
|
context "without project" do
|
2019-06-14 03:53:08 -04:00
|
|
|
|
let(:input) { '<b>ascii</b>' }
|
|
|
|
|
let(:context) { {} }
|
|
|
|
|
let(:html) { 'H<sub>2</sub>O' }
|
2016-11-28 12:41:29 -05:00
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
|
it "converts the input using Asciidoctor and default options" do
|
2015-06-23 01:24:39 -04:00
|
|
|
|
expected_asciidoc_opts = {
|
|
|
|
|
safe: :secure,
|
2016-12-08 19:15:08 -05:00
|
|
|
|
backend: :gitlab_html5,
|
2019-06-14 03:53:08 -04:00
|
|
|
|
attributes: described_class::DEFAULT_ADOC_ATTRS,
|
|
|
|
|
extensions: be_a(Proc)
|
2015-06-23 01:24:39 -04:00
|
|
|
|
}
|
2015-05-12 19:07:48 -04:00
|
|
|
|
|
|
|
|
|
expect(Asciidoctor).to receive(:convert)
|
|
|
|
|
.with(input, expected_asciidoc_opts).and_return(html)
|
|
|
|
|
|
2017-05-02 10:52:19 -04:00
|
|
|
|
expect(render(input, context)).to eq(html)
|
2015-05-12 19:07:48 -04:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-02 18:25:58 -04:00
|
|
|
|
context "with asciidoc_opts" do
|
|
|
|
|
it "merges the options with default ones" do
|
|
|
|
|
expected_asciidoc_opts = {
|
|
|
|
|
safe: :secure,
|
|
|
|
|
backend: :gitlab_html5,
|
2019-06-14 03:53:08 -04:00
|
|
|
|
attributes: described_class::DEFAULT_ADOC_ATTRS,
|
|
|
|
|
extensions: be_a(Proc)
|
2017-05-02 18:25:58 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
expect(Asciidoctor).to receive(:convert)
|
|
|
|
|
.with(input, expected_asciidoc_opts).and_return(html)
|
|
|
|
|
|
|
|
|
|
render(input, context)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-02-08 15:33:29 -05:00
|
|
|
|
context "XSS" do
|
2019-07-03 04:53:00 -04:00
|
|
|
|
items = {
|
|
|
|
|
'link with extra attribute' => {
|
2017-02-08 15:33:29 -05:00
|
|
|
|
input: 'link:mylink"onmouseover="alert(1)[Click Here]',
|
|
|
|
|
output: "<div>\n<p><a href=\"mylink\">Click Here</a></p>\n</div>"
|
|
|
|
|
},
|
2019-07-03 04:53:00 -04:00
|
|
|
|
'link with unsafe scheme' => {
|
|
|
|
|
input: 'link:data://danger[Click Here]',
|
|
|
|
|
output: "<div>\n<p><a>Click Here</a></p>\n</div>"
|
|
|
|
|
},
|
|
|
|
|
'image with onerror' => {
|
2017-02-08 15:33:29 -05:00
|
|
|
|
input: 'image:https://localhost.com/image.png[Alt text" onerror="alert(7)]',
|
2019-10-28 17:06:24 -04:00
|
|
|
|
output: "<div>\n<p><span><a class=\"no-attachment-icon\" href=\"https://localhost.com/image.png\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" alt='Alt text\" onerror=\"alert(7)' class=\"lazy\" data-src=\"https://localhost.com/image.png\"></a></span></p>\n</div>"
|
2017-02-08 15:33:29 -05:00
|
|
|
|
},
|
2019-07-03 04:53:00 -04:00
|
|
|
|
'fenced code with inline script' => {
|
2017-02-08 15:33:29 -05:00
|
|
|
|
input: '```mypre"><script>alert(3)</script>',
|
2019-06-19 02:37:48 -04:00
|
|
|
|
output: "<div>\n<div>\n<pre class=\"code highlight js-syntax-highlight plaintext\" lang=\"plaintext\" v-pre=\"true\"><code><span id=\"LC1\" class=\"line\" lang=\"plaintext\">\"></span></code></pre>\n</div>\n</div>"
|
2017-02-08 15:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-03 04:53:00 -04:00
|
|
|
|
items.each do |name, data|
|
2017-02-08 15:33:29 -05:00
|
|
|
|
it "does not convert dangerous #{name} into HTML" do
|
2017-05-02 10:52:19 -04:00
|
|
|
|
expect(render(data[:input], context)).to include(data[:output])
|
2017-02-08 15:33:29 -05:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2017-05-02 10:52:19 -04:00
|
|
|
|
|
2019-10-28 17:06:24 -04:00
|
|
|
|
context "images" do
|
|
|
|
|
it "does lazy load and link image" do
|
|
|
|
|
input = 'image:https://localhost.com/image.png[]'
|
|
|
|
|
output = "<div>\n<p><span><a class=\"no-attachment-icon\" href=\"https://localhost.com/image.png\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" alt=\"image\" class=\"lazy\" data-src=\"https://localhost.com/image.png\"></a></span></p>\n</div>"
|
|
|
|
|
expect(render(input, context)).to include(output)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "does not automatically link image if link is explicitly defined" do
|
|
|
|
|
input = 'image:https://localhost.com/image.png[link=https://gitlab.com]'
|
|
|
|
|
output = "<div>\n<p><span><a href=\"https://gitlab.com\" rel=\"nofollow noreferrer noopener\" target=\"_blank\"><img src=\"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" alt=\"image\" class=\"lazy\" data-src=\"https://localhost.com/image.png\"></a></span></p>\n</div>"
|
|
|
|
|
expect(render(input, context)).to include(output)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-03 04:53:00 -04:00
|
|
|
|
context 'with admonition' do
|
|
|
|
|
it 'preserves classes' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
NOTE: An admonition paragraph, like this note, grabs the reader’s attention.
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
|
|
|
|
<div class="admonitionblock">
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="icon">
|
|
|
|
|
<i class="fa icon-note" title="Note"></i>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
An admonition paragraph, like this note, grabs the reader’s attention.
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-07-10 04:30:10 -04:00
|
|
|
|
|
|
|
|
|
context 'with passthrough' do
|
|
|
|
|
it 'removes non heading ids' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
++++
|
|
|
|
|
<h2 id="foo">Title</h2>
|
|
|
|
|
++++
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
2019-10-28 17:06:24 -04:00
|
|
|
|
<h2>Title</h2>
|
2019-07-10 04:30:10 -04:00
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
2019-07-10 04:30:10 -04:00
|
|
|
|
|
|
|
|
|
it 'removes non footnote def ids' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
++++
|
|
|
|
|
<div id="def">Footnote definition</div>
|
|
|
|
|
++++
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
|
|
|
|
<div>Footnote definition</div>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'removes non footnote ref ids' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
++++
|
|
|
|
|
<a id="ref">Footnote reference</a>
|
|
|
|
|
++++
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
|
|
|
|
<a>Footnote reference</a>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with footnotes' do
|
|
|
|
|
it 'preserves ids and links' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
This paragraph has a footnote.footnote:[This is the text of the footnote.]
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
2019-10-28 17:06:24 -04:00
|
|
|
|
<div>
|
|
|
|
|
<p>This paragraph has a footnote.<sup>[<a id="_footnoteref_1" href="#_footnotedef_1" title="View footnote.">1</a>]</sup></p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<hr>
|
|
|
|
|
<div id="_footnotedef_1">
|
|
|
|
|
<a href="#_footnoteref_1">1</a>. This is the text of the footnote.
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2019-07-10 04:30:10 -04:00
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
2019-07-10 04:30:10 -04:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with section anchors' do
|
|
|
|
|
it 'preserves ids and links' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
= Title
|
|
|
|
|
|
|
|
|
|
== First section
|
|
|
|
|
|
|
|
|
|
This is the first section.
|
|
|
|
|
|
|
|
|
|
== Second section
|
|
|
|
|
|
|
|
|
|
This is the second section.
|
|
|
|
|
|
|
|
|
|
== Thunder ⚡ !
|
|
|
|
|
|
|
|
|
|
This is the third section.
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
2019-10-28 17:06:24 -04:00
|
|
|
|
<h1>Title</h1>
|
|
|
|
|
<div>
|
|
|
|
|
<h2 id="user-content-first-section">
|
|
|
|
|
<a class="anchor" href="#user-content-first-section"></a>First section</h2>
|
|
|
|
|
<div>
|
|
|
|
|
<div>
|
|
|
|
|
<p>This is the first section.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<h2 id="user-content-second-section">
|
|
|
|
|
<a class="anchor" href="#user-content-second-section"></a>Second section</h2>
|
|
|
|
|
<div>
|
|
|
|
|
<div>
|
|
|
|
|
<p>This is the second section.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<h2 id="user-content-thunder">
|
|
|
|
|
<a class="anchor" href="#user-content-thunder"></a>Thunder ⚡ !</h2>
|
|
|
|
|
<div>
|
|
|
|
|
<div>
|
|
|
|
|
<p>This is the third section.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2019-07-10 04:30:10 -04:00
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-07-03 04:53:00 -04:00
|
|
|
|
|
|
|
|
|
context 'with checklist' do
|
|
|
|
|
it 'preserves classes' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
* [x] checked
|
|
|
|
|
* [ ] not checked
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
|
|
|
|
<div>
|
|
|
|
|
<ul class="checklist">
|
|
|
|
|
<li>
|
|
|
|
|
<p><i class="fa fa-check-square-o"></i> checked</p>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<p><i class="fa fa-square-o"></i> not checked</p>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with marks' do
|
|
|
|
|
it 'preserves classes' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
Werewolves are allergic to #cassia cinnamon#.
|
|
|
|
|
|
|
|
|
|
Did the werewolves read the [.small]#small print#?
|
|
|
|
|
|
|
|
|
|
Where did all the [.underline.small]#cores# run off to?
|
|
|
|
|
|
|
|
|
|
We need [.line-through]#ten# make that twenty VMs.
|
|
|
|
|
|
|
|
|
|
[.big]##O##nce upon an infinite loop.
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
|
|
|
|
<div>
|
|
|
|
|
<p>Werewolves are allergic to <mark>cassia cinnamon</mark>.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p>Did the werewolves read the <span class="small">small print</span>?</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p>Where did all the <span class="underline small">cores</span> run off to?</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p>We need <span class="line-through">ten</span> make that twenty VMs.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p><span class="big">O</span>nce upon an infinite loop.</p>
|
|
|
|
|
</div>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-06-19 02:37:48 -04:00
|
|
|
|
context 'with fenced block' do
|
|
|
|
|
it 'highlights syntax' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
```js
|
|
|
|
|
console.log('hello world')
|
|
|
|
|
```
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
|
|
|
|
<div>
|
|
|
|
|
<div>
|
|
|
|
|
<pre class="code highlight js-syntax-highlight javascript" lang="javascript" v-pre="true"><code><span id="LC1" class="line" lang="javascript"><span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="dl">'</span><span class="s1">hello world</span><span class="dl">'</span><span class="p">)</span></span></code></pre>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with listing block' do
|
|
|
|
|
it 'highlights syntax' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
[source,c++]
|
|
|
|
|
.class.cpp
|
|
|
|
|
----
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 5; i++) {
|
|
|
|
|
std::cout<<"*"<<std::endl;
|
|
|
|
|
}
|
|
|
|
|
----
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = <<~HTML
|
|
|
|
|
<div>
|
|
|
|
|
<div>class.cpp</div>
|
|
|
|
|
<div>
|
|
|
|
|
<pre class="code highlight js-syntax-highlight cpp" lang="cpp" v-pre="true"><code><span id="LC1" class="line" lang="cpp"><span class="cp">#include <stdio.h></span></span>
|
|
|
|
|
<span id="LC2" class="line" lang="cpp"></span>
|
|
|
|
|
<span id="LC3" class="line" lang="cpp"><span class="k">for</span> <span class="p">(</span><span class="kt">int</span> <span class="n">i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="n">i</span> <span class="o"><</span> <span class="mi">5</span><span class="p">;</span> <span class="n">i</span><span class="o">++</span><span class="p">)</span> <span class="p">{</span></span>
|
|
|
|
|
<span id="LC4" class="line" lang="cpp"> <span class="n">std</span><span class="o">::</span><span class="n">cout</span><span class="o"><<</span><span class="s">"*"</span><span class="o"><<</span><span class="n">std</span><span class="o">::</span><span class="n">endl</span><span class="p">;</span></span>
|
|
|
|
|
<span id="LC5" class="line" lang="cpp"><span class="p">}</span></span></code></pre>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output.strip)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with stem block' do
|
|
|
|
|
it 'does not apply syntax highlighting' do
|
|
|
|
|
input = <<~ADOC
|
|
|
|
|
[stem]
|
|
|
|
|
++++
|
|
|
|
|
\sqrt{4} = 2
|
|
|
|
|
++++
|
|
|
|
|
ADOC
|
|
|
|
|
|
|
|
|
|
output = "<div>\n<div>\n\\$ qrt{4} = 2\\$\n</div>\n</div>"
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include(output)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-05-02 10:52:19 -04:00
|
|
|
|
context 'external links' do
|
|
|
|
|
it 'adds the `rel` attribute to the link' do
|
|
|
|
|
output = render('link:https://google.com[Google]', context)
|
|
|
|
|
|
2017-05-02 18:25:58 -04:00
|
|
|
|
expect(output).to include('rel="nofollow noreferrer noopener"')
|
2017-05-02 10:52:19 -04:00
|
|
|
|
end
|
|
|
|
|
end
|
2017-05-09 08:14:24 -04:00
|
|
|
|
|
|
|
|
|
context 'LaTex code' do
|
|
|
|
|
it 'adds class js-render-math to the output' do
|
|
|
|
|
input = <<~MD
|
|
|
|
|
:stem: latexmath
|
|
|
|
|
|
|
|
|
|
[stem]
|
|
|
|
|
++++
|
|
|
|
|
\sqrt{4} = 2
|
|
|
|
|
++++
|
|
|
|
|
|
|
|
|
|
another part
|
|
|
|
|
|
|
|
|
|
[latexmath]
|
|
|
|
|
++++
|
|
|
|
|
\beta_x \gamma
|
|
|
|
|
++++
|
|
|
|
|
|
|
|
|
|
stem:[2+2] is 4
|
|
|
|
|
MD
|
|
|
|
|
|
|
|
|
|
expect(render(input, context)).to include('<pre data-math-style="display" class="code math js-render-math"><code>eta_x gamma</code></pre>')
|
|
|
|
|
expect(render(input, context)).to include('<p><code data-math-style="inline" class="code math js-render-math">2+2</code> is 4</p>')
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-02-14 14:41:13 -05:00
|
|
|
|
|
|
|
|
|
context 'outfilesuffix' do
|
|
|
|
|
it 'defaults to adoc' do
|
|
|
|
|
output = render("Inter-document reference <<README.adoc#>>", context)
|
|
|
|
|
|
|
|
|
|
expect(output).to include("a href=\"README.adoc\"")
|
|
|
|
|
end
|
|
|
|
|
end
|
2015-05-12 19:07:48 -04:00
|
|
|
|
end
|
|
|
|
|
|
2019-06-14 03:53:08 -04:00
|
|
|
|
context 'with project' do
|
|
|
|
|
let(:context) do
|
|
|
|
|
{
|
|
|
|
|
commit: commit,
|
|
|
|
|
project: project,
|
|
|
|
|
ref: ref,
|
|
|
|
|
requested_path: requested_path
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
let(:commit) { project.commit(ref) }
|
|
|
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
|
let(:ref) { 'asciidoc' }
|
|
|
|
|
let(:requested_path) { '/' }
|
|
|
|
|
|
|
|
|
|
context 'include directive' do
|
|
|
|
|
subject(:output) { render(input, context) }
|
|
|
|
|
|
|
|
|
|
let(:input) { "Include this:\n\ninclude::#{include_path}[]" }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
current_file = requested_path
|
|
|
|
|
current_file += 'README.adoc' if requested_path.end_with? '/'
|
|
|
|
|
|
|
|
|
|
create_file(current_file, "= AsciiDoc\n")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with path to non-existing file' do
|
|
|
|
|
let(:include_path) { 'not-exists.adoc' }
|
|
|
|
|
|
|
|
|
|
it 'renders Unresolved directive placeholder' do
|
|
|
|
|
is_expected.to include("<strong>[ERROR: include::#{include_path}[] - unresolved directive]</strong>")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
shared_examples :invalid_include do
|
|
|
|
|
let(:include_path) { 'dk.png' }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
allow(project.repository).to receive(:blob_at).and_return(blob)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'does not read the blob' do
|
|
|
|
|
expect(blob).not_to receive(:data)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'renders Unresolved directive placeholder' do
|
|
|
|
|
is_expected.to include("<strong>[ERROR: include::#{include_path}[] - unresolved directive]</strong>")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with path to a binary file' do
|
|
|
|
|
let(:blob) { fake_blob(path: 'dk.png', binary: true) }
|
|
|
|
|
include_examples :invalid_include
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with path to file in external storage' do
|
|
|
|
|
let(:blob) { fake_blob(path: 'dk.png', lfs: true) }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
allow(Gitlab.config.lfs).to receive(:enabled).and_return(true)
|
|
|
|
|
project.update_attribute(:lfs_enabled, true)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
include_examples :invalid_include
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with path to a textual file' do
|
|
|
|
|
let(:include_path) { 'sample.adoc' }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
create_file(file_path, "Content from #{include_path}")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
shared_examples :valid_include do
|
|
|
|
|
[
|
|
|
|
|
['/doc/sample.adoc', 'doc/sample.adoc', 'absolute path'],
|
|
|
|
|
['sample.adoc', 'doc/api/sample.adoc', 'relative path'],
|
|
|
|
|
['./sample.adoc', 'doc/api/sample.adoc', 'relative path with leading ./'],
|
|
|
|
|
['../sample.adoc', 'doc/sample.adoc', 'relative path to a file up one directory'],
|
|
|
|
|
['../../sample.adoc', 'sample.adoc', 'relative path for a file up multiple directories']
|
|
|
|
|
].each do |include_path_, file_path_, desc|
|
|
|
|
|
|
|
|
|
|
context "the file is specified by #{desc}" do
|
|
|
|
|
let(:include_path) { include_path_ }
|
|
|
|
|
let(:file_path) { file_path_ }
|
|
|
|
|
|
|
|
|
|
it 'includes content of the file' do
|
|
|
|
|
is_expected.to include('<p>Include this:</p>')
|
|
|
|
|
is_expected.to include("<p>Content from #{include_path}</p>")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when requested path is a file in the repo' do
|
|
|
|
|
let(:requested_path) { 'doc/api/README.adoc' }
|
|
|
|
|
|
|
|
|
|
include_examples :valid_include
|
|
|
|
|
|
|
|
|
|
context 'without a commit (only ref)' do
|
|
|
|
|
let(:commit) { nil }
|
|
|
|
|
include_examples :valid_include
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when requested path is a directory in the repo' do
|
|
|
|
|
let(:requested_path) { 'doc/api/' }
|
|
|
|
|
|
|
|
|
|
include_examples :valid_include
|
|
|
|
|
|
|
|
|
|
context 'without a commit (only ref)' do
|
|
|
|
|
let(:commit) { nil }
|
|
|
|
|
include_examples :valid_include
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'recursive includes with relative paths' do
|
|
|
|
|
let(:input) do
|
|
|
|
|
<<~ADOC
|
|
|
|
|
Source: requested file
|
|
|
|
|
|
|
|
|
|
include::doc/README.adoc[]
|
|
|
|
|
|
|
|
|
|
include::license.adoc[]
|
|
|
|
|
ADOC
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
create_file 'doc/README.adoc', <<~ADOC
|
|
|
|
|
Source: doc/README.adoc
|
|
|
|
|
|
|
|
|
|
include::../license.adoc[]
|
|
|
|
|
|
|
|
|
|
include::api/hello.adoc[]
|
|
|
|
|
ADOC
|
|
|
|
|
create_file 'license.adoc', <<~ADOC
|
|
|
|
|
Source: license.adoc
|
|
|
|
|
ADOC
|
|
|
|
|
create_file 'doc/api/hello.adoc', <<~ADOC
|
|
|
|
|
Source: doc/api/hello.adoc
|
|
|
|
|
|
|
|
|
|
include::./common.adoc[]
|
|
|
|
|
ADOC
|
|
|
|
|
create_file 'doc/api/common.adoc', <<~ADOC
|
|
|
|
|
Source: doc/api/common.adoc
|
|
|
|
|
ADOC
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'includes content of the included files recursively' do
|
|
|
|
|
expect(output.gsub(/<[^>]+>/, '').gsub(/\n\s*/, "\n").strip).to eq <<~ADOC.strip
|
|
|
|
|
Source: requested file
|
|
|
|
|
Source: doc/README.adoc
|
|
|
|
|
Source: license.adoc
|
|
|
|
|
Source: doc/api/hello.adoc
|
|
|
|
|
Source: doc/api/common.adoc
|
|
|
|
|
Source: license.adoc
|
|
|
|
|
ADOC
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def create_file(path, content)
|
|
|
|
|
project.repository.create_file(project.creator, path, content,
|
|
|
|
|
message: "Add #{path}", branch_name: 'asciidoc')
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2015-05-12 19:07:48 -04:00
|
|
|
|
def render(*args)
|
|
|
|
|
described_class.render(*args)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|