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

webpack_helper_spec.rb « helpers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23585c4723998a6f4403ebaf42a2aa1276d32de7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe WebpackHelper do
  let(:source) { 'foo.js' }
  let(:asset_path) { "/assets/webpack/#{source}" }

  describe '#prefetch_link_tag' do
    it 'returns prefetch link tag' do
      expect(helper.prefetch_link_tag(source)).to eq("<link rel=\"prefetch\" href=\"/#{source}\">")
    end
  end

  describe '#webpack_preload_asset_tag' do
    before do
      allow(Gitlab::Webpack::Manifest).to receive(:asset_paths).and_return([asset_path])
      allow(helper).to receive(:content_security_policy_nonce).and_return('noncevalue')
    end

    it 'preloads the resource by default' do
      expect(helper).to receive(:preload_link_tag).with(asset_path, {}).and_call_original

      output = helper.webpack_preload_asset_tag(source)

      expect(output).to eq("<link rel=\"preload\" href=\"#{asset_path}\" as=\"script\" type=\"text/javascript\" nonce=\"noncevalue\">")
    end

    it 'prefetches the resource if explicitly asked' do
      expect(helper).to receive(:prefetch_link_tag).with(asset_path).and_call_original

      output = helper.webpack_preload_asset_tag(source, prefetch: true)

      expect(output).to eq("<link rel=\"prefetch\" href=\"#{asset_path}\">")
    end
  end

  context 'when vite enabled' do
    let(:bundle) { 'bundle.js' }

    before do
      stub_rails_env('development')
      stub_feature_flags(vite: true)

      allow(helper).to receive(:vite_javascript_tag).and_return('vite')
      allow(helper).to receive(:vite_running).and_return(true)
    end

    describe '#webpack_bundle_tag' do
      it 'return vite javascript tag' do
        expect(helper.webpack_bundle_tag(bundle)).to eq('vite')
      end
    end
  end
end