File: swift_storage_loopback_spec.rb

package info (click to toggle)
puppet-module-swift 25.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,400 kB
  • sloc: ruby: 9,593; python: 38; sh: 10; makefile: 10
file content (31 lines) | stat: -rw-r--r-- 736 bytes parent folder | download | duplicates (4)
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
require 'spec_helper'

describe 'swift::storage::loopback' do
  # TODO add more unit tests

  let :title do
    'dans_disk'
  end

  shared_examples 'swift::storage::loopback' do
    it { is_expected.to contain_swift__storage__xfs('dans_disk').with(
      :device       => '/srv/loopback-device/dans_disk',
      :mnt_base_dir => '/srv/node',
      :byte_size    => '1024',
      :subscribe    => 'Exec[create_partition-dans_disk]',
      :loopback     => true
    )}
  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::loopback'
    end
  end
end