OSDN Git Service

* Added test code of the <font size> attribute for au HDML converter.
authorkonn <konn@1a406e8e-add9-4483-a2c8-d8cac5b7c224>
Sun, 27 Apr 2008 15:28:55 +0000 (15:28 +0000)
committerkonn <konn@1a406e8e-add9-4483-a2c8-d8cac5b7c224>
Sun, 27 Apr 2008 15:28:55 +0000 (15:28 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/modchxj/mod_chxj/branches/RELEASE_0_12_0@2555 1a406e8e-add9-4483-a2c8-d8cac5b7c224

test/chxj_hdml/test_chxj_hdml.c

index 3f0bdac..b289dd1 100644 (file)
@@ -412,6 +412,7 @@ void test_hdml_marquee_tag_004();
 void test_hdml_meta_tag_001();
 
 void test_hdml_font_tag_001();
+void test_hdml_font_tag_002();
 
 void test_hdml_param_tag_001();
 /* pend */
@@ -884,6 +885,7 @@ main()
   /* <font>                                                                  */
   /*=========================================================================*/
   CU_add_test(hdml_suite, "test <font> 1." ,                                   test_hdml_font_tag_001);
+  CU_add_test(hdml_suite, "test <font> 2." ,                                   test_hdml_font_tag_002);
 
   /*=========================================================================*/
   /* <param>                                                                 */
@@ -10927,6 +10929,36 @@ void test_hdml_font_tag_001()
 #undef TEST_STRING
 #undef RESULT_STRING
 }
+void test_hdml_font_tag_002() 
+{
+#define  TEST_STRING "<font size=\"1\">あああ</font>"
+#define  RESULT_STRING "あああ"
+  char  *ret;
+  char  *tmp;
+  device_table spec;
+  chxjconvrule_entry entry;
+  cookie_t cookie;
+  apr_size_t destlen;
+  APR_INIT;
+
+  COOKIE_INIT(cookie);
+
+  SPEC_INIT(spec);
+  destlen = sizeof(TEST_STRING)-1;
+
+  tmp = chxj_encoding(&r, TEST_STRING, &destlen);
+  ret = chxj_convert_hdml(&r, &spec, tmp, destlen, &destlen, &entry, &cookie);
+  ret = chxj_rencoding(&r, ret, &destlen);
+  fprintf(stderr, "actual=[%s]\n", ret);
+  fprintf(stderr, "except=[%s]\n", RESULT_STRING);
+  CU_ASSERT(ret != NULL);
+  CU_ASSERT(strcmp(RESULT_STRING, ret) == 0);
+  CU_ASSERT(destlen == sizeof(RESULT_STRING)-1);
+
+  APR_TERM;
+#undef TEST_STRING
+#undef RESULT_STRING
+}
 /*============================================================================*/
 /* <PARAM>                                                                    */
 /*============================================================================*/