003 File Manager
Current Path:
/usr/src/contrib/apr-util/test
usr
/
src
/
contrib
/
apr-util
/
test
/
📁
..
📄
Makefile.in
(2.97 KB)
📄
Makefile.win
(4.53 KB)
📄
NWGNUaputest
(4.86 KB)
📄
NWGNUmakefile
(4.27 KB)
📄
abts.c
(9.87 KB)
📄
abts.h
(3.26 KB)
📄
abts_tests.h
(1.32 KB)
📁
data
📄
dbd.c
(13.91 KB)
📄
nw_misc.c
(417 B)
📄
test_apu.h
(2.86 KB)
📄
testall.dsw
(10.12 KB)
📄
testbuckets.c
(16.62 KB)
📄
testcrypto.c
(54.67 KB)
📄
testdate.c
(6.86 KB)
📄
testdbd.c
(6.85 KB)
📄
testdbm.c
(6.02 KB)
📄
testldap.c
(6.93 KB)
📄
testmd4.c
(4.31 KB)
📄
testmd5.c
(3.79 KB)
📄
testmemcache.c
(18.59 KB)
📄
testpass.c
(6.37 KB)
📄
testqueue.c
(3.4 KB)
📄
testredis.c
(16.35 KB)
📄
testreslist.c
(7.75 KB)
📄
testrmm.c
(5.37 KB)
📄
testsiphash.c
(5.35 KB)
📄
teststrmatch.c
(3.11 KB)
📄
testuri.c
(10.09 KB)
📄
testutil.c
(1.82 KB)
📄
testutil.h
(2.39 KB)
📄
testuuid.c
(1.67 KB)
📄
testxlate.c
(4.09 KB)
📄
testxml.c
(5.73 KB)
Editing: testxlate.c
/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "apr.h" #include "apr_errno.h" #include "apr_general.h" #include "apr_strings.h" #include "apr_xlate.h" #include "abts.h" #include "testutil.h" #if APR_HAS_XLATE static const char test_utf8[] = "Edelwei\xc3\x9f"; static const char test_utf7[] = "Edelwei+AN8-"; static const char test_latin1[] = "Edelwei\xdf"; static const char test_latin2[] = "Edelwei\xdf"; static void test_conversion(abts_case *tc, apr_xlate_t *convset, const char *inbuf, const char *expected) { static char buf[1024]; apr_size_t inbytes_left = strlen(inbuf); apr_size_t outbytes_left = sizeof(buf) - 1; apr_status_t rv; rv = apr_xlate_conv_buffer(convset, inbuf, &inbytes_left, buf, &outbytes_left); ABTS_INT_EQUAL(tc, APR_SUCCESS, rv); if (rv != APR_SUCCESS) return; rv = apr_xlate_conv_buffer(convset, NULL, NULL, buf + sizeof(buf) - outbytes_left - 1, &outbytes_left); ABTS_INT_EQUAL(tc, APR_SUCCESS, rv); buf[sizeof(buf) - outbytes_left - 1] = '\0'; ABTS_STR_EQUAL(tc, expected, buf); } static void one_test(abts_case *tc, const char *cs1, const char *cs2, const char *str1, const char *str2, apr_pool_t *pool) { apr_status_t rv; apr_xlate_t *convset; rv = apr_xlate_open(&convset, cs2, cs1, pool); ABTS_INT_EQUAL(tc, APR_SUCCESS, rv); if (rv != APR_SUCCESS) return; test_conversion(tc, convset, str1, str2); rv = apr_xlate_close(convset); ABTS_INT_EQUAL(tc, APR_SUCCESS, rv); } #if APU_HAVE_APR_ICONV /* it is a bug if iconv_open() fails */ static int is_transform_supported(abts_case *tc, const char *cs1, const char *cs2, apr_pool_t *pool) { return 1; } #else /* some iconv implementations don't support all tested transforms; * example: 8859-1 <-> 8859-2 using native Solaris iconv */ static int is_transform_supported(abts_case *tc, const char *cs1, const char *cs2, apr_pool_t *pool) { apr_status_t rv; apr_xlate_t *convset; rv = apr_xlate_open(&convset, cs2, cs1, pool); if (rv != APR_SUCCESS) { return 0; } rv = apr_xlate_close(convset); ABTS_INT_EQUAL(tc, APR_SUCCESS, rv); return 1; } #endif static void test_transformation(abts_case *tc, void *data) { /* 1. Identity transformation: UTF-8 -> UTF-8 */ one_test(tc, "UTF-8", "UTF-8", test_utf8, test_utf8, p); /* 2. UTF-8 <-> ISO-8859-1 */ one_test(tc, "UTF-8", "ISO-8859-1", test_utf8, test_latin1, p); one_test(tc, "ISO-8859-1", "UTF-8", test_latin1, test_utf8, p); /* 3. ISO-8859-1 <-> ISO-8859-2, identity */ if (is_transform_supported(tc, "ISO-8859-1", "ISO-8859-2", p)) { one_test(tc, "ISO-8859-1", "ISO-8859-2", test_latin1, test_latin2, p); } if (is_transform_supported(tc, "ISO-8859-2", "ISO-8859-1", p)) { one_test(tc, "ISO-8859-2", "ISO-8859-1", test_latin2, test_latin1, p); } /* 4. Transformation using charset aliases */ one_test(tc, "UTF-8", "UTF-7", test_utf8, test_utf7, p); one_test(tc, "UTF-7", "UTF-8", test_utf7, test_utf8, p); } #endif /* APR_HAS_XLATE */ abts_suite *testxlate(abts_suite *suite) { suite = ADD_SUITE(suite); #if APR_HAS_XLATE abts_run_test(suite, test_transformation, NULL); #endif return suite; }
Upload File
Create Folder