1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/*
Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
and Contributors.
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <assert.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "cpoco.h"
/* Possible names of the test shared library */
static const char* SHAREDLIBS[] = {
"./libcpt.so",
"./cygcpt.dll",
"./cpt.dll",
"./.libs/libcpt.so",
"./.libs/cygcpt.dll",
"./.libs/cpt.dll",
"./.libs/cygcpt-0.dll",
NULL};
typedef int (*GimmeFiveFunc)();
#define CHECK(err) check(CE_ERR,0,__LINE__,__FILE__,(err))
#define CHECKNO(err) check(CE_ERR,1,__LINE__,__FILE__,(err))
#define CHECKBOOL(b) check(CE_BOOL,0,__LINE__,__FILE__,(b))
#define CHECKNOBOOL(b) check(CE_BOOL,1,__LINE__,__FILE__,(b))
#define CHECKSTR(s1,s2) check(CE_STR,0,__LINE__,__FILE__,(s1),(s2))
#define CHECKSYM(sym) check(CE_SYM,0,__LINE__,__FILE__,(sym))
#define CHECKNOSYM(sym) check(CE_SYM,1,__LINE__,__FILE__,(sym))
enum CE {
CE_ERR,
CE_BOOL,
CE_STR,
CE_SYM,
};
static void
check(enum CE ce, int invert, int lineno, const char* file, ...)
{
va_list args;
va_start (args,file);
int err;
char* s1;
char* s2;
void* sym;
switch (ce) {
case CE_ERR:
err = va_arg(args,int);
if((!invert && err != CP_OK) || (invert && err == CP_OK)) {
fprintf(stderr,"(%s:%d): %s\n",file,lineno,cperrstr(err));
goto fail;
}
break;
case CE_BOOL:
err = va_arg(args,int);
if((err && invert) || (!err && !invert)) {
fprintf(stderr,"(%s:%d): boolean fail\n",file,lineno);
goto fail;
}
break;
case CE_STR:
s1 = va_arg(args,char*);
s2 = va_arg (args,char*);
if(s1 == NULL) s1 = "null";
if(s2 == NULL) s2 = "null";
if((!invert && strcmp(s1,s2) != 0) || (invert && strcmp(s1,s2) == 0)) {
fprintf(stderr,"(%s:%d): mismatch: %s::%s \n",file,lineno,s1,s2);
goto fail;
}
break;
case CE_SYM:
sym = va_arg(args,void*);
if((!invert && sym == NULL) || (invert && sym != NULL)) {
fprintf(stderr,"(%s:%d): get symbol failure\n",file,lineno);
goto fail;
}
break;
default: abort();
}
va_end (args); // clean up the system stack
return;
fail:
exit(1);
}
static void
test1(const char* path)
{
SharedLib* sl = NULL;
void* p1;
CHECK(cpsharedlibnew(&sl));
CHECK(cpload(sl,path,0));
CHECKBOOL(cpisloaded(sl));
CHECKNO(cpload(sl,path,0));
CHECKSTR(cpgetpath(sl),path);
CHECKBOOL(cpisloaded(sl));
CHECKSYM(cpgetsymbol(sl,"gimmeFive"));
CHECKNOSYM(cpgetsymbol(sl,"fooBar123"));
p1 = cpgetsymbol(sl,"pocoBuildManifest");
CHECK((p1 != NULL));
p1 = cpgetsymbol(sl,"fooBar123");
cpunload(sl);
CHECKNOBOOL(cpisloaded(sl));
}
static void
test2(const char* path)
{
SharedLib* sl = NULL;
GimmeFiveFunc gimmeFive;
CHECK(cpsharedlibnew(&sl));
CHECK(cpload(sl,path,0));
CHECKSTR(cpgetpath(sl),path);
CHECKBOOL(cpisloaded(sl));
gimmeFive = (GimmeFiveFunc) cpgetsymbol(sl,"gimmeFive");
CHECKSYM(gimmeFive);
CHECKBOOL((gimmeFive() == 5));
CHECK(cpunload(sl));
CHECKNOBOOL(cpisloaded(sl));
}
static void
test3(const char* path)
{
SharedLib* sl = NULL;
CHECK(cpsharedlibnew(&sl));
CHECK(cpload(sl,path,0));
CHECKSTR(cpgetpath(sl),path);
CHECKBOOL(cpisloaded(sl));
CHECKNO(cpload(sl,"NoSuchLibrary",0));
CHECKBOOL(cpisloaded(sl));
CHECKNO(cpload(sl,path,0));
CHECKBOOL(cpisloaded(sl));
CHECKNO(cpload(sl,path,0));
CHECKBOOL(cpisloaded(sl));
CHECK(cpunload(sl));
CHECKNOBOOL(cpisloaded(sl));
}
static char*
abspath(const char* prefixpath, const char* relpath)
{
char* full = NULL;
if(prefixpath == NULL) {
#ifdef _MSC_VER
full = _fullpath(NULL,relpath,8192);
#else
full = realpath(relpath, NULL);
#endif
} else { /* concatenate */
full = malloc(strlen(prefixpath)+strlen(relpath)+2);
strcpy(full,prefixpath);
#ifdef _MSC_VER
strcat(full,"\\");
#else
strcat(full,"/");
#endif
strcat(full,relpath);
}
fprintf(stderr,"abspath=%s\n",full);
return full;
}
static const char*
findlib(const char* prefixpath)
{
char* path;
const char** p;
for(p=SHAREDLIBS;*p;p++) {
FILE* f;
path = abspath(prefixpath,*p);
if(path == NULL) continue;
f = fopen(path,"r");
fprintf(stderr,"findlib: trying %s\n",path);
if(f != NULL) {
fclose(f);
return *p;
}
}
fprintf(stderr,"findlib: failed\n");
return NULL;
}
int
main(int argc, char** argv)
{
const char* prefixpath = NULL;
const char* relpath = NULL;
const char* path = NULL;
switch (argc) {
default:
case 3:
relpath = argv[2];
/* fall thru */
case 2:
prefixpath = argv[1];
break;
case 1:
case 0:
break;
}
if(prefixpath == NULL) {
fprintf(stderr,"No prefix path specified\n");
return 1;
}
if(relpath == NULL)
relpath = findlib(prefixpath);
if(relpath == NULL) {
fprintf(stderr,"No dynamic test library specified\n");
return 1;
}
path = abspath(prefixpath,relpath);
if(path == NULL) {
fprintf(stderr,"Cannot locate dynamic test library: %s\n",relpath);
exit(1);
}
printf("Using shared test library: %s\n",path);
test1(path);
test2(path);
test3(path);
return 0;
}
|