|
| 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