Commit 899f0661 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Moves the LDAP test server to a fixture.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3490 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 7ae53845
--- {}
---
auth_sources_001:
id: 1
type: AuthSourceLdap
name: 'LDAP test server'
host: '127.0.0.1'
port: 389
base_dn: 'OU=Person,DC=redmine,DC=org'
attr_login: uid
attr_firstname: givenName
attr_lastname: sn
attr_mail: mail
onthefly_register: true
......@@ -18,7 +18,8 @@
require File.dirname(__FILE__) + '/../test_helper'
class AuthSourceLdapTest < ActiveSupport::TestCase
fixtures :auth_sources
def setup
end
......@@ -37,16 +38,7 @@ class AuthSourceLdapTest < ActiveSupport::TestCase
if ldap_configured?
context '#authenticate' do
setup do
@auth = AuthSourceLdap.generate!(:name => 'on the fly',
:host => '127.0.0.1',
:port => 389,
:base_dn => 'OU=Person,DC=redmine,DC=org',
:attr_login => 'uid',
:attr_firstname => 'givenName',
:attr_lastname => 'sn',
:attr_mail => 'mail',
:onthefly_register => true)
@auth = AuthSourceLdap.find(1)
end
context 'with a valid LDAP user' do
......
......@@ -18,7 +18,7 @@
require File.dirname(__FILE__) + '/../test_helper'
class UserTest < ActiveSupport::TestCase
fixtures :users, :members, :projects, :roles, :member_roles
fixtures :users, :members, :projects, :roles, :member_roles, :auth_sources
def setup
@admin = User.find(1)
......@@ -124,16 +124,7 @@ class UserTest < ActiveSupport::TestCase
context "#try_to_login using LDAP" do
context "on the fly registration" do
setup do
@auth_source = AuthSourceLdap.generate!(:name => 'localhost',
:host => '127.0.0.1',
:port => 389,
:base_dn => 'OU=Person,DC=redmine,DC=org',
:attr_login => 'uid',
:attr_firstname => 'givenName',
:attr_lastname => 'sn',
:attr_mail => 'mail',
:onthefly_register => true)
@auth_source = AuthSourceLdap.find(1)
end
context "with a successful authentication" do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment