Sha256: 5ed610023d7190eef50b8c44618c8a73c0c8b8b80393a0609085dafbd7aa8aab

Contents?: true

Size: 1.51 KB

Versions: 2

Compression:

Stored size: 1.51 KB

Contents

# encoding: utf-8

describe Nanoc::TempFilenameFactory do

  subject do
    Nanoc::TempFilenameFactory.instance
  end

  let(:prefix) { 'foo' }

  before do
    subject.cleanup(prefix)
  end

  describe '#create' do

    it 'should create unique paths' do
      path_a = subject.create(prefix)
      path_b = subject.create(prefix)
      path_a.wont_equal(path_b)
    end

    it 'should return absolute paths' do
      path = subject.create(prefix)
      path.must_match(/\A\//)
    end

    it 'should create the containing directory' do
      Dir[subject.root_dir + '/**/*'].must_equal([])
      path = subject.create(prefix)
      File.directory?(File.dirname(path)).must_equal(true)
    end

    it 'should reuse the same path after cleanup' do
      path_a = subject.create(prefix)
      subject.cleanup(prefix)
      path_b = subject.create(prefix)
      path_a.must_equal(path_b)
    end

  end

  describe '#cleanup' do

    it 'should remove generated files' do
      path_a = subject.create(prefix)
      File.file?(path_a).wont_equal(true) # not yet used

      File.open(path_a, 'w') { |io| io << 'hi!' }
      File.file?(path_a).must_equal(true)

      subject.cleanup(prefix)
      File.file?(path_a).wont_equal(true)
    end

  end

  describe 'other instance' do

    let(:other_instance) do
      Nanoc::TempFilenameFactory.new
    end

    it 'should create unique paths across instances' do
      path_a = subject.create(prefix)
      path_b = other_instance.create(prefix)
      path_a.wont_equal(path_b)
    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
nanoc-3.6.11 test/base/temp_filename_factory_spec.rb
nanoc-3.6.10 test/base/temp_filename_factory_spec.rb