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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2019-02-06 13:22:15 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2019-02-06 13:22:15 +0300
commitf1945b99e764430fb90e70f5bd67ff74f7d2122b (patch)
treebf870e258adf96149b87cd7b30092848363604cc /spec
parentb76bf63f01a24d8f4e3db5ad591e75bba65c2ef4 (diff)
Add some specs for GitLab docs link class
Diffstat (limited to 'spec')
-rw-r--r--spec/gitlab/docs/link_spec.rb145
1 files changed, 145 insertions, 0 deletions
diff --git a/spec/gitlab/docs/link_spec.rb b/spec/gitlab/docs/link_spec.rb
new file mode 100644
index 00000000..e8603099
--- /dev/null
+++ b/spec/gitlab/docs/link_spec.rb
@@ -0,0 +1,145 @@
+require 'spec_helper'
+
+require 'nokogiri'
+require 'gitlab/docs/link'
+require 'gitlab/docs/page'
+require 'gitlab/docs/nanoc'
+
+describe Gitlab::Docs::Link do
+ let(:page) { double('page') }
+ let(:href) { '../some/page.html#some-anchor' }
+
+ subject { described_class.new(href, page) }
+
+ describe '#to_anchor?' do
+ context 'when link contains anchor name' do
+ let(:href) { '../some/page.html' }
+
+ it { is_expected.not_to be_to_anchor }
+ end
+
+ context 'when link does not contain anchor name' do
+ let(:href) { '../some/page.html#some-anchor' }
+
+ it { is_expected.to be_to_anchor }
+ end
+ end
+
+ describe '#internal_anchor?' do
+ context 'when link contains internal anchor name' do
+ let(:href) { '#some-internal-anchor' }
+
+ it { is_expected.to be_internal_anchor }
+ end
+
+ context 'when link does not contain internal anchor' do
+ let(:href) { '../some/page.html#some-anchor' }
+
+ it { is_expected.not_to be_internal_anchor }
+ end
+ end
+
+ describe '#internal?' do
+ context 'when link is an external link' do
+ let(:href) { 'https://gitlab.com/some/page.html' }
+
+ it { is_expected.not_to be_internal }
+ end
+
+ context 'when link is an internal link' do
+ let(:href) { '../some/page.html' }
+
+ it { is_expected.to be_internal }
+ end
+ end
+
+ describe '#absolute_path' do
+ before do
+ allow(page).to receive(:directory).and_return('/my/path')
+ allow(Gitlab::Docs::Nanoc).to receive(:output_dir).and_return('/nanoc')
+ end
+
+ context 'when link is an external link' do
+ let(:href) { 'https://gitlab.com/some/page.html' }
+
+ it 'raises an error' do
+ expect { subject.absolute_path }.to raise_error(RuntimeError)
+ end
+ end
+
+ context 'when link is relative' do
+ let(:href) { '../some/page.html' }
+
+ it 'expands relative link' do
+ expect(subject.absolute_path).to eq '/my/some/page.html'
+ end
+ end
+
+ context 'when link is absolute' do
+ let(:href) { '/some/page.html' }
+
+ it 'expands absolute path' do
+ expect(subject.absolute_path).to eq '/nanoc/some/page.html'
+ end
+ end
+ end
+
+ describe '#destination_page' do
+ context 'when the link is an internal link' do
+ let(:href) { '#some-anchor' }
+
+ it 'returns the page it is assigned by itself' do
+ expect(subject.destination_page).to eq page
+ end
+ end
+
+ context 'when the link is an external link' do
+ let(:href) { '../some/page.html#my-anchor' }
+ let(:destination) { double('destination') }
+
+ before do
+ allow(page).to receive(:directory).and_return('/my/docs/page')
+ end
+
+ it 'builds a new page' do
+ expect(Gitlab::Docs::Page).to receive(:build)
+ .with('/my/docs/some/page.html')
+ .and_return(destination)
+
+ expect(subject.destination_page).to eq destination
+ end
+ end
+ end
+
+ describe '#source_file' do
+ it 'returns page file' do
+ expect(page).to receive(:file)
+
+ subject.source_file
+ end
+ end
+
+ describe '#destination_page_not_found?' do
+ before do
+ allow(page).to receive(:directory).and_return('/my/dir')
+ allow(subject).to receive(:destination_file)
+ .and_return(double('page', exists?: false))
+ end
+
+ it 'returns false if page does not exist' do
+ expect(subject.destination_page_not_found?).to be true
+ end
+ end
+
+ describe '#destination_anchor_not_found?' do
+ before do
+ allow(page).to receive(:directory).and_return('/my/dir')
+ allow(subject).to receive(:destination_file)
+ .and_return(double('page', has_anchor?: false))
+ end
+
+ it 'returns false if anchor does not exist' do
+ expect(subject.destination_anchor_not_found?).to be true
+ end
+ end
+end