| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791 |
- #include "test.h"
- /*
- * g_utf16_to_utf8
- */
- glong
- compare_strings_utf8_pos (const gchar *expected, const gchar *actual, glong size)
- {
- int i;
- for (i = 0; i < size; i++)
- if (expected [i] != actual [i])
- return i;
- return -1;
- }
- RESULT
- compare_strings_utf8_RESULT (const gchar *expected, const gchar *actual, glong size)
- {
- glong ret;
- ret = compare_strings_utf8_pos (expected, actual, size);
- if (ret < 0)
- return OK;
- return FAILED ("Incorrect output: expected '%s' but was '%s', differ at %d\n", expected, actual, ret);
- }
- void
- gchar_to_gunichar2 (gunichar2 ret[], const gchar *src)
- {
- int i;
- for (i = 0; src [i]; i++)
- ret [i] = src [i];
- ret [i] = 0;
- }
- RESULT
- compare_utf16_to_utf8_explicit (const gchar *expected, const gunichar2 *utf16, glong len_in, glong len_out, glong size_spec)
- {
- GError *error;
- gchar* ret;
- RESULT result;
- glong in_read, out_read;
- result = NULL;
- error = NULL;
- ret = g_utf16_to_utf8 (utf16, size_spec, &in_read, &out_read, &error);
- if (error) {
- result = FAILED ("The error is %d %s\n", (error)->code, (error)->message);
- g_error_free (error);
- if (ret)
- g_free (ret);
- return result;
- }
- if (in_read != len_in)
- result = FAILED ("Read size is incorrect: expected %d but was %d\n", len_in, in_read);
- else if (out_read != len_out)
- result = FAILED ("Converted size is incorrect: expected %d but was %d\n", len_out, out_read);
- else
- result = compare_strings_utf8_RESULT (expected, ret, len_out);
- g_free (ret);
- if (result)
- return result;
- return OK;
- }
- RESULT
- compare_utf16_to_utf8 (const gchar *expected, const gunichar2 *utf16, glong len_in, glong len_out)
- {
- RESULT result;
- result = compare_utf16_to_utf8_explicit (expected, utf16, len_in, len_out, -1);
- if (result != OK)
- return result;
- return compare_utf16_to_utf8_explicit (expected, utf16, len_in, len_out, len_in);
- }
- RESULT
- test_utf16_to_utf8 ()
- {
- const gchar *src0 = "", *src1 = "ABCDE", *src2 = "\xE5\xB9\xB4\x27", *src3 = "\xEF\xBC\xA1", *src4 = "\xEF\xBD\x81", *src5 = "\xF0\x90\x90\x80";
- gunichar2 str0 [] = {0}, str1 [6], str2 [] = {0x5E74, 39, 0}, str3 [] = {0xFF21, 0}, str4 [] = {0xFF41, 0}, str5 [] = {0xD801, 0xDC00, 0};
- RESULT result;
- gchar_to_gunichar2 (str1, src1);
- /* empty string */
- result = compare_utf16_to_utf8 (src0, str0, 0, 0);
- if (result != OK)
- return result;
- result = compare_utf16_to_utf8 (src1, str1, 5, 5);
- if (result != OK)
- return result;
- result = compare_utf16_to_utf8 (src2, str2, 2, 4);
- if (result != OK)
- return result;
- result = compare_utf16_to_utf8 (src3, str3, 1, 3);
- if (result != OK)
- return result;
- result = compare_utf16_to_utf8 (src4, str4, 1, 3);
- if (result != OK)
- return result;
- result = compare_utf16_to_utf8 (src5, str5, 2, 4);
- if (result != OK)
- return result;
- return OK;
- }
- /*
- * g_utf8_to_utf16
- */
- glong
- compare_strings_utf16_pos (const gunichar2 *expected, const gunichar2 *actual, glong size)
- {
- int i;
- for (i = 0; i < size; i++)
- if (expected [i] != actual [i])
- return i;
- return -1;
- }
- RESULT
- compare_strings_utf16_RESULT (const gunichar2 *expected, const gunichar2 *actual, glong size)
- {
- glong ret;
- ret = compare_strings_utf16_pos (expected, actual, size);
- if (ret < 0)
- return OK;
- return FAILED ("Incorrect output: expected '%s' but was '%s'\n", expected, actual);
- }
- RESULT
- compare_utf8_to_utf16_explicit (const gunichar2 *expected, const gchar *utf8, glong len_in, glong len_out, glong size_spec)
- {
- GError *error;
- gunichar2* ret;
- RESULT result;
- glong in_read, out_read;
- result = NULL;
- error = NULL;
- ret = g_utf8_to_utf16 (utf8, size_spec, &in_read, &out_read, &error);
- if (error) {
- result = FAILED ("The error is %d %s\n", (error)->code, (error)->message);
- g_error_free (error);
- if (ret)
- g_free (ret);
- return result;
- }
- if (in_read != len_in)
- result = FAILED ("Read size is incorrect: expected %d but was %d\n", len_in, in_read);
- else if (out_read != len_out)
- result = FAILED ("Converted size is incorrect: expected %d but was %d\n", len_out, out_read);
- else
- result = compare_strings_utf16_RESULT (expected, ret, len_out);
- g_free (ret);
- if (result)
- return result;
- return OK;
- }
- RESULT
- compare_utf8_to_utf16 (const gunichar2 *expected, const gchar *utf8, glong len_in, glong len_out)
- {
- RESULT result;
- result = compare_utf8_to_utf16_explicit (expected, utf8, len_in, len_out, -1);
- if (result != OK)
- return result;
- return compare_utf8_to_utf16_explicit (expected, utf8, len_in, len_out, len_in);
- }
- RESULT
- test_utf8_seq ()
- {
- const gchar *src = "\xE5\xB9\xB4\x27";
- glong in_read, out_read;
- //gunichar2 expected [6];
- GError *error = NULL;
- gunichar2 *dst;
- printf ("got: %s\n", src);
- dst = g_utf8_to_utf16 (src, (glong)strlen (src), &in_read, &out_read, &error);
- if (error != NULL){
- return error->message;
- }
- if (in_read != 4) {
- return FAILED ("in_read is expected to be 4 but was %d\n", in_read);
- }
- if (out_read != 2) {
- return FAILED ("out_read is expected to be 2 but was %d\n", out_read);
- }
- g_free (dst);
- return OK;
- }
- RESULT
- test_utf8_to_utf16 ()
- {
- const gchar *src0 = "", *src1 = "ABCDE", *src2 = "\xE5\xB9\xB4\x27", *src3 = "\xEF\xBC\xA1", *src4 = "\xEF\xBD\x81";
- gunichar2 str0 [] = {0}, str1 [6], str2 [] = {0x5E74, 39, 0}, str3 [] = {0xFF21, 0}, str4 [] = {0xFF41, 0};
- RESULT result;
- gchar_to_gunichar2 (str1, src1);
- /* empty string */
- result = compare_utf8_to_utf16 (str0, src0, 0, 0);
- if (result != OK)
- return result;
- result = compare_utf8_to_utf16 (str1, src1, 5, 5);
- if (result != OK)
- return result;
- result = compare_utf8_to_utf16 (str2, src2, 4, 2);
- if (result != OK)
- return result;
- result = compare_utf8_to_utf16 (str3, src3, 3, 1);
- if (result != OK)
- return result;
- result = compare_utf8_to_utf16 (str4, src4, 3, 1);
- if (result != OK)
- return result;
- return OK;
- }
- RESULT
- test_convert ()
- {
- gsize n;
- char *s = g_convert ("\242\241\243\242\241\243\242\241\243\242\241\243", -1, "UTF-8", "ISO-8859-1", NULL, &n, NULL);
- guchar *u = (guchar *) s;
-
- if (!s)
- return FAILED ("Expected 24 bytes, got: NULL");
- if (strlen (s) != 24)
- return FAILED ("Expected 24 bytes, got: %d", strlen (s));
- if (u [1] != 162 || u [2] != 194 ||
- u [3] != 161 || u [4] != 194 ||
- u [5] != 163 || u [6] != 194)
- return FAILED ("Incorrect conversion");
-
- g_free (s);
-
- return OK;
- }
- RESULT
- test_xdigit ()
- {
- static char test_chars[] = {
- '0', '1', '2', '3', '4',
- '5', '6', '7', '8', '9',
- 'a', 'b', 'c', 'd', 'e', 'f', 'g',
- 'A', 'B', 'C', 'D', 'E', 'F', 'G'};
- static gint32 test_values[] = {
- 0, 1, 2, 3, 4,
- 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 14, 15, -1,
- 10, 11, 12, 13, 14, 15, -1};
- int i =0;
- for (i = 0; i < sizeof(test_chars); i++)
- if (g_unichar_xdigit_value ((gunichar)test_chars[i]) != test_values[i])
- return FAILED("Incorrect value %d at index %d", test_values[i], i);
- return OK;
- }
- static RESULT
- ucs4_to_utf16_check_result (const gunichar2 *result_str, const gunichar2 *expected_str,
- glong result_items_read, glong expected_items_read,
- glong result_items_written, glong expected_items_written,
- GError* result_error, gboolean expect_error)
- {
- glong i;
- if (result_items_read != expected_items_read)
- return FAILED("Incorrect number of items read %d", result_items_read);
- if (result_items_written != expected_items_written)
- return FAILED("Incorrect number of items written %d", result_items_written);
- if (result_error && !expect_error)
- return FAILED("There should not be an error code.");
- if (!result_error && expect_error)
- return FAILED("Unexpected error object.");
- if (expect_error && result_str)
- return FAILED("NULL should be returned when an error occurs.");
- if (!expect_error && !result_str)
- return FAILED("When no error occurs NULL should not be returned.");
- for (i=0; i<expected_items_written;i++) {
- if (result_str [i] != expected_str [i])
- return FAILED("Incorrect value %d at index %d", result_str [i], i);
- }
- if (result_str && result_str[expected_items_written] != '\0')
- return FAILED("Null termination not found at the end of the string.");
-
- return OK;
- }
- RESULT
- test_ucs4_to_utf16 ()
- {
- static gunichar str1[12] = {'H','e','l','l','o',' ','W','o','r','l','d','\0'};
- static gunichar2 exp1[12] = {'H','e','l','l','o',' ','W','o','r','l','d','\0'};
- static gunichar str2[3] = {'h',0x80000000,'\0'};
- static gunichar2 exp2[2] = {'h','\0'};
- static gunichar str3[3] = {'h',0xDA00,'\0'};
- static gunichar str4[3] = {'h',0x10FFFF,'\0'};
- static gunichar2 exp4[4] = {'h',0xdbff,0xdfff,'\0'};
- static gunichar str5[7] = {0xD7FF,0xD800,0xDFFF,0xE000,0x110000,0x10FFFF,'\0'};
- static gunichar2 exp5[5] = {0xD7FF,0xE000,0xdbff,0xdfff,'\0'};
- static gunichar str6[2] = {0x10400, '\0'};
- static gunichar2 exp6[3] = {0xD801, 0xDC00, '\0'};
- static glong read_write[12] = {1,1,0,0,0,0,1,1,0,0,1,2};
- gunichar2* res;
- glong items_read, items_written, current_write_index;
- GError* err=0;
- RESULT check_result;
- glong i;
-
- res = g_ucs4_to_utf16 (str1, 12, &items_read, &items_written, &err);
- check_result = ucs4_to_utf16_check_result (res, exp1, items_read, 11, items_written, 11, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- res = g_ucs4_to_utf16 (str2, 0, &items_read, &items_written, &err);
- check_result = ucs4_to_utf16_check_result (res, exp2, items_read, 0, items_written, 0, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- res = g_ucs4_to_utf16 (str2, 1, &items_read, &items_written, &err);
- check_result = ucs4_to_utf16_check_result (res, exp2, items_read, 1, items_written, 1, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- res = g_ucs4_to_utf16 (str2, 2, &items_read, &items_written, &err);
- check_result = ucs4_to_utf16_check_result (res, 0, items_read, 1, items_written, 0, err, TRUE);
- g_free (res);
- if (check_result) return check_result;
- items_read = items_written = 0;
- err = 0;
- res = g_ucs4_to_utf16 (str3, 2, &items_read, &items_written, &err);
- check_result = ucs4_to_utf16_check_result (res, 0, items_read, 1, items_written, 0, err, TRUE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- err = 0;
- res = g_ucs4_to_utf16 (str4, 5, &items_read, &items_written, &err);
- check_result = ucs4_to_utf16_check_result (res, exp4, items_read, 2, items_written, 3, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- // This loop tests the bounds of the conversion algorithm
- current_write_index = 0;
- for (i=0;i<6;i++) {
- items_read = items_written = 0;
- err = 0;
- res = g_ucs4_to_utf16 (&str5[i], 1, &items_read, &items_written, &err);
- check_result = ucs4_to_utf16_check_result (res, &exp5[current_write_index],
- items_read, read_write[i*2], items_written, read_write[(i*2)+1], err, !read_write[(i*2)+1]);
- if (check_result) return check_result;
- g_free (res);
- current_write_index += items_written;
- }
- items_read = items_written = 0;
- err = 0;
- res = g_ucs4_to_utf16 (str6, 1, &items_read, &items_written, &err);
- check_result = ucs4_to_utf16_check_result (res, exp6, items_read, 1, items_written, 2, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- return OK;
- }
- static RESULT
- utf16_to_ucs4_check_result (const gunichar *result_str, const gunichar *expected_str,
- glong result_items_read, glong expected_items_read,
- glong result_items_written, glong expected_items_written,
- GError* result_error, gboolean expect_error)
- {
- glong i;
- if (result_items_read != expected_items_read)
- return FAILED("Incorrect number of items read %d", result_items_read);
- if (result_items_written != expected_items_written)
- return FAILED("Incorrect number of items written %d", result_items_written);
- if (result_error && !expect_error)
- return FAILED("There should not be an error code.");
- if (!result_error && expect_error)
- return FAILED("Unexpected error object.");
- if (expect_error && result_str)
- return FAILED("NULL should be returned when an error occurs.");
- if (!expect_error && !result_str)
- return FAILED("When no error occurs NULL should not be returned.");
- for (i=0; i<expected_items_written;i++) {
- if (result_str [i] != expected_str [i])
- return FAILED("Incorrect value %d at index %d", result_str [i], i);
- }
- if (result_str && result_str[expected_items_written] != '\0')
- return FAILED("Null termination not found at the end of the string.");
-
- return OK;
- }
- RESULT
- test_utf16_to_ucs4 ()
- {
- static gunichar2 str1[12] = {'H','e','l','l','o',' ','W','o','r','l','d','\0'};
- static gunichar exp1[12] = {'H','e','l','l','o',' ','W','o','r','l','d','\0'};
- static gunichar2 str2[7] = {'H', 0xD800, 0xDC01,0xD800,0xDBFF,'l','\0'};
- static gunichar exp2[3] = {'H',0x00010001,'\0'};
- static gunichar2 str3[4] = {'H', 0xDC00 ,'l','\0'};
- static gunichar exp3[2] = {'H','\0'};
- static gunichar2 str4[20] = {0xDC00,0xDFFF,0xDFF,0xD800,0xDBFF,0xD800,0xDC00,0xD800,0xDFFF,
- 0xD800,0xE000,0xDBFF,0xDBFF,0xDBFF,0xDC00,0xDBFF,0xDFFF,0xDBFF,0xE000,'\0'};
- static gunichar exp4[6] = {0xDFF,0x10000,0x103ff,0x10fc00,0x10FFFF,'\0'};
- static gunichar2 str5[3] = {0xD801, 0xDC00, 0};
- static gunichar exp5[2] = {0x10400, 0};
- static glong read_write[33] = {1,0,0,1,0,0,1,1,1,2,1,0,2,2,1,2,2,1,2,1,0,2,1,0,2,2,1,2,2,1,2,1,0};
- gunichar* res;
- glong items_read, items_written, current_read_index,current_write_index;
- GError* err=0;
- RESULT check_result;
- glong i;
-
- res = g_utf16_to_ucs4 (str1, 12, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp1, items_read, 11, items_written, 11, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- res = g_utf16_to_ucs4 (str2, 0, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp2, items_read, 0, items_written, 0, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- res = g_utf16_to_ucs4 (str2, 1, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp2, items_read, 1, items_written, 1, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
-
- items_read = items_written = 0;
- res = g_utf16_to_ucs4 (str2, 2, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp2, items_read, 1, items_written, 1, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- res = g_utf16_to_ucs4 (str2, 3, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp2, items_read, 3, items_written, 2, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- res = g_utf16_to_ucs4 (str2, 4, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp2, items_read, 3, items_written, 2, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- res = g_utf16_to_ucs4 (str2, 5, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp2, items_read, 4, items_written, 0, err, TRUE);
- if (check_result) return check_result;
- g_free (res);
- items_read = items_written = 0;
- err = 0;
- res = g_utf16_to_ucs4 (str3, 5, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp3, items_read, 1, items_written, 0, err, TRUE);
- if (check_result) return check_result;
- g_free (res);
- // This loop tests the bounds of the conversion algorithm
- current_read_index = current_write_index = 0;
- for (i=0;i<11;i++) {
- items_read = items_written = 0;
- err = 0;
- res = g_utf16_to_ucs4 (&str4[current_read_index], read_write[i*3], &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, &exp4[current_write_index], items_read,
- read_write[(i*3)+1], items_written, read_write[(i*3)+2], err,
- !read_write[(i*3)+2]);
- if (check_result) return check_result;
- g_free (res);
- current_read_index += read_write[i*3];
- current_write_index += items_written;
- }
- items_read = items_written = 0;
- err = 0;
- res = g_utf16_to_ucs4 (str5, 2, &items_read, &items_written, &err);
- check_result = utf16_to_ucs4_check_result (res, exp5, items_read, 2, items_written, 1, err, FALSE);
- if (check_result) return check_result;
- g_free (res);
- return OK;
- }
- RESULT
- test_utf8_strlen ()
- {
- gchar word1 [] = {0xC2, 0x82,0x45,0xE1, 0x81, 0x83,0x58,0xF1, 0x82, 0x82, 0x82,'\0'};//Valid, len = 5
- gchar word2 [] = {0xF1, 0x82, 0x82, 0x82,0xC2, 0x82,0x45,0xE1, 0x81, 0x83,0x58,'\0'};//Valid, len = 5
- gchar word3 [] = {'h','e',0xC2, 0x82,0x45,'\0'}; //Valid, len = 4
- gchar word4 [] = {0x62,0xC2, 0x82,0x45,0xE1, 0x81, 0x83,0x58,'\0'}; //Valid, len = 5
-
- glong len = 0;
-
- //Test word1
- len = g_utf8_strlen (word1,-1);
- if (len != 5)
- return FAILED ("Word1 expected length of 5, but was %i", len);
- //Do tests with different values for max parameter.
- len = g_utf8_strlen (word1,1);
- if (len != 0)
- return FAILED ("Word1, max = 1, expected length of 0, but was %i", len);
- len = g_utf8_strlen (word1,2);
- if (len != 1)
- return FAILED ("Word1, max = 1, expected length of 1, but was %i", len);
- len = g_utf8_strlen (word1,3);
- if (len != 2)
- return FAILED ("Word1, max = 2, expected length of 2, but was %i", len);
-
- //Test word2
- len = g_utf8_strlen (word2,-1);
- if (len != 5)
- return FAILED ("Word2 expected length of 5, but was %i", len);
-
- //Test word3
- len = g_utf8_strlen (word3,-1);
- if (len != 4)
- return FAILED ("Word3 expected length of 4, but was %i", len);
-
- //Test word4
- len = g_utf8_strlen (word4,-1);
- if (len != 5)
- return FAILED ("Word4 expected length of 5, but was %i", len);
-
- //Test null case
- len = g_utf8_strlen(NULL,0);
- if (len != 0)
- return FAILED ("Expected passing null to result in a length of 0");
- return OK;
- }
- RESULT
- test_utf8_get_char()
- {
- gchar word1 [] = {0xC2, 0x82,0x45,0xE1, 0x81, 0x83,0x58,0xF1, 0x82, 0x82, 0x82,'\0'}; //Valid, len = 5
- gunichar value = g_utf8_get_char (&word1 [0]);
- if (value != 0x82UL)
- return FAILED ("Expected value of 0x82, but was %x", value);
- value = g_utf8_get_char (&word1 [2]);
- if (value != 0x45UL)
- return FAILED ("Expected value of 0x45, but was %x", value);
- value = g_utf8_get_char (&word1 [3]);
- if (value != 0x1043UL)
- return FAILED ("Expected value of 0x1043, but was %x", value);
- value = g_utf8_get_char (&word1 [6]);
- if (value != 0x58UL)
- return FAILED ("Expected value of 0x58, but was %x", value);
- value = g_utf8_get_char (&word1 [7]);
- if (value != 0x42082UL)
- return FAILED ("Expected value of 0x42082, but was %x", value);
- return OK;
- }
- RESULT
- test_utf8_next_char()
- {
- gchar word1 [] = {0xC2, 0x82,0x45,0xE1, 0x81, 0x83,0x58,0xF1, 0x82, 0x82, 0x82,'\0'}; //Valid, len = 5
- gchar word2 [] = {0xF1, 0x82, 0x82, 0x82,0xC2, 0x82,0x45,0xE1, 0x81, 0x83,0x58,'\0'}; //Valid, len = 5
- gchar word1ExpectedValues [] = {0xC2, 0x45,0xE1, 0x58, 0xF1};
- gchar word2ExpectedValues [] = {0xF1, 0xC2, 0x45, 0xE1, 0x58};
-
- gchar* ptr = word1;
- gint count = 0;
- //Test word1
- while (*ptr != 0) {
- if (count > 4)
- return FAILED ("Word1 has gone past its expected length");
- if (*ptr != word1ExpectedValues[count])
- return FAILED ("Word1 has an incorrect next_char at index %i", count);
- ptr = g_utf8_next_char (ptr);
- count++;
- }
-
- //Test word2
- count = 0;
- ptr = word2;
- while (*ptr != 0) {
- if (count > 4)
- return FAILED ("Word2 has gone past its expected length");
- if (*ptr != word2ExpectedValues[count])
- return FAILED ("Word2 has an incorrect next_char at index %i", count);
- ptr = g_utf8_next_char (ptr);
- count++;
- }
-
- return OK;
- }
- RESULT
- test_utf8_validate()
- {
- gchar invalidWord1 [] = {0xC3, 0x82, 0xC1,0x90,'\0'}; //Invalid, 1nd oct Can't be 0xC0 or 0xC1
- gchar invalidWord2 [] = {0xC1, 0x89, 0x60, '\0'}; //Invalid, 1st oct can not be 0xC1
- gchar invalidWord3 [] = {0xC2, 0x45,0xE1, 0x81, 0x83,0x58,'\0'}; //Invalid, oct after 0xC2 must be > 0x80
- gchar validWord1 [] = {0xC2, 0x82, 0xC3,0xA0,'\0'}; //Valid
- gchar validWord2 [] = {0xC2, 0x82,0x45,0xE1, 0x81, 0x83,0x58,0xF1, 0x82, 0x82, 0x82,'\0'}; //Valid
-
- const gchar* end;
- gboolean retVal = g_utf8_validate (invalidWord1, -1, &end);
- if (retVal != FALSE)
- return FAILED ("Expected invalidWord1 to be invalid");
- if (end != &invalidWord1 [2])
- return FAILED ("Expected end parameter to be pointing to invalidWord1[2]");
- end = NULL;
- retVal = g_utf8_validate (invalidWord2, -1, &end);
- if (retVal != FALSE)
- return FAILED ("Expected invalidWord2 to be invalid");
- if (end != &invalidWord2 [0])
- return FAILED ("Expected end parameter to be pointing to invalidWord2[0]");
- end = NULL;
- retVal = g_utf8_validate (invalidWord3, -1, &end);
- if (retVal != FALSE)
- return FAILED ("Expected invalidWord3 to be invalid");
- if (end != &invalidWord3 [0])
- return FAILED ("Expected end parameter to be pointing to invalidWord3[1]");
- end = NULL;
- retVal = g_utf8_validate (validWord1, -1, &end);
- if (retVal != TRUE)
- return FAILED ("Expected validWord1 to be valid");
- if (end != &validWord1 [4])
- return FAILED ("Expected end parameter to be pointing to validWord1[4]");
- end = NULL;
- retVal = g_utf8_validate (validWord2, -1, &end);
- if (retVal != TRUE)
- return FAILED ("Expected validWord2 to be valid");
- if (end != &validWord2 [11])
- return FAILED ("Expected end parameter to be pointing to validWord2[11]");
- return OK;
- }
- glong
- utf8_byteslen (const gchar *src)
- {
- int i = 0;
- do {
- if (src [i] == '\0')
- return i;
- i++;
- } while (TRUE);
- }
- RESULT
- test_utf8_strcase_each (const gchar *src, const gchar *expected, gboolean strup)
- {
- gchar *tmp;
- glong len, len2;
- RESULT r;
- len = utf8_byteslen (src);
- tmp = strup ? g_utf8_strup (src, len) : g_utf8_strdown (src, len);
- len2 = utf8_byteslen (tmp);
- r = compare_strings_utf8_RESULT (expected, tmp, len < len2 ? len2 : len);
- g_free (tmp);
- return r;
- }
- RESULT
- test_utf8_strup_each (const gchar *src, const gchar *expected)
- {
- return test_utf8_strcase_each (src, expected, TRUE);
- }
- RESULT
- test_utf8_strdown_each (const gchar *src, const gchar *expected)
- {
- return test_utf8_strcase_each (src, expected, FALSE);
- }
- /*
- * g_utf8_strup
- */
- RESULT
- test_utf8_strup ()
- {
- RESULT r;
- if ((r = test_utf8_strup_each ("aBc", "ABC")) != OK)
- return r;
- if ((r = test_utf8_strup_each ("x86-64", "X86-64")) != OK)
- return r;
- // U+3B1 U+392 -> U+391 U+392
- if ((r = test_utf8_strup_each ("\xCE\xB1\xCE\x92", "\xCE\x91\xCE\x92")) != OK)
- return r;
- // U+FF21 -> U+FF21
- if ((r = test_utf8_strup_each ("\xEF\xBC\xA1", "\xEF\xBC\xA1")) != OK)
- return r;
- // U+FF41 -> U+FF21
- if ((r = test_utf8_strup_each ("\xEF\xBD\x81", "\xEF\xBC\xA1")) != OK)
- return r;
- // U+10428 -> U+10400
- if ((r = test_utf8_strup_each ("\xF0\x90\x90\xA8", "\xF0\x90\x90\x80")) != OK)
- return r;
- return OK;
- }
- /*
- * g_utf8_strdown
- */
- RESULT
- test_utf8_strdown ()
- {
- RESULT r;
- if ((r = test_utf8_strdown_each ("aBc", "abc")) != OK)
- return r;
- if ((r = test_utf8_strdown_each ("X86-64", "x86-64")) != OK)
- return r;
- // U+391 U+3B2 -> U+3B1 U+3B2
- if ((r = test_utf8_strdown_each ("\xCE\x91\xCE\xB2", "\xCE\xB1\xCE\xB2")) != OK)
- return r;
- /*
- // U+FF41 -> U+FF41
- if ((r = test_utf8_strdown_each ("\xEF\xBC\x81", "\xEF\xBC\x81")) != OK)
- return r;
- // U+FF21 -> U+FF41
- if ((r = test_utf8_strdown_each ("\xEF\xBC\xA1", "\xEF\xBD\x81")) != OK)
- return r;
- // U+10400 -> U+10428
- if ((r = test_utf8_strdown_each ("\xF0\x90\x90\x80", "\xF0\x90\x90\xA8")) != OK)
- return r;
- */
- return OK;
- }
- /*
- * test initialization
- */
- static Test utf8_tests [] = {
- {"g_utf16_to_utf8", test_utf16_to_utf8},
- {"g_utf8_to_utf16", test_utf8_to_utf16},
- {"g_utf8_seq", test_utf8_seq},
- {"g_convert", test_convert },
- {"g_unichar_xdigit_value", test_xdigit },
- {"g_ucs4_to_utf16", test_ucs4_to_utf16 },
- {"g_utf16_to_ucs4", test_utf16_to_ucs4 },
- {"g_utf8_strlen", test_utf8_strlen },
- {"g_utf8_get_char", test_utf8_get_char },
- {"g_utf8_next_char", test_utf8_next_char },
- {"g_utf8_validate", test_utf8_validate },
- {"g_utf8_strup", test_utf8_strup},
- {"g_utf8_strdown", test_utf8_strdown},
- {NULL, NULL}
- };
- DEFINE_TEST_GROUP_INIT(utf8_tests_init, utf8_tests)
|