relative_link_filter_spec.rb 15.9 KB
Newer Older
1 2
# frozen_string_literal: true

3 4
require 'spec_helper'

5
describe Banzai::Filter::RelativeLinkFilter do
6 7 8
  include GitHelpers
  include RepoHelpers

9 10
  def filter(doc, contexts = {})
    contexts.reverse_merge!({
W
winniehell 已提交
11
      commit:         commit,
12
      project:        project,
13
      current_user:   user,
14
      group:          group,
15 16
      project_wiki:   project_wiki,
      ref:            ref,
17 18
      requested_path: requested_path,
      only_path:      only_path
19 20 21 22 23 24 25 26 27
    })

    described_class.call(doc, contexts)
  end

  def image(path)
    %(<img src="#{path}" />)
  end

28 29 30 31
  def video(path)
    %(<video src="#{path}"></video>)
  end

32 33 34 35
  def audio(path)
    %(<audio src="#{path}"></audio>)
  end

36 37 38 39
  def link(path)
    %(<a href="#{path}">#{path}</a>)
  end

40 41 42 43
  def nested(element)
    %(<div>#{element}</div>)
  end

44 45 46 47 48 49
  def allow_gitaly_n_plus_1
    Gitlab::GitalyClient.allow_n_plus_1_calls do
      yield
    end
  end

50 51
  let(:project)        { create(:project, :repository, :public) }
  let(:user)           { create(:user) }
52
  let(:group)          { nil }
53
  let(:project_path)   { project.full_path }
54
  let(:ref)            { 'markdown' }
W
winniehell 已提交
55
  let(:commit)         { project.commit(ref) }
56 57
  let(:project_wiki)   { nil }
  let(:requested_path) { '/' }
58
  let(:only_path)      { true }
59

60 61 62 63 64 65 66 67 68 69 70 71 72
  it 'does not trigger a gitaly n+1', :request_store do
    raw_doc = ""

    allow_gitaly_n_plus_1 do
      30.times do |i|
        create_file_in_repo(project, ref, ref, "new_file_#{i}", "x" )
        raw_doc += link("new_file_#{i}")
      end
    end

    expect { filter(raw_doc) }.to change { Gitlab::GitalyClient.get_request_count }.by(2)
  end

73 74 75 76 77 78 79 80 81 82
  shared_examples :preserve_unchanged do
    it 'does not modify any relative URL in anchor' do
      doc = filter(link('README.md'))
      expect(doc.at_css('a')['href']).to eq 'README.md'
    end

    it 'does not modify any relative URL in image' do
      doc = filter(image('files/images/logo-black.png'))
      expect(doc.at_css('img')['src']).to eq 'files/images/logo-black.png'
    end
83 84 85 86 87 88

    it 'does not modify any relative URL in video' do
      doc = filter(video('files/videos/intro.mp4'), commit: project.commit('video'), ref: 'video')

      expect(doc.at_css('video')['src']).to eq 'files/videos/intro.mp4'
    end
89 90 91 92 93 94

    it 'does not modify any relative URL in audio' do
      doc = filter(audio('files/audio/sample.wav'), commit: project.commit('audio'), ref: 'audio')

      expect(doc.at_css('audio')['src']).to eq 'files/audio/sample.wav'
    end
95 96 97 98 99 100 101 102
  end

  context 'with a project_wiki' do
    let(:project_wiki) { double('ProjectWiki') }
    include_examples :preserve_unchanged
  end

  context 'without a repository' do
103
    let(:project) { create(:project) }
104 105 106 107 108 109 110 111
    include_examples :preserve_unchanged
  end

  context 'with an empty repository' do
    let(:project) { create(:project_empty_repo) }
    include_examples :preserve_unchanged
  end

112 113 114 115 116
  context 'without project repository access' do
    let(:project) { create(:project, :repository, repository_access_level: ProjectFeature::PRIVATE) }
    include_examples :preserve_unchanged
  end

117 118 119 120 121
  it 'does not raise an exception on invalid URIs' do
    act = link("://foo")
    expect { filter(act) }.not_to raise_error
  end

P
Patrick Derichs 已提交
122 123 124 125 126
  it 'does not raise an exception on URIs containing invalid utf-8 byte sequences' do
    act = link("%FF")
    expect { filter(act) }.not_to raise_error
  end

127 128 129 130 131
  it 'does not raise an exception with a garbled path' do
    act = link("open(/var/tmp/):%20/location%0Afrom:%20/test")
    expect { filter(act) }.not_to raise_error
  end

132 133 134 135 136
  it 'does not explode with an escaped null byte' do
    act = link("/%00")
    expect { filter(act) }.not_to raise_error
  end

137 138 139 140 141
  it 'does not raise an exception with a space in the path' do
    act = link("/uploads/d18213acd3732630991986120e167e3d/Landscape_8.jpg  \nBut here's some more unexpected text :smile:)")
    expect { filter(act) }.not_to raise_error
  end

W
winniehell 已提交
142 143
  it 'ignores ref if commit is passed' do
    doc = filter(link('non/existent.file'), commit: project.commit('empty-branch') )
144 145
    expect(doc.at_css('a')['href'])
      .to eq "/#{project_path}/#{ref}/non/existent.file" # non-existent files have no leading blob/raw/tree
W
winniehell 已提交
146 147 148
  end

  shared_examples :valid_repository do
W
winniehell 已提交
149 150
    it 'rebuilds absolute URL for a file in the repo' do
      doc = filter(link('/doc/api/README.md'))
151 152
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/blob/#{ref}/doc/api/README.md"
W
winniehell 已提交
153 154
    end

155 156 157 158 159 160 161
    it 'does not modify relative URLs in system notes' do
      path = "#{project_path}/merge_requests/1/diffs"
      doc = filter(link(path), system_note: true)

      expect(doc.at_css('a')['href']).to eq path
    end

W
winniehell 已提交
162 163 164 165 166
    it 'ignores absolute URLs with two leading slashes' do
      doc = filter(link('//doc/api/README.md'))
      expect(doc.at_css('a')['href']).to eq '//doc/api/README.md'
    end

167 168
    it 'rebuilds relative URL for a file in the repo' do
      doc = filter(link('doc/api/README.md'))
169 170
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/blob/#{ref}/doc/api/README.md"
171 172
    end

W
winniehell 已提交
173 174
    it 'rebuilds relative URL for a file in the repo with leading ./' do
      doc = filter(link('./doc/api/README.md'))
175 176
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/blob/#{ref}/doc/api/README.md"
W
winniehell 已提交
177 178
    end

179 180 181 182
    it 'rebuilds relative URL for a file in the repo up one directory' do
      relative_link = link('../api/README.md')
      doc = filter(relative_link, requested_path: 'doc/update/7.14-to-8.0.md')

183 184
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/blob/#{ref}/doc/api/README.md"
185 186 187 188 189 190
    end

    it 'rebuilds relative URL for a file in the repo up multiple directories' do
      relative_link = link('../../../api/README.md')
      doc = filter(relative_link, requested_path: 'doc/foo/bar/baz/README.md')

191 192
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/blob/#{ref}/doc/api/README.md"
193 194
    end

195 196 197 198
    it 'rebuilds relative URL for a file in the repository root' do
      relative_link = link('../README.md')
      doc = filter(relative_link, requested_path: 'doc/some-file.md')

199 200
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/blob/#{ref}/README.md"
201 202
    end

203 204
    it 'rebuilds relative URL for a file in the repo with an anchor' do
      doc = filter(link('README.md#section'))
205 206
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/blob/#{ref}/README.md#section"
207 208 209 210
    end

    it 'rebuilds relative URL for a directory in the repo' do
      doc = filter(link('doc/api/'))
211 212
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/tree/#{ref}/doc/api"
213 214 215
    end

    it 'rebuilds relative URL for an image in the repo' do
216 217
      doc = filter(image('files/images/logo-black.png'))

218 219
      expect(doc.at_css('img')['src'])
        .to eq "/#{project_path}/raw/#{ref}/files/images/logo-black.png"
220 221 222
    end

    it 'rebuilds relative URL for link to an image in the repo' do
223
      doc = filter(link('files/images/logo-black.png'))
224

225 226
      expect(doc.at_css('a')['href'])
        .to eq "/#{project_path}/raw/#{ref}/files/images/logo-black.png"
227 228
    end

229 230 231
    it 'rebuilds relative URL for a video in the repo' do
      doc = filter(video('files/videos/intro.mp4'), commit: project.commit('video'), ref: 'video')

232 233
      expect(doc.at_css('video')['src'])
        .to eq "/#{project_path}/raw/video/files/videos/intro.mp4"
234 235
    end

236 237 238 239 240 241 242
    it 'rebuilds relative URL for audio in the repo' do
      doc = filter(audio('files/audio/sample.wav'), commit: project.commit('audio'), ref: 'audio')

      expect(doc.at_css('audio')['src'])
        .to eq "/#{project_path}/raw/audio/files/audio/sample.wav"
    end

243 244 245 246 247 248 249 250 251 252
    it 'does not modify relative URL with an anchor only' do
      doc = filter(link('#section-1'))
      expect(doc.at_css('a')['href']).to eq '#section-1'
    end

    it 'does not modify absolute URL' do
      doc = filter(link('http://example.com'))
      expect(doc.at_css('a')['href']).to eq 'http://example.com'
    end

253 254 255 256 257 258
    it 'does not call gitaly' do
      filter(link('http://example.com'))

      expect(described_class).not_to receive(:get_blob_types)
    end

259 260 261 262
    it 'supports Unicode filenames' do
      path = 'files/images/한글.png'
      escaped = Addressable::URI.escape(path)

263 264
      # Stub this method so the file doesn't actually need to be in the repo
      allow_any_instance_of(described_class).to receive(:uri_type).and_return(:raw)
265 266

      doc = filter(image(escaped))
W
winniehell 已提交
267
      expect(doc.at_css('img')['src']).to eq "/#{project_path}/raw/#{Addressable::URI.escape(ref)}/#{escaped}"
268 269 270 271
    end

    context 'when requested path is a file in the repo' do
      let(:requested_path) { 'doc/api/README.md' }
W
winniehell 已提交
272 273 274 275
      it 'rebuilds URL relative to the containing directory' do
        doc = filter(link('users.md'))
        expect(doc.at_css('a')['href']).to eq "/#{project_path}/blob/#{Addressable::URI.escape(ref)}/doc/api/users.md"
      end
276 277 278
    end

    context 'when requested path is a directory in the repo' do
W
winniehell 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
      let(:requested_path) { 'doc/api/' }
      it 'rebuilds URL relative to the directory' do
        doc = filter(link('users.md'))
        expect(doc.at_css('a')['href']).to eq "/#{project_path}/blob/#{Addressable::URI.escape(ref)}/doc/api/users.md"
      end
    end

    context 'when ref name contains percent sign' do
      let(:ref) { '100%branch' }
      let(:commit) { project.commit('1b12f15a11fc6e62177bef08f47bc7b5ce50b141') }
      let(:requested_path) { 'foo/bar/' }
      it 'correctly escapes the ref' do
        doc = filter(link('.gitkeep'))
        expect(doc.at_css('a')['href']).to eq "/#{project_path}/blob/#{Addressable::URI.escape(ref)}/foo/bar/.gitkeep"
      end
    end

296
    context 'when ref name contains special chars' do
297 298
      let(:ref) { 'mark#\'@],+;-._/#@!$&()+down' }
      let(:path) { 'files/images/logo-black.png' }
299 300

      it 'correctly escapes the ref' do
G
George Tsiolis 已提交
301
        # Addressable won't escape the '#', so we do this manually
302 303 304 305
        ref_escaped = 'mark%23\'@%5D,+;-._/%23@!$&()+down'

        # Stub this method so the branch doesn't actually need to be in the repo
        allow_any_instance_of(described_class).to receive(:uri_type).and_return(:raw)
306
        allow_any_instance_of(described_class).to receive(:get_uri_types).and_return({ path: :tree })
307

308
        doc = filter(link(path))
309 310 311 312 313 314

        expect(doc.at_css('a')['href'])
          .to eq "/#{project_path}/raw/#{ref_escaped}/files/images/logo-black.png"
      end
    end

W
winniehell 已提交
315 316 317 318 319 320 321 322
    context 'when requested path is a directory with space in the repo' do
      let(:ref) { 'master' }
      let(:commit) { project.commit('38008cb17ce1466d8fec2dfa6f6ab8dcfe5cf49e') }
      let(:requested_path) { 'with space/' }
      it 'does not escape the space twice' do
        doc = filter(link('README.md'))
        expect(doc.at_css('a')['href']).to eq "/#{project_path}/blob/#{Addressable::URI.escape(ref)}/with%20space/README.md"
      end
323 324
    end
  end
W
winniehell 已提交
325 326 327 328 329 330 331 332 333

  context 'with a valid commit' do
    include_examples :valid_repository
  end

  context 'with a valid ref' do
    let(:commit) { nil } # force filter to use ref instead of commit
    include_examples :valid_repository
  end
334 335 336 337 338 339

  context 'with a /upload/ URL' do
    # not needed
    let(:commit) { nil }
    let(:ref) { nil }
    let(:requested_path) { nil }
340 341
    let(:upload_path) { '/uploads/e90decf88d8f96fe9e1389afc2e4a91f/test.jpg' }
    let(:relative_path) { "/#{project.full_path}#{upload_path}" }
342 343

    context 'to a project upload' do
H
Heinrich Lee Yu 已提交
344
      shared_examples 'rewrite project uploads' do
345 346 347 348
        context 'with an absolute URL' do
          let(:absolute_path) { Gitlab.config.gitlab.url + relative_path }
          let(:only_path) { false }

H
Heinrich Lee Yu 已提交
349
          it 'rewrites the link correctly' do
350 351
            doc = filter(link(upload_path))

H
Heinrich Lee Yu 已提交
352
            expect(doc.at_css('a')['href']).to eq(absolute_path)
353 354 355
          end
        end

H
Heinrich Lee Yu 已提交
356
        it 'rebuilds relative URL for a link' do
357
          doc = filter(link(upload_path))
H
Heinrich Lee Yu 已提交
358
          expect(doc.at_css('a')['href']).to eq(relative_path)
359

H
Heinrich Lee Yu 已提交
360 361
          doc = filter(nested(link(upload_path)))
          expect(doc.at_css('a')['href']).to eq(relative_path)
362 363
        end

H
Heinrich Lee Yu 已提交
364 365 366
        it 'rebuilds relative URL for an image' do
          doc = filter(image(upload_path))
          expect(doc.at_css('img')['src']).to eq(relative_path)
367

H
Heinrich Lee Yu 已提交
368 369 370
          doc = filter(nested(image(upload_path)))
          expect(doc.at_css('img')['src']).to eq(relative_path)
        end
371

H
Heinrich Lee Yu 已提交
372 373 374 375
        it 'does not modify absolute URL' do
          doc = filter(link('http://example.com'))
          expect(doc.at_css('a')['href']).to eq 'http://example.com'
        end
376

H
Heinrich Lee Yu 已提交
377 378 379
        it 'supports unescaped Unicode filenames' do
          path = '/uploads/한글.png'
          doc = filter(link(path))
380

H
Heinrich Lee Yu 已提交
381 382
          expect(doc.at_css('a')['href']).to eq("/#{project.full_path}/uploads/%ED%95%9C%EA%B8%80.png")
        end
383

H
Heinrich Lee Yu 已提交
384 385 386 387
        it 'supports escaped Unicode filenames' do
          path = '/uploads/한글.png'
          escaped = Addressable::URI.escape(path)
          doc = filter(image(escaped))
388

H
Heinrich Lee Yu 已提交
389 390
          expect(doc.at_css('img')['src']).to eq("/#{project.full_path}/uploads/%ED%95%9C%EA%B8%80.png")
        end
391
      end
392

H
Heinrich Lee Yu 已提交
393 394 395 396 397
      context 'without project repository access' do
        let(:project) { create(:project, :repository, repository_access_level: ProjectFeature::PRIVATE) }

        it_behaves_like 'rewrite project uploads'
      end
398

H
Heinrich Lee Yu 已提交
399 400
      context 'with project repository access' do
        it_behaves_like 'rewrite project uploads'
401 402 403 404
      end
    end

    context 'to a group upload' do
H
Heinrich Lee Yu 已提交
405
      let(:upload_link) { link('/uploads/e90decf88d8f96fe9e1389afc2e4a91f/test.jpg') }
406 407 408 409
      let(:group) { create(:group) }
      let(:project) { nil }
      let(:relative_path) { "/groups/#{group.full_path}/-/uploads/e90decf88d8f96fe9e1389afc2e4a91f/test.jpg" }

410 411 412 413 414 415 416 417 418 419 420
      context 'with an absolute URL' do
        let(:absolute_path) { Gitlab.config.gitlab.url + relative_path }
        let(:only_path) { false }

        it 'rewrites the link correctly' do
          doc = filter(upload_link)

          expect(doc.at_css('a')['href']).to eq(absolute_path)
        end
      end

421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
      it 'rewrites the link correctly' do
        doc = filter(upload_link)

        expect(doc.at_css('a')['href']).to eq(relative_path)
      end

      it 'rewrites the link correctly for subgroup' do
        group.update!(parent: create(:group))

        doc = filter(upload_link)

        expect(doc.at_css('a')['href']).to eq(relative_path)
      end

      it 'does not modify absolute URL' do
        doc = filter(link('http://example.com'))

        expect(doc.at_css('a')['href']).to eq 'http://example.com'
      end
    end
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494

    context 'to a personal snippet' do
      let(:group) { nil }
      let(:project) { nil }
      let(:relative_path) { '/uploads/-/system/personal_snippet/6/674e4f07fbf0a7736c3439212896e51a/example.tar.gz' }

      context 'with an absolute URL' do
        let(:absolute_path) { Gitlab.config.gitlab.url + relative_path }
        let(:only_path) { false }

        it 'rewrites the link correctly' do
          doc = filter(link(relative_path))

          expect(doc.at_css('a')['href']).to eq(absolute_path)
        end
      end

      context 'with a relative URL root' do
        let(:gitlab_root) { '/gitlab' }
        let(:absolute_path) { Gitlab.config.gitlab.url + gitlab_root + relative_path }

        before do
          stub_config_setting(relative_url_root: gitlab_root)
        end

        context 'with an absolute URL' do
          let(:only_path) { false }

          it 'rewrites the link correctly' do
            doc = filter(link(relative_path))

            expect(doc.at_css('a')['href']).to eq(absolute_path)
          end
        end

        it 'rewrites the link correctly' do
          doc = filter(link(relative_path))

          expect(doc.at_css('a')['href']).to eq(gitlab_root + relative_path)
        end
      end

      it 'rewrites the link correctly' do
        doc = filter(link(relative_path))

        expect(doc.at_css('a')['href']).to eq(relative_path)
      end

      it 'does not modify absolute URL' do
        doc = filter(link('http://example.com'))

        expect(doc.at_css('a')['href']).to eq 'http://example.com'
      end
    end
495
  end
496
end