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

file_config_spec.rb « config « static_site_editor « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d444d4f1df7af1956d686c72af93ee604f3229d9 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::StaticSiteEditor::Config::FileConfig do
  let(:config) do
    described_class.new(yml)
  end

  context 'when config is valid' do
    context 'when config has valid values' do
      let(:yml) do
        <<-EOS
        static_site_generator: middleman
        EOS
      end

      describe '#to_hash_with_defaults' do
        it 'returns hash created from string' do
          expect(config.to_hash_with_defaults.fetch(:static_site_generator)).to eq 'middleman'
        end
      end

      describe '#valid?' do
        it 'is valid' do
          expect(config).to be_valid
        end

        it 'has no errors' do
          expect(config.errors).to be_empty
        end
      end
    end
  end

  context 'when a config entry has an empty value' do
    let(:yml) { 'static_site_generator: ' }

    describe '#to_hash' do
      it 'returns default value' do
        expect(config.to_hash_with_defaults.fetch(:static_site_generator)).to eq 'middleman'
      end
    end

    describe '#valid?' do
      it 'is valid' do
        expect(config).to be_valid
      end

      it 'has no errors' do
        expect(config.errors).to be_empty
      end
    end
  end

  context 'when config is invalid' do
    context 'when yml is incorrect' do
      let(:yml) { '// invalid' }

      describe '.new' do
        it 'raises error' do
          expect { config }.to raise_error(described_class::ConfigError, /Invalid configuration format/)
        end
      end
    end

    context 'when config value exists but is not a valid value' do
      let(:yml) { 'static_site_generator: "unsupported-generator"' }

      describe '#valid?' do
        it 'is not valid' do
          expect(config).not_to be_valid
        end

        it 'has errors' do
          expect(config.errors).not_to be_empty
        end
      end

      describe '#errors' do
        it 'returns an array of strings' do
          expect(config.errors).to all(be_an_instance_of(String))
        end
      end
    end
  end
end