summaryrefslogtreecommitdiff
path: root/spec/functional/resource/locale_spec.rb
blob: 0103df305b49d4497067f2055ac347c2144040c5 (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
95
96
97
#
# Author:: Nimesh Patni (<nimesh.patni@msystechnologies.com>)
# Copyright:: Copyright 2008-2018, 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::Locale, :requires_root do
  let(:node) do
    n = Chef::Node.new
    n.consume_external_attrs(OHAI_SYSTEM.data, {})
    n
  end
  let(:events) { Chef::EventDispatch::Dispatcher.new }
  let(:run_context) { Chef::RunContext.new(node, {}, events) }
  let(:resource) { Chef::Resource::Locale.new("fakey_fakerton", run_context) }

  context "on debian/ubuntu", :debian_family_only do
    def sets_system_locale(*locales)
      system_locales = File.readlines("/etc/locale.conf")
      expect(system_locales.map(&:strip)).to eq(locales)
    end

    def unsets_system_locale(*locales)
      system_locales = File.readlines("/etc/locale.conf")
      expect(system_locales.map(&:strip)).not_to eq(locales)
    end

    describe "action: update" do
      context "Sets system variable" do
        it "when LC var is given" do
          resource.lc_env({ "LC_MESSAGES" => "en_US" })
          resource.run_action(:update)
          sets_system_locale("LC_MESSAGES=en_US")
        end
        it "when lang is given" do
          resource.lang("en_US")
          resource.run_action(:update)
          sets_system_locale("LANG=en_US")
        end
        it "when both lang & LC vars are given" do
          resource.lang("en_US")
          resource.lc_env({ "LC_TIME" => "en_IN" })
          resource.run_action(:update)
          sets_system_locale("LANG=en_US", "LC_TIME=en_IN")
        end
      end

      context "Unsets system variable" do
        it "when LC var is not given" do
          resource.lc_env
          resource.run_action(:update)
          unsets_system_locale("LC_MESSAGES=en_US")
        end
        it "when lang is not given" do
          resource.lang
          resource.run_action(:update)
          unsets_system_locale("LANG=en_US")
        end
        it "when both lang & LC vars are not given" do
          resource.lang
          resource.lc_env
          resource.run_action(:update)
          unsets_system_locale("LANG=en_US", "LC_TIME=en_IN")
          sets_system_locale("")
        end
      end
    end
  end

  context "on rhel", :rhel do
    it "raises an exception due lacking the locale-gen tool" do
      resource.lang("en_US")
      expect { resource.run_action(:update) }.to raise_error(Chef::Exceptions::ProviderNotFound)
    end
  end

  context "on macos", :macos_only do
    it "raises an exception due to being an unsupported platform" do
      resource.lang("en_US")
      expect { resource.run_action(:update) }.to raise_error(Chef::Exceptions::ProviderNotFound)
    end
  end
end