2017-01-29 23:01:31 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Gitlab::RouteMap do
|
2017-01-29 23:01:31 -05:00
|
|
|
describe '#initialize' do
|
|
|
|
context 'when the data is not YAML' do
|
|
|
|
it 'raises an error' do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect { described_class.new('"') }
|
|
|
|
.to raise_error(Gitlab::RouteMap::FormatError, /valid YAML/)
|
2017-01-29 23:01:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the data is not a YAML array' do
|
|
|
|
it 'raises an error' do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect { described_class.new(YAML.dump('foo')) }
|
|
|
|
.to raise_error(Gitlab::RouteMap::FormatError, /an array/)
|
2017-01-29 23:01:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when an entry is not a hash' do
|
|
|
|
it 'raises an error' do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect { described_class.new(YAML.dump(['foo'])) }
|
|
|
|
.to raise_error(Gitlab::RouteMap::FormatError, /a hash/)
|
2017-01-29 23:01:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when an entry does not have a source key' do
|
|
|
|
it 'raises an error' do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect { described_class.new(YAML.dump([{ 'public' => 'index.html' }])) }
|
|
|
|
.to raise_error(Gitlab::RouteMap::FormatError, /source key/)
|
2017-01-29 23:01:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when an entry does not have a public key' do
|
|
|
|
it 'raises an error' do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect { described_class.new(YAML.dump([{ 'source' => '/index\.html/' }])) }
|
|
|
|
.to raise_error(Gitlab::RouteMap::FormatError, /public key/)
|
2017-01-29 23:01:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when an entry source is not a valid regex' do
|
|
|
|
it 'raises an error' do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect { described_class.new(YAML.dump([{ 'source' => '/[/', 'public' => 'index.html' }])) }
|
|
|
|
.to raise_error(Gitlab::RouteMap::FormatError, /regular expression/)
|
2017-01-29 23:01:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when all is good' do
|
|
|
|
it 'returns a route map' do
|
2017-02-07 15:19:12 -05:00
|
|
|
route_map = described_class.new(YAML.dump([{ 'source' => 'index.haml', 'public' => 'index.html' }, { 'source' => '/(.*)\.md/', 'public' => '\1.html' }]))
|
|
|
|
|
|
|
|
expect(route_map.public_path_for_source_path('index.haml')).to eq('index.html')
|
|
|
|
expect(route_map.public_path_for_source_path('foo.md')).to eq('foo.html')
|
2017-01-29 23:01:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#public_path_for_source_path' do
|
2017-06-22 11:33:17 -04:00
|
|
|
context 'malicious regexp' do
|
|
|
|
include_examples 'malicious regexp'
|
|
|
|
|
|
|
|
subject do
|
|
|
|
map = described_class.new(<<-"MAP".strip_heredoc)
|
|
|
|
- source: '#{malicious_regexp}'
|
|
|
|
public: '/'
|
|
|
|
MAP
|
|
|
|
|
|
|
|
map.public_path_for_source_path(malicious_text)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-29 23:01:31 -05:00
|
|
|
subject do
|
|
|
|
described_class.new(<<-'MAP'.strip_heredoc)
|
2017-02-07 15:19:12 -05:00
|
|
|
# Team data
|
|
|
|
- source: 'data/team.yml'
|
|
|
|
public: 'team/'
|
|
|
|
|
2017-01-29 23:01:31 -05:00
|
|
|
# Blogposts
|
|
|
|
- source: /source/posts/([0-9]{4})-([0-9]{2})-([0-9]{2})-(.+?)\..*/ # source/posts/2017-01-30-around-the-world-in-6-releases.html.md.erb
|
|
|
|
public: '\1/\2/\3/\4/' # 2017/01/30/around-the-world-in-6-releases/
|
|
|
|
|
|
|
|
# HTML files
|
|
|
|
- source: /source/(.+?\.html).*/ # source/index.html.haml
|
|
|
|
public: '\1' # index.html
|
|
|
|
|
|
|
|
# Other files
|
|
|
|
- source: /source/(.*)/ # source/images/blogimages/around-the-world-in-6-releases-cover.png
|
|
|
|
public: '\1' # images/blogimages/around-the-world-in-6-releases-cover.png
|
|
|
|
MAP
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the public path for a provided source path' do
|
2017-02-07 15:19:12 -05:00
|
|
|
expect(subject.public_path_for_source_path('data/team.yml')).to eq('team/')
|
|
|
|
|
2017-01-29 23:01:31 -05:00
|
|
|
expect(subject.public_path_for_source_path('source/posts/2017-01-30-around-the-world-in-6-releases.html.md.erb')).to eq('2017/01/30/around-the-world-in-6-releases/')
|
|
|
|
|
|
|
|
expect(subject.public_path_for_source_path('source/index.html.haml')).to eq('index.html')
|
|
|
|
|
|
|
|
expect(subject.public_path_for_source_path('source/images/blogimages/around-the-world-in-6-releases-cover.png')).to eq('images/blogimages/around-the-world-in-6-releases-cover.png')
|
|
|
|
|
|
|
|
expect(subject.public_path_for_source_path('.gitlab/route-map.yml')).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|