tests: Abstract out code to produce a Ubik client
authorSimon Wilkinson <sxw@your-file-system.com>
Fri, 20 Apr 2012 14:34:26 +0000 (15:34 +0100)
committerDerrick Brashear <shadow@dementix.org>
Sun, 22 Apr 2012 13:17:17 +0000 (06:17 -0700)
Abstract out the code which the volser test uses to produce a
ubik client so that it can be used to test other ubik services

Change-Id: I800fda9e53ad45c91f3de8eceea387cc011dda3c
Reviewed-on: http://gerrit.openafs.org/7257
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementix.org>

tests/common/Makefile.in
tests/common/common.h
tests/common/ubik.c [new file with mode: 0644]
tests/volser/Makefile.in
tests/volser/vos-t.c

index 29b33e3..7c6c9ab 100644 (file)
@@ -6,7 +6,7 @@ include @TOP_OBJDIR@/src/config/Makefile.pthread
 
 MODULE_CFLAGS=-I$(srcdir)/..
 
-all check test tests:  config.o servers.o
+all check test tests:  config.o servers.o ubik.o
 
 clean:
        rm -f *.o
index 6109b19..fcc4113 100644 (file)
@@ -33,3 +33,11 @@ extern int afstest_AddDESKeyFile(struct afsconf_dir *dir);
 
 extern int afstest_StartVLServer(char *dirname, pid_t *serverPid);
 extern int afstest_StopVLServer(pid_t serverPid);
+
+/* ubik.c */
+struct ubik_client;
+extern int afstest_GetUbikClient(struct afsconf_dir *dir, char *service,
+                                int serviceId,
+                                struct rx_securityClass *secClass,
+                                int secIndex,
+                                struct ubik_client **ubikClient);
diff --git a/tests/common/ubik.c b/tests/common/ubik.c
new file mode 100644 (file)
index 0000000..fcb1923
--- /dev/null
@@ -0,0 +1,62 @@
+/*
+ * Copyright (c) 2012 Your File System Inc. All rights reserved
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <afsconfig.h>
+#include <afs/param.h>
+
+#include <roken.h>
+
+#include <afs/cellconfig.h>
+#include <ubik.h>
+
+#include "common.h"
+
+int
+afstest_GetUbikClient(struct afsconf_dir *dir, char *service,
+                     int serviceId,
+                     struct rx_securityClass *secClass, int secIndex,
+                     struct ubik_client **ubikClient)
+{
+    int code, i;
+    struct afsconf_cell info;
+    struct rx_connection *serverconns[MAXSERVERS];
+
+    code = afsconf_GetCellInfo(dir, NULL, service, &info);
+    if (code)
+       return code;
+
+    for (i = 0; i < info.numServers; i++) {
+       serverconns[i] = rx_NewConnection(info.hostAddr[i].sin_addr.s_addr,
+                                         info.hostAddr[i].sin_port,
+                                         serviceId,
+                                         secClass, secIndex);
+    }
+
+    serverconns[i] = NULL;
+
+    *ubikClient = NULL;
+
+    return ubik_ClientInit(serverconns, ubikClient);
+
+}
index dc495f7..15f9def 100644 (file)
@@ -24,9 +24,9 @@ MODULE_LIBS =         ../tap/libtap.a \
                $(LIB_rfc3961) $(LIB_roken) -lafsutil\
                $(XLIBS)
 
-vos-t: vos-t.o ../common/config.o ../common/servers.o
+vos-t: vos-t.o ../common/config.o ../common/servers.o ../common/ubik.o
        $(AFS_LDRULE) vos-t.o ../common/config.o ../common/servers.o \
-               $(MODULE_LIBS)
+               ../common/ubik.o $(MODULE_LIBS)
 
 clean:
        rm -f *.o $(TESTS)
index e64e300..a247e0e 100644 (file)
@@ -81,14 +81,10 @@ main(int argc, char **argv)
 {
     char *dirname;
     struct afsconf_dir *dir;
-    struct afsconf_cell info;
-    int code;
-    int i;
+    int code, secIndex;
     pid_t serverPid;
     struct rx_securityClass *secClass;
-    struct rx_connection *serverconns[MAXSERVERS];
     struct ubik_client *ubikClient = NULL;
-    int secIndex;
 
     plan(6);
 
@@ -112,27 +108,20 @@ main(int argc, char **argv)
 
     /* Let it figure itself out ... */
     sleep(5);
-
     code = afsconf_ClientAuthSecure(dir, &secClass, &secIndex);
+    is_int(code, 0, "Successfully got security class");
     if (code) {
-       afs_com_err("vos-t", code, "while getting a fake token");
-       exit(1);
+       afs_com_err("authname-t", code, "while getting anonymous secClass");
+        exit(1);
     }
 
-    code = afsconf_GetCellInfo(dir, NULL, AFSCONF_VLDBSERVICE, &info);
+    code = afstest_GetUbikClient(dir, AFSCONF_VLDBSERVICE, USER_SERVICE_ID,
+                                secClass, secIndex, &ubikClient);
+    is_int(code, 0, "Successfully built ubik client structure");
     if (code) {
-       afs_com_err("vos-t", code, " while getting addresses from cellservdb");
+       afs_com_err("vos-t", code, "while building ubik client");
        exit(1);
     }
-    ok(info.numServers < MAXSERVERS, "Number of servers is within range");
-
-    for (i = 0; i < info.numServers; i++)
-       serverconns[i] = rx_NewConnection(info.hostAddr[i].sin_addr.s_addr,
-                                         info.hostAddr[i].sin_port,
-                                         USER_SERVICE_ID,
-                                         secClass, secIndex);
-
-    code = ubik_ClientInit(serverconns, &ubikClient);
 
     TestListAddrs(ubikClient, dirname);