Merge pull request #5136 from Meet-Democracy/Legislation-draft-render-markdown-tables
Render markdown tables in legislation draft
This commit is contained in:
@@ -127,6 +127,15 @@ FactoryBot.define do
|
||||
trait :final_version do
|
||||
final_version { true }
|
||||
end
|
||||
|
||||
trait :with_table do
|
||||
body { <<~BODY_MARKDOWN }
|
||||
| id | name | age | gender |
|
||||
|----|---------|-----|--------|
|
||||
| 1 | Roberta | 39 | M |
|
||||
| 2 | Oliver | 25 | F |
|
||||
BODY_MARKDOWN
|
||||
end
|
||||
end
|
||||
|
||||
factory :legislation_annotation, class: "Legislation::Annotation" do
|
||||
|
||||
65
spec/lib/admin_legislation_sanitizer_spec.rb
Normal file
65
spec/lib/admin_legislation_sanitizer_spec.rb
Normal file
@@ -0,0 +1,65 @@
|
||||
require "rails_helper"
|
||||
|
||||
describe AdminLegislationSanitizer do
|
||||
let(:sanitizer) { AdminLegislationSanitizer.new }
|
||||
|
||||
describe "#sanitize" do
|
||||
it "allows images" do
|
||||
html = 'Dangerous<img src="/smile.png" alt="Smile"> image'
|
||||
expect(sanitizer.sanitize(html)).to eq(html)
|
||||
end
|
||||
|
||||
it "allows h1 to h6" do
|
||||
html = '<h1>Heading 1</h1>
|
||||
<h2>Heading 2</h2>
|
||||
<h3>Heading 3</h3>
|
||||
<h4>Heading 4</h4>
|
||||
<h5>Heading 5</h5>
|
||||
<h6>Heading 6</h6>'
|
||||
expect(sanitizer.sanitize(html)).to eq(html)
|
||||
end
|
||||
|
||||
it "allows tables" do
|
||||
html = '<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>id</th>
|
||||
<th>name</th>
|
||||
<th>age</th>
|
||||
<th>gender</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Roberta</td>
|
||||
<td>39</td>
|
||||
<td>M</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>Oliver</td>
|
||||
<td>25</td>
|
||||
<td>F</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>'
|
||||
expect(sanitizer.sanitize(html)).to eq(html)
|
||||
end
|
||||
|
||||
it "allows alt src and id" do
|
||||
html = 'Dangerous<img src="/smile.png" alt="Smile" id="smile"> image'
|
||||
expect(sanitizer.sanitize(html)).to eq(html)
|
||||
end
|
||||
|
||||
it "doesn't allow style" do
|
||||
html = 'Dangerous<img src="/smile.png" alt="Smile" style="width:10px;"> image'
|
||||
expect(sanitizer.sanitize(html)).not_to eq(html)
|
||||
end
|
||||
|
||||
it "doesn't allow class" do
|
||||
html = 'Dangerous<img src="/smile.png" alt="Smile" class="smile"> image'
|
||||
expect(sanitizer.sanitize(html)).not_to eq(html)
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -29,6 +29,15 @@ describe Legislation::DraftVersion do
|
||||
expect(legislation_draft_version.toc_html).to eq(toc_html)
|
||||
end
|
||||
|
||||
it "renders the tables from the markdown body field" do
|
||||
legislation_draft_version.body = body_with_table_markdown
|
||||
|
||||
legislation_draft_version.save!
|
||||
|
||||
expect(legislation_draft_version.body_html).to eq(body_with_table_html)
|
||||
expect(legislation_draft_version.toc_html).to eq(toc_html)
|
||||
end
|
||||
|
||||
def body_markdown
|
||||
<<~BODY_MARKDOWN
|
||||
# Title 1
|
||||
@@ -50,6 +59,32 @@ describe Legislation::DraftVersion do
|
||||
BODY_MARKDOWN
|
||||
end
|
||||
|
||||
def body_with_table_markdown
|
||||
<<~BODY_MARKDOWN
|
||||
# Title 1
|
||||
|
||||
Some paragraph.
|
||||
|
||||
A list:
|
||||
|
||||
- item 1
|
||||
- item 2
|
||||
|
||||
## Subtitle
|
||||
|
||||
Another paragraph.
|
||||
|
||||
# Title 2
|
||||
|
||||
Something about this.
|
||||
|
||||
| id | name | age | gender |
|
||||
|----|---------|-----|--------|
|
||||
| 1 | Roberta | 39 | M |
|
||||
| 2 | Oliver | 25 | F |
|
||||
BODY_MARKDOWN
|
||||
end
|
||||
|
||||
def body_html
|
||||
<<~BODY_HTML
|
||||
<h1 id="title-1">Title 1</h1>
|
||||
@@ -73,6 +108,54 @@ describe Legislation::DraftVersion do
|
||||
BODY_HTML
|
||||
end
|
||||
|
||||
def body_with_table_html
|
||||
<<~BODY_HTML
|
||||
<h1 id="title-1">Title 1</h1>
|
||||
|
||||
<p>Some paragraph.</p>
|
||||
|
||||
<p>A list:</p>
|
||||
|
||||
<ul>
|
||||
<li>item 1</li>
|
||||
<li>item 2</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="subtitle">Subtitle</h2>
|
||||
|
||||
<p>Another paragraph.</p>
|
||||
|
||||
<h1 id="title-2">Title 2</h1>
|
||||
|
||||
<p>Something about this.</p>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>id</th>
|
||||
<th>name</th>
|
||||
<th>age</th>
|
||||
<th>gender</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Roberta</td>
|
||||
<td>39</td>
|
||||
<td>M</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>Oliver</td>
|
||||
<td>25</td>
|
||||
<td>F</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
BODY_HTML
|
||||
end
|
||||
|
||||
def toc_html
|
||||
<<~TOC_HTML
|
||||
<ul>
|
||||
|
||||
@@ -397,4 +397,30 @@ describe "Legislation Draft Versions" do
|
||||
expect(page).to have_content "my other annotation"
|
||||
end
|
||||
end
|
||||
|
||||
context "See table from markdown" do
|
||||
let(:draft_version) { create(:legislation_draft_version, :published, :with_table) }
|
||||
let(:path) do
|
||||
edit_admin_legislation_process_draft_version_path(draft_version.process, draft_version)
|
||||
end
|
||||
|
||||
scenario "See table as a user" do
|
||||
visit legislation_process_draft_version_path(draft_version.process, draft_version)
|
||||
|
||||
expect(page).to have_css("table")
|
||||
expect(page).to have_content "Roberta"
|
||||
expect(page).to have_content "25"
|
||||
end
|
||||
|
||||
scenario "See table as an admin" do
|
||||
login_as(administrator)
|
||||
|
||||
visit path
|
||||
click_link "Launch text editor"
|
||||
|
||||
expect(page).to have_css("table")
|
||||
expect(page).to have_content "Roberta"
|
||||
expect(page).to have_content "25"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user