Files
puppet-swift/spec/defines/swift_storage_xfs_spec.rb
Takashi Kajinami 9efd303bcb xfs: Support mount by label
... in addition to uuid and device name, as a more static but more
flexible way to assign devices to mount points.

Change-Id: I92e3f5d09c071c48e8b51026a2cda2394cbe33cf
2024-02-27 00:19:35 +00:00

90 lines
2.4 KiB
Ruby

require 'spec_helper'
describe 'swift::storage::xfs' do
let :title do
'foo'
end
shared_examples 'swift::storage::xfs' do
describe 'when a device is specified' do
let :default_params do
{
:device => "/dev/#{title}",
:byte_size => '1024',
:mnt_base_dir => '/srv/node',
:loopback => false,
:device_type => 'path'
}
end
[{},
{
:device => '/dev/foo',
:byte_size => 1,
:mnt_base_dir => '/mnt/bar',
:loopback => true
}
].each do |param_set|
describe "#{param_set == {} ? "using default" : "specifying"} class parameters" do
let :param_hash do
default_params.merge(param_set)
end
let :params do
param_set
end
it { is_expected.to contain_exec("mkfs-foo").with(
:command => ['mkfs.xfs', '-f', '-i', "size=#{param_hash[:byte_size]}", param_hash[:device]],
:path => ['/sbin/', '/usr/sbin/'],
:unless => "xfs_admin -l #{param_hash[:device]}",
)}
it { is_expected.to contain_swift__storage__mount(title).with(
:device => param_hash[:device],
:mnt_base_dir => param_hash[:mnt_base_dir],
:loopback => param_hash[:loopback],
)}
end
end
context 'with mount type label' do
let :params do
{
:mount_type => :label
}
end
let :param_hash do
default_params.merge(params)
end
it { is_expected.to contain_exec("mkfs-foo").with(
:command => ['mkfs.xfs', '-f', '-i', "size=#{param_hash[:byte_size]}", '-L', title, param_hash[:device]],
:path => ['/sbin/', '/usr/sbin/'],
:unless => "xfs_admin -l #{param_hash[:device]}",
)}
it { is_expected.to contain_swift__storage__mount(title).with(
:device => "LABEL=#{title}",
:mnt_base_dir => param_hash[:mnt_base_dir],
:loopback => param_hash[:loopback],
)}
end
end
end
on_supported_os({
:supported_os => OSDefaults.get_supported_os
}).each do |os,facts|
context "on #{os}" do
let (:facts) do
facts.merge(OSDefaults.get_facts())
end
it_configures 'swift::storage::xfs'
end
end
end