LDAP plugin for Infrataster
Add this line to your Gemfile:
gem 'infrataster-plugin-ldap'
And then add the following line to your spec_helper.rb:
require 'infrataster-plugin-ldap'
describe server(:master) do
describe ldap("dc=mydomain,dc=com") do
it "accepts bind requests" do
expect(bind.code).to eq 0
end
it "can create a top level object" do
result = add_result("dc=mydomain,dc=com",
{
:objectclass => [ "top", "dcObject", "organization"],
:o => "mydomain"
}
)
expect(result.code).to eq 0
end
end
end
You can specify LDAP by options passed to Infrataster::Server.define
:
Infrataster::Server.define(
# ...
ldap: { basedn: "dc=mydomain,dc=com", username: "cn=admin,dc=mydomain,dc=com", password: "mypassword" }
)
- Fork it ( https://github.com/[my-github-username]/infrataster-plugin-ldap/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request