Skip to content

Commit c1d682f

Browse files
committedAug 18, 2014
tests: add cunit based unit tests
add dcap_url test Acked-by: Albert Rossi Target: master
1 parent 6c1c763 commit c1d682f

File tree

4 files changed

+177
-2
lines changed

4 files changed

+177
-2
lines changed
 

‎Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dist-hook:
4646

4747

4848

49-
SUBDIRS = src plugins
49+
SUBDIRS = src plugins tests
5050

5151
rpm: dist @PACKAGE@.spec
5252
mkdir -p $(topdir)/SOURCES \

‎configure.ac

+9-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,14 @@ nokrb=1
359359
fi
360360
AC_SUBST(KRB_LIBS)
361361

362-
362+
nocunit=0
363+
AC_CHECK_HEADERS([CUnit/Basic.h],[],[nocunit=1])
364+
AC_CHECK_LIB(cunit,CU_initialize_registry, [
365+
CUNIT_LIBS="-lcunit"
366+
],[
367+
nocunit=1
368+
])
369+
AC_SUBST(CUNIT_LIBS)
363370

364371
CPPFLAGS=${_cppflags}
365372
LDFLAGS=${_ldflags}
@@ -574,4 +581,5 @@ AC_OUTPUT(Makefile \
574581
plugins/gssapi/Makefile \
575582
plugins/ssl/Makefile \
576583
plugins/telnet/Makefile \
584+
tests/Makefile \
577585
dcap.spec )

‎tests/Makefile.am

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
########################################
2+
3+
AM_CFLAGS=$(CWFLAG) \
4+
-I$(includedir) -D_REENTRANT -DLIBC_SYSCALLS -D_GNU_SOURCE
5+
6+
7+
library_includedir="$(includedir)"
8+
9+
TESTS = test_url
10+
check_PROGRAMS = $(TESTS)
11+
12+
LDADD = ../src/.libs/libdcap.la
13+
AM_LDFLAGS = $(CUNIT_LIBS)
14+
15+
test_url_SOURCES = test_url.c
16+

‎tests/test_url.c

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
#include <stdio.h>
2+
#include <string.h>
3+
#include <CUnit/Basic.h>
4+
#include <unistd.h>
5+
#include "dcap_url.h"
6+
#include "dcap_types.h"
7+
8+
extern void dc_setDebugLevel(unsigned int);
9+
10+
int init_suite(void)
11+
{
12+
dc_setDebugLevel(0);
13+
return 0;
14+
}
15+
16+
int clean_suite(void)
17+
{
18+
return 0;
19+
}
20+
21+
void test_not_a_url()
22+
{
23+
dcap_url * url = dc_getURL("/path/to/file");
24+
CU_ASSERT_PTR_NULL(url);
25+
}
26+
27+
void test_url()
28+
{
29+
dcap_url * url = dc_getURL("dcap://door.site.org:22127/path/to/file");
30+
CU_ASSERT_PTR_NOT_NULL(url);
31+
CU_ASSERT_EQUAL(url->type, URL_DCAP);
32+
CU_ASSERT_STRING_EQUAL(url->host, "door.site.org");
33+
CU_ASSERT_STRING_EQUAL(url->file, "path/to/file");
34+
CU_ASSERT_EQUAL(url->port, 22127);
35+
}
36+
37+
void test_url_with_prefix()
38+
{
39+
dcap_url * url = dc_getURL("gsidcap://door.site.org:22127/path/to/file");
40+
CU_ASSERT_PTR_NOT_NULL(url);
41+
CU_ASSERT_EQUAL(url->type, URL_DCAP);
42+
CU_ASSERT_STRING_EQUAL(url->host, "door.site.org");
43+
CU_ASSERT_STRING_EQUAL(url->file, "path/to/file");
44+
CU_ASSERT_EQUAL(url->port, 22127);
45+
CU_ASSERT_STRING_EQUAL(url->prefix, "gsi");
46+
}
47+
48+
void test_url_no_port()
49+
{
50+
dcap_url * url = dc_getURL("dcap://door.site.org/path/to/file");
51+
CU_ASSERT_PTR_NOT_NULL(url);
52+
CU_ASSERT_EQUAL(url->type, URL_DCAP);
53+
CU_ASSERT_STRING_EQUAL(url->host, "door.site.org");
54+
CU_ASSERT_STRING_EQUAL(url->file, "path/to/file");
55+
CU_ASSERT_EQUAL(url->port, DEFAULT_DOOR_PORT);
56+
}
57+
58+
void test_url_ipv4()
59+
{
60+
dcap_url * url = dc_getURL("dcap://1.2.3.4:22127/path/to/file");
61+
CU_ASSERT_PTR_NOT_NULL(url);
62+
CU_ASSERT_EQUAL(url->type, URL_DCAP);
63+
CU_ASSERT_STRING_EQUAL(url->host, "1.2.3.4");
64+
CU_ASSERT_STRING_EQUAL(url->file, "path/to/file");
65+
CU_ASSERT_EQUAL(url->port, 22127);
66+
}
67+
68+
void test_url_ipv4_no_port()
69+
{
70+
dcap_url * url = dc_getURL("dcap://1.2.3.4/path/to/file");
71+
CU_ASSERT_PTR_NOT_NULL(url);
72+
CU_ASSERT_EQUAL(url->type, URL_DCAP);
73+
CU_ASSERT_STRING_EQUAL(url->host, "1.2.3.4");
74+
CU_ASSERT_STRING_EQUAL(url->file, "path/to/file");
75+
CU_ASSERT_EQUAL(url->port, DEFAULT_DOOR_PORT);
76+
}
77+
78+
void test_url_ipv6()
79+
{
80+
dcap_url * url = dc_getURL("dcap://[fe80::21c:c0ff:fea0:caf4]:22127/path/to/file");
81+
CU_ASSERT_PTR_NOT_NULL(url);
82+
CU_ASSERT_EQUAL(url->type, URL_DCAP);
83+
CU_ASSERT_STRING_EQUAL(url->host, "fe80::21c:c0ff:fea0:caf4");
84+
CU_ASSERT_STRING_EQUAL(url->file, "path/to/file");
85+
CU_ASSERT_EQUAL(url->port, 22127);
86+
}
87+
88+
void test_url_ipv6_no_port()
89+
{
90+
dcap_url * url = dc_getURL("dcap://[fe80::21c:c0ff:fea0:caf4]/path/to/file");
91+
CU_ASSERT_PTR_NOT_NULL(url);
92+
CU_ASSERT_EQUAL(url->type, URL_DCAP);
93+
CU_ASSERT_STRING_EQUAL(url->host, "fe80::21c:c0ff:fea0:caf4");
94+
CU_ASSERT_STRING_EQUAL(url->file, "path/to/file");
95+
CU_ASSERT_EQUAL(url->port, 22125);
96+
}
97+
98+
void test_bad_formated()
99+
{
100+
dcap_url * url = dc_getURL("dcap://[fe80::21c:c0ff:fea0:caf4/path/to/file");
101+
CU_ASSERT_PTR_NULL(url);
102+
}
103+
104+
int main()
105+
{
106+
CU_pSuite pSuite = NULL;
107+
unsigned int fails;
108+
109+
/* initialize the CUnit test registry */
110+
if (CUE_SUCCESS != CU_initialize_registry())
111+
return CU_get_error();
112+
113+
/* add a suite to the registry */
114+
pSuite = CU_add_suite("dcap_url", init_suite, clean_suite);
115+
if (NULL == pSuite) {
116+
CU_cleanup_registry();
117+
return CU_get_error();
118+
}
119+
120+
/* add the tests to the suite */
121+
if (
122+
(NULL == CU_add_test(pSuite, "not a url", test_not_a_url))
123+
||
124+
(NULL == CU_add_test(pSuite, "well formated url", test_url))
125+
||
126+
(NULL == CU_add_test(pSuite, "well formated url with prefix", test_url_with_prefix))
127+
||
128+
(NULL == CU_add_test(pSuite, "url without port number", test_url_no_port))
129+
||
130+
(NULL == CU_add_test(pSuite, "url with ipv4", test_url_ipv4))
131+
||
132+
(NULL == CU_add_test(pSuite, "url with ipv4, no port number", test_url_ipv4_no_port))
133+
||
134+
(NULL == CU_add_test(pSuite, "url with ipv6", test_url_ipv6))
135+
||
136+
(NULL == CU_add_test(pSuite, "url with ipv6, no port", test_url_ipv6_no_port))
137+
||
138+
(NULL == CU_add_test(pSuite, "bad formated url", test_bad_formated))
139+
) {
140+
CU_cleanup_registry();
141+
return CU_get_error();
142+
}
143+
144+
/* Run all tests using the CUnit Basic interface */
145+
CU_basic_set_mode(CU_BRM_VERBOSE);
146+
CU_basic_run_tests();
147+
fails = CU_get_number_of_tests_failed();
148+
CU_cleanup_registry();
149+
return fails;
150+
}
151+

0 commit comments

Comments
 (0)
Please sign in to comment.