Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/markdown_content_rewriter_service_spec.rb')
-rw-r--r--spec/services/markdown_content_rewriter_service_spec.rb83
1 files changed, 68 insertions, 15 deletions
diff --git a/spec/services/markdown_content_rewriter_service_spec.rb b/spec/services/markdown_content_rewriter_service_spec.rb
index 37c8a210ba5..91a117536ca 100644
--- a/spec/services/markdown_content_rewriter_service_spec.rb
+++ b/spec/services/markdown_content_rewriter_service_spec.rb
@@ -8,38 +8,63 @@ RSpec.describe MarkdownContentRewriterService do
let_it_be(:target_parent) { create(:project, :public) }
let(:content) { 'My content' }
+ let(:issue) { create(:issue, project: source_parent, description: content)}
describe '#initialize' do
it 'raises an error if source_parent is not a Project' do
expect do
- described_class.new(user, content, create(:group), target_parent)
+ described_class.new(user, issue, :description, create(:group), target_parent)
end.to raise_error(ArgumentError, 'The rewriter classes require that `source_parent` is a `Project`')
end
+
+ it 'raises an error if field does not have cached markdown' do
+ expect do
+ described_class.new(user, issue, :author, source_parent, target_parent)
+ end.to raise_error(ArgumentError, 'The `field` attribute does not contain cached markdown')
+ end
end
describe '#execute' do
- subject { described_class.new(user, content, source_parent, target_parent).execute }
+ subject { described_class.new(user, issue, :description, source_parent, target_parent).execute }
- it 'calls the rewriter classes successfully', :aggregate_failures do
- [Gitlab::Gfm::ReferenceRewriter, Gitlab::Gfm::UploadsRewriter].each do |rewriter_class|
- service = double
-
- expect(service).to receive(:rewrite).with(target_parent)
- expect(rewriter_class).to receive(:new).and_return(service)
+ context 'when content does not need a rewrite' do
+ it 'returns original content and cached html' do
+ expect(subject).to eq({
+ 'description' => issue.description,
+ 'description_html' => issue.description_html,
+ 'skip_markdown_cache_validation' => true
+ })
end
+ end
+
+ context 'when content needs a rewrite' do
+ it 'calls the rewriter classes successfully', :aggregate_failures do
+ described_class::REWRITERS.each do |rewriter_class|
+ service = double
- subject
+ allow(service).to receive(:needs_rewrite?).and_return(true)
+
+ expect(service).to receive(:rewrite).with(target_parent)
+ expect(rewriter_class).to receive(:new).and_return(service)
+ end
+
+ subject
+ end
end
# Perform simple integration-style tests for each rewriter class.
# to prove they run correctly.
- context 'when content contains a reference' do
- let_it_be(:issue) { create(:issue, project: source_parent) }
+ context 'when content has references' do
+ let_it_be(:issue_to_reference) { create(:issue, project: source_parent) }
- let(:content) { "See ##{issue.iid}" }
+ let(:content) { "See ##{issue_to_reference.iid}" }
it 'rewrites content' do
- expect(subject).to eq("See #{source_parent.full_path}##{issue.iid}")
+ expect(subject).to eq({
+ 'description' => "See #{source_parent.full_path}##{issue_to_reference.iid}",
+ 'description_html' => nil,
+ 'skip_markdown_cache_validation' => false
+ })
end
end
@@ -50,9 +75,37 @@ RSpec.describe MarkdownContentRewriterService do
it 'rewrites content' do
new_content = subject
- expect(new_content).not_to eq(content)
- expect(new_content.length).to eq(content.length)
+ expect(new_content[:description]).not_to eq(content)
+ expect(new_content[:description].length).to eq(content.length)
+ expect(new_content[1]).to eq(nil)
end
end
end
+
+ describe '#safe_to_copy_markdown?' do
+ subject do
+ rewriter = described_class.new(user, issue, :description, source_parent, target_parent)
+ rewriter.safe_to_copy_markdown?
+ end
+
+ context 'when content has references' do
+ let(:milestone) { create(:milestone, project: source_parent) }
+ let(:content) { "Description that references #{milestone.to_reference}" }
+
+ it { is_expected.to eq(false) }
+ end
+
+ context 'when content has uploaded file references' do
+ let(:image_uploader) { build(:file_uploader, project: source_parent) }
+ let(:content) { "Text and #{image_uploader.markdown_link}" }
+
+ it { is_expected.to eq(false) }
+ end
+
+ context 'when content does not have references or uploads' do
+ let(:content) { "simples text with ```code```" }
+
+ it { is_expected.to eq(true) }
+ end
+ end
end