aboutsummaryrefslogtreecommitdiff
path: root/spec/defines/samba__server__user_spec.rb
blob: c7ae00c910bceba52c9f0aa8dec37f736afa27cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'

describe 'samba::server::user', :type => :define do
  let(:title) { 'test_user' }
  let(:params) {{ :password => 'secret' }}

  it { is_expected.to contain_samba__server__user('test_user') }
  it { is_expected.to contain_exec('add smb account for test_user').with(
    :command => '/bin/echo -e \'secret\nsecret\n\' | /usr/bin/pdbedit --password-from-stdin -a \'test_user\'',
    :unless  => '/usr/bin/pdbedit \'test_user\'',
    :require => 'User[test_user]',
    :notify  => 'Class[Samba::Server::Service]'
  ) }
end