diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2011-03-16 22:54:10 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2011-03-16 22:54:10 +0100 |
commit | 6e4fa00167ef9cbfbdf63d7a9c8cbdaad2fa1927 (patch) | |
tree | 6f5642565013217066d06ecb0dd291a2cc42a338 /tests/test_services.c | |
parent | 9205075b44eae32be7b5034d0e9dc4149d8a93c4 (diff) |
remove legacy test code that is no longer used
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1395 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'tests/test_services.c')
-rw-r--r-- | tests/test_services.c | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/tests/test_services.c b/tests/test_services.c deleted file mode 100644 index f8e07b8..0000000 --- a/tests/test_services.c +++ /dev/null @@ -1,104 +0,0 @@ -/* - test_services.c - simple tests of developed nss code - - Copyright (C) 2006 West Consulting - Copyright (C) 2006 Arthur de Jong - - 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.1 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., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA -*/ - -#include "config.h" - -#include <string.h> -#include <stdio.h> -#include <errno.h> -#include <sys/types.h> -#include <sys/socket.h> -#include <arpa/inet.h> - -#include "nss/prototypes.h" - -static char *nssstatus(nss_status_t retv) -{ - switch(retv) - { - case NSS_STATUS_TRYAGAIN: return "NSS_STATUS_TRYAGAIN"; - case NSS_STATUS_UNAVAIL: return "NSS_STATUS_UNAVAIL"; - case NSS_STATUS_NOTFOUND: return "NSS_STATUS_NOTFOUND"; - case NSS_STATUS_SUCCESS: return "NSS_STATUS_SUCCESS"; - case NSS_STATUS_RETURN: return "NSS_STATUS_RETURN"; - default: return "NSS_STATUS_**ILLEGAL**"; - } -} - -static void printserv(struct servent *serv) -{ - int i; - printf("struct servent {\n" - " s_name=\"%s\",\n", - serv->s_name); - for (i=0;serv->s_aliases[i]!=NULL;i++) - printf(" s_aliases[%d]=\"%s\",\n", - i,serv->s_aliases[i]); - printf(" s_aliases[%d]=NULL,\n" - " s_port=%d,\n" - " s_proto=\"%s\"\n" - "}\n",i,(int)(ntohs(serv->s_port)), - serv->s_proto); -} - -/* the main program... */ -int main(int argc,char *argv[]) -{ - struct servent servresult; - char buffer[1024]; - nss_status_t res; - int errnocp; - - /* test getservbyname() */ - printf("\nTEST getservbyname()\n"); - res=_nss_ldap_getservbyname_r("srvfoo","udp",&servresult,buffer,1024,&errnocp); - printf("status=%s\n",nssstatus(res)); - if (res==NSS_STATUS_SUCCESS) - printserv(&servresult); - else - printf("errno=%d:%s\n",(int)errnocp,strerror(errnocp)); - - /* test getservbyport() */ - printf("\nTEST getservbyport()\n"); - res=_nss_ldap_getservbyport_r(ntohs(9988),NULL,&servresult,buffer,1024,&errnocp); - printf("status=%s\n",nssstatus(res)); - if (res==NSS_STATUS_SUCCESS) - printserv(&servresult); - else - printf("errno=%d:%s\n",(int)errnocp,strerror(errnocp)); - - /* test {set,get,end}servent() */ - printf("\nTEST {set,get,end}servent()\n"); - res=_nss_ldap_setservent(1); - printf("status=%s\n",nssstatus(res)); - while ((res=_nss_ldap_getservent_r(&servresult,buffer,1024,&errnocp))==NSS_STATUS_SUCCESS) - { - printf("status=%s\n",nssstatus(res)); - printserv(&servresult); - } - printf("status=%s\n",nssstatus(res)); - printf("errno=%d:%s\n",(int)errnocp,strerror(errnocp)); - res=_nss_ldap_endservent(); - printf("status=%s\n",nssstatus(res)); - - return 0; -} |