summaryrefslogtreecommitdiff
path: root/spec/migrations/clean_appearance_symlinks_spec.rb
blob: 9225dc0d89437e25a264c8e5d0599bd298658a26 (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
require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170613111224_clean_appearance_symlinks.rb')

describe CleanAppearanceSymlinks do
  let(:migration) { described_class.new }
  let(:test_dir) { File.join(Rails.root, "tmp", "tests", "clean_appearance_test") }
  let(:uploads_dir) { File.join(test_dir, "public", "uploads") }
  let(:new_uploads_dir) { File.join(uploads_dir, "system") }
  let(:original_path) { File.join(new_uploads_dir, 'appearance') }
  let(:symlink_path) { File.join(uploads_dir, 'appearance') }

  before do
    FileUtils.remove_dir(test_dir) if File.directory?(test_dir)
    FileUtils.mkdir_p(uploads_dir)
    allow(migration).to receive(:base_directory).and_return(test_dir)
    allow(migration).to receive(:say)
  end

  describe "#up" do
    before do
      FileUtils.mkdir_p(original_path)
      FileUtils.ln_s(original_path, symlink_path)
    end

    it 'removes the symlink' do
      migration.up

      expect(File.symlink?(symlink_path)).to be(false)
    end
  end

  describe '#down' do
    before do
      FileUtils.mkdir_p(File.join(original_path))
      FileUtils.touch(File.join(original_path, 'dummy.file'))
    end

    it 'creates a symlink' do
      expected_path = File.join(symlink_path, "dummy.file")
      migration.down

      expect(File.exist?(expected_path)).to be(true)
      expect(File.symlink?(symlink_path)).to be(true)
    end
  end
end