Sha256: 440397b4e14023293df1537809626b13cad7673939bf78571f4fddd2cb24c6c2

Contents?: true

Size: 1.58 KB

Versions: 29

Compression:

Stored size: 1.58 KB

Contents

#! /usr/bin/env ruby
require 'spec_helper'

require 'puppet/util/lockfile'

describe Puppet::Util::Lockfile do
  require 'puppet_spec/files'
  include PuppetSpec::Files

  before(:each) do
    @lockfile = tmpfile("lock")
    @lock = Puppet::Util::Lockfile.new(@lockfile)
  end

  describe "#lock" do
    it "should return false if already locked" do
      @lock.stubs(:locked?).returns(true)
      @lock.lock.should be_false
    end

    it "should return true if it successfully locked" do
      @lock.lock.should be_true
    end

    it "should create a lock file" do
      @lock.lock

      File.should be_exists(@lockfile)
    end

    it "should create a lock file containing a string" do
      data = "foofoo barbar"
      @lock.lock(data)

      File.read(@lockfile).should == data
    end
  end

  describe "#unlock" do
    it "should return true when unlocking" do
      @lock.lock
      @lock.unlock.should be_true
    end

    it "should return false when not locked" do
      @lock.unlock.should be_false
    end

    it "should clear the lock file" do
      File.open(@lockfile, 'w') { |fd| fd.print("locked") }
      @lock.unlock
      File.should_not be_exists(@lockfile)
    end
  end

  it "should be locked when locked" do
    @lock.lock
    @lock.should be_locked
  end

  it "should not be locked when not locked" do
    @lock.should_not be_locked
  end

  it "should not be locked when unlocked" do
    @lock.lock
    @lock.unlock
    @lock.should_not be_locked
  end

  it "should return the lock data" do
    data = "foofoo barbar"
    @lock.lock(data)
    @lock.lock_data.should == data
  end
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
puppet-3.3.2 spec/unit/util/lockfile_spec.rb
puppet-3.3.1 spec/unit/util/lockfile_spec.rb
puppet-3.3.1.rc3 spec/unit/util/lockfile_spec.rb
puppet-3.3.1.rc2 spec/unit/util/lockfile_spec.rb
puppet-3.3.1.rc1 spec/unit/util/lockfile_spec.rb
puppet-3.3.0 spec/unit/util/lockfile_spec.rb
puppet-3.3.0.rc3 spec/unit/util/lockfile_spec.rb
puppet-3.3.0.rc2 spec/unit/util/lockfile_spec.rb
puppet-3.2.4 spec/unit/util/lockfile_spec.rb
puppet-3.2.3 spec/unit/util/lockfile_spec.rb
puppet-3.2.3.rc1 spec/unit/util/lockfile_spec.rb
puppet-3.2.2 spec/unit/util/lockfile_spec.rb
puppet-3.2.1 spec/unit/util/lockfile_spec.rb
puppet-3.2.1.rc1 spec/unit/util/lockfile_spec.rb
puppet-3.2.0.rc2 spec/unit/util/lockfile_spec.rb
librarian-puppet-0.9.9 vendor/gems/ruby/1.9.1/gems/puppet-3.1.0/spec/unit/util/lockfile_spec.rb
puppet-3.2.0.rc1 spec/unit/util/lockfile_spec.rb
puppet-3.1.1 spec/unit/util/lockfile_spec.rb
librarian-puppet-0.9.8 vendor/gems/ruby/1.9.1/gems/puppet-3.1.0/spec/unit/util/lockfile_spec.rb
puppet-3.1.0 spec/unit/util/lockfile_spec.rb