From d89e630bc0cfb228db632c8b3f369f7dbd80bd02 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 7 Sep 2014 20:11:13 -0400 Subject: Fix test cases --- modules/ldap/_examples/searchSSL.go | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 modules/ldap/_examples/searchSSL.go (limited to 'modules/ldap/_examples/searchSSL.go') diff --git a/modules/ldap/_examples/searchSSL.go b/modules/ldap/_examples/searchSSL.go new file mode 100644 index 0000000000..aa9cbcc124 --- /dev/null +++ b/modules/ldap/_examples/searchSSL.go @@ -0,0 +1,45 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + "log" + + "github.com/gogits/gogs/modules/ldap" +) + +var ( + LdapServer string = "localhost" + LdapPort uint16 = 636 + BaseDN string = "dc=enterprise,dc=org" + Filter string = "(cn=kirkj)" + Attributes []string = []string{"mail"} +) + +func main() { + l, err := ldap.DialSSL("tcp", fmt.Sprintf("%s:%d", LdapServer, LdapPort), nil) + if err != nil { + log.Fatalf("ERROR: %s\n", err.String()) + } + defer l.Close() + // l.Debug = true + + search := ldap.NewSearchRequest( + BaseDN, + ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false, + Filter, + Attributes, + nil) + + sr, err := l.Search(search) + if err != nil { + log.Fatalf("ERROR: %s\n", err.String()) + return + } + + log.Printf("Search: %s -> num of entries = %d\n", search.Filter, len(sr.Entries)) + sr.PrettyPrint(0) +} -- cgit v1.2.3