summaryrefslogtreecommitdiff
path: root/spec/models/license_template_spec.rb
blob: c633e1908d4ef928bd6fcd860de5868f3a0a786f (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
require 'spec_helper'

describe LicenseTemplate do
  describe '#content' do
    it 'calls a proc exactly once if provided' do
      lazy = build_template(-> { 'bar' })
      content = lazy.content

      expect(content).to eq('bar')
      expect(content.object_id).to eq(lazy.content.object_id)

      content.replace('foo')
      expect(lazy.content).to eq('foo')
    end

    it 'returns a string if provided' do
      lazy = build_template('bar')

      expect(lazy.content).to eq('bar')
    end
  end

  describe '#resolve!' do
    let(:content) do
      <<~TEXT
      Pretend License

      [project]

      Copyright (c) [year] [fullname]
      TEXT
    end

    let(:expected) do
      <<~TEXT
      Pretend License

      Foo Project

      Copyright (c) 1985 Nick Thomas
      TEXT
    end

    let(:template) { build_template(content) }

    it 'updates placeholders in a copy of the template content' do
      expect(template.content.object_id).to eq(content.object_id)

      template.resolve!(project_name: "Foo Project", fullname: "Nick Thomas", year: "1985")

      expect(template.content).to eq(expected)
      expect(template.content.object_id).not_to eq(content.object_id)
    end
  end

  def build_template(content)
    described_class.new(id: 'foo', name: 'foo', category: :Other, content: content)
  end
end