aboutsummaryrefslogtreecommitdiff
path: root/spec/classes/samba__server__service_spec.rb
blob: 649812487a5b988aa20f6e88c405b4729919b535 (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
require 'spec_helper'

describe 'samba::server::service' do
  context 'on a Debian os family' do
    let(:facts) {{ :osfamily => 'Debian' }}

    it { should contain_service('samba').with_require('Class[Samba::Server::Config]') }

    context 'Debian' do
      let(:facts) {{ :osfamily => 'Debian', :operatingsystem => 'Debian' }}
      it { should contain_service('samba') }
    end

    context 'Ubuntu' do
      let(:facts) {{ :osfamily => 'Debian', :operatingsystem => 'Ubuntu' }}
      it { should contain_service('smbd') }
    end
  end

  context 'on a Redhat os family' do
    let(:facts) {{ :osfamily => 'Redhat' }}
    it { should contain_service('smb') }
  end

  context 'on a Archlinux os family' do
    let(:facts) {{ :osfamily => 'Archlinux' }}
    it { should contain_service('smbd') }
  end

  context 'on a Gentoo os family' do
    let(:facts) {{ :osfamily => 'Linux', :operatingsystem => 'Gentoo' }}
    it { should contain_service('samba') }
  end

  context 'on an unsupported OS' do
    let(:facts) {{ :osfamily => 'Solaris' }}
    it { should raise_error(/Solaris is not supported by this module./) }
  end
end