summaryrefslogtreecommitdiff
path: root/spec/unit/resource/dsc_script_spec.rb
blob: 71560799370024769230813f87f29b51fd45735e (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#
# Author:: Adam Edwards (<adamed@getchef.com>)
# Copyright:: Copyright (c) 2014 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'spec_helper'

describe Chef::Resource::DscScript do
  let(:dsc_test_run_context) {
    node = Chef::Node.new
    empty_events = Chef::EventDispatch::Dispatcher.new
    Chef::RunContext.new(node, {}, empty_events)
  }
  let(:dsc_test_resource_name) { 'DSCTest' }
  let(:dsc_test_resource) {
    Chef::Resource::DscScript.new(dsc_test_resource_name, dsc_test_run_context) 
  }
  let(:configuration_code) {'echo "This is supposed to create a configuration document."'}
  let(:configuration_path) {'c:/myconfigs/formatc.ps1'}
  let(:configuration_name) { 'formatme' }
  let(:configuration_data) { '@{AllNodes = @( @{ NodeName = "localhost"; PSDscAllowPlainTextPassword = $true })}' }
  let(:configuration_data_script) { 'c:/myconfigs/data/safedata.psd1' }

  it "has a default action of `:run`" do
    expect(dsc_test_resource.action).to eq(:run)
  end

  it "has an allowed_actions attribute with only the `:run` and `:nothing` attributes" do
    expect(dsc_test_resource.allowed_actions.to_set).to eq([:run,:nothing].to_set)
  end

  it "allows the code attribute to be set" do
    dsc_test_resource.code(configuration_code)
    expect(dsc_test_resource.code).to eq(configuration_code)
  end

  it "allows the command attribute to be set" do
    dsc_test_resource.command(configuration_path)
    expect(dsc_test_resource.command).to eq(configuration_path)
  end

  it "allows the configuration_name attribute to be set" do
    dsc_test_resource.configuration_name(configuration_name)
    expect(dsc_test_resource.configuration_name).to eq(configuration_name)
  end

  it "allows the configuration_data attribute to be set" do
    dsc_test_resource.configuration_data(configuration_data)
    expect(dsc_test_resource.configuration_data).to eq(configuration_data)
  end

  it "allows the configuration_data_script attribute to be set" do
    dsc_test_resource.configuration_data_script(configuration_data_script)
    expect(dsc_test_resource.configuration_data_script).to eq(configuration_data_script)
  end

  it "raises an ArgumentError exception if an attempt is made to set the code attribute when the command attribute is already set" do
    dsc_test_resource.command(configuration_path)
    expect { dsc_test_resource.code(configuration_code) }.to raise_error(ArgumentError)
  end

  it "raises an ArgumentError exception if an attempt is made to set the command attribute when the code attribute is already set" do
    dsc_test_resource.code(configuration_code)
    expect { dsc_test_resource.command(configuration_path) }.to raise_error(ArgumentError)
  end

  it "raises an ArgumentError exception if an attempt is made to set the configuration_name attribute when the code attribute is already set" do
    dsc_test_resource.code(configuration_code)
    expect { dsc_test_resource.configuration_name(configuration_name) }.to raise_error(ArgumentError)
  end

  it "raises an ArgumentError exception if an attempt is made to set the configuration_data attribute when the configuration_data_script attribute is already set" do
    dsc_test_resource.configuration_data_script(configuration_data_script)
    expect { dsc_test_resource.configuration_data(configuration_data) }.to raise_error(ArgumentError)
  end

  it "raises an ArgumentError exception if an attempt is made to set the configuration_data_script attribute when the configuration_data attribute is already set" do
    dsc_test_resource.configuration_data(configuration_data)
    expect { dsc_test_resource.configuration_data_script(configuration_data_script) }.to raise_error(ArgumentError)
  end
end