-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The database `readonly` property expects a boolean, but the olc provider doesn't take care to parse the existing value into a boolean, thus leading to issues. Simply applies the same logic applied to `olcMirrorMode` for `olcReadOnly`.
- Loading branch information
Showing
3 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'spec_helper' | ||
|
||
describe Puppet::Type.type(:openldap_database).provider(:olc) do | ||
let(:params) do | ||
{ | ||
suffix: 'dc=example,dc=com', | ||
backend: 'mdb', | ||
readonly: false, | ||
# provider: described_class.name, | ||
} | ||
end | ||
|
||
let(:resource) do | ||
Puppet::Type.type(:openldap_database).new(params) | ||
end | ||
let(:provider) do | ||
resource.provider | ||
end | ||
|
||
before do | ||
allow(described_class).to receive(:slapcat).with('(|(olcDatabase=monitor)(olcDatabase={0}config)(&(objectClass=olcDatabaseConfig)(|(objectClass=olcBdbConfig)(objectClass=olcHdbConfig)(objectClass=olcMdbConfig)(objectClass=olcMonitorConfig)(objectClass=olcRelayConfig)(objectClass=olcLDAPConfig))))').and_return(<<~SLAPCAT) | ||
dn: olcDatabase={1}mdb,cn=config | ||
olcDatabase: {1}mdb | ||
olcReadOnly: FALSE | ||
SLAPCAT | ||
allow(provider).to receive(:slapcat) | ||
allow(provider).to receive(:ldapmodify) | ||
allow(provider).to receive(:ldapadd) | ||
# allow(described_class).to receive(:slapcat) | ||
# allow(described_class).to receive(:ldapmodify) | ||
# allow(described_class).to receive(:ldapadd) | ||
end | ||
|
||
describe 'when creating' do | ||
context 'with readonly set to false' do | ||
it 'parses olcReadOnly as false' do | ||
provider.create | ||
expect(described_class.instances.first.readonly).to eq :false | ||
# expect(described_class.instances.first.readonly).to eq(:false) | ||
end | ||
end | ||
|
||
context 'with readonly set to true' do | ||
let(:params) do | ||
super().merge({ readonly: true }) | ||
end | ||
|
||
it 'parses olcReadonly' do | ||
expect(described_class.instances.first.readonly).to eq(:true) | ||
end | ||
end | ||
end | ||
end |