Sha256: 15b18b1116656ab858546f549029212efef87ce61a4ce06622ae82f33f1a4f30

Contents?: true

Size: 1.18 KB

Versions: 278

Compression:

Stored size: 1.18 KB

Contents

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

require 'puppet/util/json_lockfile'

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

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

  describe "#lock" do
    it "should create a lock file containing a json hash" do
      data = { "foo" => "foofoo", "bar" => "barbar" }
      @lock.lock(data)

      expect(PSON.parse(File.read(@lockfile))).to eq(data)
    end
  end

  describe "reading lock data" do
    it "returns deserialized JSON from the lockfile" do
      data = { "foo" => "foofoo", "bar" => "barbar" }
      @lock.lock(data)
      expect(@lock.lock_data).to eq data
    end

    it "returns nil if the file read returned nil" do
      @lock.lock
      File.stubs(:read).returns nil
      expect(@lock.lock_data).to be_nil
    end

    it "returns nil if the file was empty" do
      @lock.lock
      File.stubs(:read).returns ''
      expect(@lock.lock_data).to be_nil
    end

    it "returns nil if the file was not in PSON" do
      @lock.lock
      File.stubs(:read).returns ']['
      expect(@lock.lock_data).to be_nil
    end

  end
end

Version data entries

278 entries across 278 versions & 1 rubygems

Version Path
puppet-5.5.6 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.6-x86-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.6-x64-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.6-universal-darwin spec/unit/util/json_lockfile_spec.rb
puppet-5.5.3 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.3-x86-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.3-x64-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.3-universal-darwin spec/unit/util/json_lockfile_spec.rb
puppet-5.5.2 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.2-x86-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.2-x64-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-5.5.2-universal-darwin spec/unit/util/json_lockfile_spec.rb
puppet-5.3.7 spec/unit/util/json_lockfile_spec.rb
puppet-5.3.7-x86-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-5.3.7-x64-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-5.3.7-universal-darwin spec/unit/util/json_lockfile_spec.rb
puppet-4.10.12 spec/unit/util/json_lockfile_spec.rb
puppet-4.10.12-x86-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-4.10.12-x64-mingw32 spec/unit/util/json_lockfile_spec.rb
puppet-4.10.12-universal-darwin spec/unit/util/json_lockfile_spec.rb