summaryrefslogtreecommitdiffstats
path: root/modules/ldap/examples/modify.go
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-09-07 20:11:13 -0400
committerUnknwon <joe2010xtmf@163.com>2014-09-07 20:11:13 -0400
commitd89e630bc0cfb228db632c8b3f369f7dbd80bd02 (patch)
treeb590d51b8a8b76342c3a4190eaa59d9447270f72 /modules/ldap/examples/modify.go
parent59a7c7c5a530cead1905c0c686869ea0f6a7949c (diff)
downloadgitea-d89e630bc0cfb228db632c8b3f369f7dbd80bd02.tar.gz
gitea-d89e630bc0cfb228db632c8b3f369f7dbd80bd02.zip
Fix test cases
Diffstat (limited to 'modules/ldap/examples/modify.go')
-rw-r--r--modules/ldap/examples/modify.go89
1 files changed, 0 insertions, 89 deletions
diff --git a/modules/ldap/examples/modify.go b/modules/ldap/examples/modify.go
deleted file mode 100644
index 177fe8da7a..0000000000
--- a/modules/ldap/examples/modify.go
+++ /dev/null
@@ -1,89 +0,0 @@
-// 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 (
- "errors"
- "fmt"
- "log"
-
- "github.com/juju2013/goldap"
-)
-
-var (
- LdapServer string = "localhost"
- LdapPort uint16 = 389
- BaseDN string = "dc=enterprise,dc=org"
- BindDN string = "cn=admin,dc=enterprise,dc=org"
- BindPW string = "enterprise"
- Filter string = "(cn=kirkj)"
-)
-
-func search(l *ldap.Conn, filter string, attributes []string) (*ldap.Entry, *ldap.Error) {
- 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)
- return nil, err
- }
-
- log.Printf("Search: %s -> num of entries = %d\n", search.Filter, len(sr.Entries))
- if len(sr.Entries) == 0 {
- return nil, ldap.NewError(ldap.ErrorDebugging, errors.New(fmt.Sprintf("no entries found for: %s", filter)))
- }
- return sr.Entries[0], nil
-}
-
-func main() {
- l, err := ldap.Dial("tcp", fmt.Sprintf("%s:%d", LdapServer, LdapPort))
- if err != nil {
- log.Fatalf("ERROR: %s\n", err.Error())
- }
- defer l.Close()
- // l.Debug = true
-
- l.Bind(BindDN, BindPW)
-
- log.Printf("The Search for Kirk ... %s\n", Filter)
- entry, err := search(l, Filter, []string{})
- if err != nil {
- log.Fatal("could not get entry")
- }
- entry.PrettyPrint(0)
-
- log.Printf("modify the mail address and add a description ... \n")
- modify := ldap.NewModifyRequest(entry.DN)
- modify.Add("description", []string{"Captain of the USS Enterprise"})
- modify.Replace("mail", []string{"captain@enterprise.org"})
- if err := l.Modify(modify); err != nil {
- log.Fatalf("ERROR: %s\n", err.Error())
- }
-
- entry, err = search(l, Filter, []string{})
- if err != nil {
- log.Fatal("could not get entry")
- }
- entry.PrettyPrint(0)
-
- log.Printf("reset the entry ... \n")
- modify = ldap.NewModifyRequest(entry.DN)
- modify.Delete("description", []string{})
- modify.Replace("mail", []string{"james.kirk@enterprise.org"})
- if err := l.Modify(modify); err != nil {
- log.Fatalf("ERROR: %s\n", err.Error())
- }
-
- entry, err = search(l, Filter, []string{})
- if err != nil {
- log.Fatal("could not get entry")
- }
- entry.PrettyPrint(0)
-}