/* ldb database library Copyright (C) Andrew Tridgell 2004 ** NOTE! The following LGPL license applies to the ldb ** library. This does NOT imply that all of Samba is released ** under the LGPL This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* * Name: ldb * * Component: ldbtest * * Description: utility to test ldb * * Author: Andrew Tridgell */ #include "includes.h" static struct timeval tp1,tp2; static void start_timer(void) { gettimeofday(&tp1,NULL); } static double end_timer(void) { gettimeofday(&tp2,NULL); return((tp2.tv_sec - tp1.tv_sec) + (tp2.tv_usec - tp1.tv_usec)*1.0e-6); } static void add_records(struct ldb_context *ldb, const char *basedn, int count) { struct ldb_message msg; int i; for (i=0;i= nrecords && ret > 0) { printf("Found %s !? - %d\n", expr, ret); exit(1); } if (ret > 0) { ldb_search_free(ldb, res); } printf("testing uid %d/%d - %d \r", i, uid, ret); fflush(stdout); free(expr); } printf("\n"); } static void start_test(struct ldb_context *ldb, int nrecords, int nsearches) { const char *base = "ou=Ldb Test,ou=People,o=University of Michigan,c=US"; printf("Adding %d records\n", nrecords); add_records(ldb, base, nrecords); printf("Starting search on uid\n"); start_timer(); search_uid(ldb, nrecords, nsearches); printf("uid search took %.2f seconds\n", end_timer()); printf("Modifying records\n"); modify_records(ldb, base, nrecords); printf("Deleting records\n"); delete_records(ldb, base, nrecords); } static void usage(void) { printf("Usage: ldbtest \n"); printf("Options:\n"); printf(" -H ldb_url choose the database (or $LDB_URL)\n"); printf(" -r nrecords database size to use\n"); printf(" -s nsearches number of searches to do\n"); printf("\n"); printf("tests ldb API\n\n"); exit(1); } int main(int argc, char * const argv[]) { struct ldb_context *ldb; const char *ldb_url; int opt; int nrecords = 5000; int nsearches = 2000; ldb_url = getenv("LDB_URL"); while ((opt = getopt(argc, argv, "hH:r:s:")) != EOF) { switch (opt) { case 'H': ldb_url = optarg; break; case 'r': nrecords = atoi(optarg); break; case 's': nsearches = atoi(optarg); break; case 'h': default: usage(); break; } } if (!ldb_url) { fprintf(stderr, "You must specify a ldb URL\n\n"); usage(); } argc -= optind; argv += optind; ldb = ldb_connect(ldb_url, 0, NULL); if (!ldb) { perror("ldb_connect"); exit(1); } ldb_set_debug_stderr(ldb); srandom(1); start_test(ldb, nrecords, nsearches); ldb_close(ldb); return 0; }