Skip to content

Add test for code_block filter #157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 126 additions & 0 deletions spec/qiita/markdown/filters/code_block_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
# frozen_string_literal: true

describe Qiita::Markdown::Filters::CodeBlock do
subject(:filter) { described_class.new(input_html) }

let(:context) { nil }

context "without code" do
let(:input_html) do
<<~HTML
<pre>
</pre>
HTML
end

it "does not change" do
expect(filter.call.to_s).to eq(input_html)
end
end

context "with code" do
let(:input_html) do
<<~HTML
<pre><code>
</code></pre>
HTML
end

it "does not change" do
expect(filter.call.to_s).to eq(input_html)
end

context "with data-metadata" do
let(:input_html) do
<<~HTML
<pre><code data-metadata>
</code></pre>
HTML
end

it "does not change" do
expect(filter.call.to_s).to eq(input_html)
end

context "with data-metadata value" do
let(:input_html) do
<<~HTML
<pre><code data-metadata="ruby">
</code></pre>
HTML
end

let(:output_html) do
<<~HTML
<pre lang="ruby"><code data-metadata="ruby">
</code></pre>
HTML
end

it "adds lang on pre" do
expect(filter.call.to_s).to eq(output_html)
end

context "with value include filename" do
let(:input_html) do
<<~HTML
<pre><code data-metadata="ruby:abc.rb">
</code></pre>
HTML
end

let(:output_html) do
<<~HTML
<pre filename="abc.rb" lang="ruby"><code data-metadata="ruby:abc.rb">
</code></pre>
HTML
end

it "adds lang and filename on pre" do
expect(filter.call.to_s).to eq(output_html)
end
end
end

context "with data-metadata value like filename" do
let(:input_html) do
<<~HTML
<pre><code data-metadata="abc.rb">
</code></pre>
HTML
end

let(:output_html) do
<<~HTML
<pre filename="abc.rb" lang="ruby"><code data-metadata="abc.rb">
</code></pre>
HTML
end

it "adds lang and filename on pre" do
expect(filter.call.to_s).to eq(output_html)
end
end

context "with data-metadata value like filename without extension" do
let(:input_html) do
<<~HTML
<pre><code data-metadata="Dockerfile">
</code></pre>
HTML
end

let(:output_html) do
<<~HTML
<pre lang="Dockerfile"><code data-metadata="Dockerfile">
</code></pre>
HTML
end

it "adds lang and filename on pre" do
expect(filter.call.to_s).to eq(output_html)
end
end
end
end
end
Loading