mirror of
https://github.com/RubyMetric/chsrc.git
synced 2024-11-23 01:55:35 +08:00
Format test_xy.c
This commit is contained in:
parent
0ef468f524
commit
a6dd3d755a
128
test_xy.c
128
test_xy.c
|
@ -3,7 +3,7 @@
|
||||||
* License : MIT
|
* License : MIT
|
||||||
* Authors : Aoran Zeng <ccmywish@qq.com>
|
* Authors : Aoran Zeng <ccmywish@qq.com>
|
||||||
* Created on : <2023-08-30>
|
* Created on : <2023-08-30>
|
||||||
* Last modified : <2023-09-29>
|
* Last modified : <2024-04-18>
|
||||||
*
|
*
|
||||||
* test_xy:
|
* test_xy:
|
||||||
*
|
*
|
||||||
|
@ -15,85 +15,77 @@
|
||||||
int
|
int
|
||||||
main (int argc, char const *argv[])
|
main (int argc, char const *argv[])
|
||||||
{
|
{
|
||||||
xy_useutf8();
|
xy_useutf8 ();
|
||||||
puti(3);
|
puti (3);
|
||||||
double dbl = 3.1415;
|
double dbl = 3.1415;
|
||||||
putf(dbl);
|
putf (dbl);
|
||||||
puts(xy_2strjoin("Xi", "'an"));
|
puts (xy_2strjoin ("Xi", "'an"));
|
||||||
puts(xy_strjoin (2, "Xi", "'an"));
|
puts (xy_strjoin (2, "Xi", "'an"));
|
||||||
puts(xy_strjoin(3, "屈身守分,", "以待天时,", "不可与命争也"));
|
puts (xy_strjoin (3, "屈身守分,", "以待天时,", "不可与命争也"));
|
||||||
puts(xy_strjoin(4, "水落鱼梁浅,", "天寒梦泽深。", "羊公碑字在,", "读罢泪沾襟。"));
|
puts (xy_strjoin (4, "水落鱼梁浅,", "天寒梦泽深。", "羊公碑字在,",
|
||||||
puts(xy_strjoin(6, "楚山横地出,", "汉水接天回。", "冠盖非新里,", "章华即旧台。", "习池风景异,", "归路满尘埃。"));
|
"读罢泪沾襟。"));
|
||||||
|
puts (xy_strjoin (6, "楚山横地出,", "汉水接天回。", "冠盖非新里,",
|
||||||
|
"章华即旧台。", "习池风景异,", "归路满尘埃。"));
|
||||||
|
|
||||||
|
print (xy_str_to_bold ("粗体"));
|
||||||
|
print (xy_str_to_faint ("浅体"));
|
||||||
|
print (xy_str_to_italic ("斜体"));
|
||||||
|
print (xy_str_to_underline ("下划线"));
|
||||||
|
print (xy_str_to_blink ("闪烁"));
|
||||||
|
print (xy_str_to_cross ("删除线"));
|
||||||
|
|
||||||
print(xy_str_to_bold("粗体"));
|
print (xy_str_to_red ("红色"));
|
||||||
print(xy_str_to_faint("浅体"));
|
print (xy_str_to_green ("绿色"));
|
||||||
print(xy_str_to_italic("斜体"));
|
print (xy_str_to_yellow ("黄色"));
|
||||||
print(xy_str_to_underline("下划线"));
|
print (xy_str_to_blue ("蓝色"));
|
||||||
print(xy_str_to_blink("闪烁"));
|
print (xy_str_to_magenta ("紫色"));
|
||||||
print(xy_str_to_cross("删除线"));
|
print (xy_str_to_purple ("紫色"));
|
||||||
|
print (xy_str_to_cyan ("青色"));
|
||||||
|
puts ("");
|
||||||
|
|
||||||
print(xy_str_to_red("红色"));
|
assert (false == xy_str_end_with ("abcdef", "abcdefg"));
|
||||||
print(xy_str_to_green("绿色"));
|
assert (xy_str_end_with ("abcdef", "def"));
|
||||||
print(xy_str_to_yellow("黄色"));
|
|
||||||
print(xy_str_to_blue("蓝色"));
|
|
||||||
print(xy_str_to_magenta("紫色"));
|
|
||||||
print(xy_str_to_purple("紫色"));
|
|
||||||
print(xy_str_to_cyan("青色"));
|
|
||||||
puts("");
|
|
||||||
|
|
||||||
assert(false == xy_str_end_with("abcdef", "abcdefg"));
|
assert (xy_str_end_with ("abcdef", "bcdef"));
|
||||||
assert(xy_str_end_with("abcdef", "def"));
|
assert (xy_str_end_with ("abcdef", "abcdef"));
|
||||||
|
assert (xy_str_end_with ("abcdef", ""));
|
||||||
|
|
||||||
assert(xy_str_end_with("abcdef", "bcdef"));
|
assert (false == xy_str_start_with ("abcdef", "abcdefg"));
|
||||||
assert(xy_str_end_with("abcdef", "abcdef"));
|
assert (xy_str_start_with ("abcdef", "abc"));
|
||||||
assert(xy_str_end_with("abcdef", ""));
|
assert (xy_str_start_with ("abcdef", "abcde"));
|
||||||
|
assert (xy_str_start_with ("abcdef", "abcdef"));
|
||||||
|
assert (xy_str_start_with ("abcdef", ""));
|
||||||
|
|
||||||
assert(false == xy_str_start_with("abcdef", "abcdefg"));
|
assert_str ("abcdefg", xy_str_delete_suffix ("abcdefg", "cdef"));
|
||||||
assert(xy_str_start_with("abcdef", "abc"));
|
assert_str ("abcdefg", xy_str_delete_suffix ("abcdefg", "cdefgh"));
|
||||||
assert(xy_str_start_with("abcdef", "abcde"));
|
assert_str ("abcdefg", xy_str_delete_suffix ("abcdefg", ""));
|
||||||
assert(xy_str_start_with("abcdef", "abcdef"));
|
assert_str ("abcd", xy_str_delete_suffix ("abcdefg", "efg"));
|
||||||
assert(xy_str_start_with("abcdef", ""));
|
|
||||||
|
|
||||||
assert_str("abcdefg",
|
assert_str ("abcdefg", xy_str_delete_prefix ("abcdefg", "cdef"));
|
||||||
xy_str_delete_suffix("abcdefg", "cdef"));
|
assert_str ("abcdefg", xy_str_delete_prefix ("abcdefg", "0abcde"));
|
||||||
assert_str("abcdefg",
|
assert_str ("abcdefg", xy_str_delete_prefix ("abcdefg", ""));
|
||||||
xy_str_delete_suffix("abcdefg", "cdefgh"));
|
assert_str ("defg", xy_str_delete_prefix ("abcdefg", "abc"));
|
||||||
assert_str("abcdefg",
|
|
||||||
xy_str_delete_suffix("abcdefg", ""));
|
|
||||||
assert_str("abcd",
|
|
||||||
xy_str_delete_suffix("abcdefg", "efg"));
|
|
||||||
|
|
||||||
assert_str("abcdefg",
|
assert_str ("defdef", xy_str_gsub ("abcdefabcdef", "abc", "")); // 删除
|
||||||
xy_str_delete_prefix("abcdefg", "cdef"));
|
assert_str ("6def6def", xy_str_gsub ("abcdefabcdef", "abc", "6")); // 缩小
|
||||||
assert_str("abcdefg",
|
assert_str ("XIANGdefXIANGdef",
|
||||||
xy_str_delete_prefix("abcdefg", "0abcde"));
|
xy_str_gsub ("abcdefabcdef", "abc", "XIANG")); // 扩张
|
||||||
assert_str("abcdefg",
|
assert_str ("DEFdefDEFdef",
|
||||||
xy_str_delete_prefix("abcdefg", ""));
|
xy_str_gsub ("abcdefabcdef", "abc", "DEF")); // 等量
|
||||||
assert_str("defg",
|
|
||||||
xy_str_delete_prefix("abcdefg", "abc"));
|
|
||||||
|
|
||||||
assert_str("defdef",
|
xy_success ("成功:输出成功内容");
|
||||||
xy_str_gsub("abcdefabcdef", "abc", "")); // 删除
|
xy_info ("信息: 输出信息内容");
|
||||||
assert_str("6def6def",
|
xy_warn ("警告:输出警告内容");
|
||||||
xy_str_gsub("abcdefabcdef", "abc", "6")); // 缩小
|
xy_error ("错误:输出错误内容");
|
||||||
assert_str("XIANGdefXIANGdef",
|
|
||||||
xy_str_gsub("abcdefabcdef", "abc", "XIANG")); // 扩张
|
|
||||||
assert_str("DEFdefDEFdef",
|
|
||||||
xy_str_gsub("abcdefabcdef", "abc", "DEF")); // 等量
|
|
||||||
|
|
||||||
xy_success("成功:输出成功内容");
|
assert (xy_file_exist ("chsrc.png"));
|
||||||
xy_info("信息: 输出信息内容");
|
assert (xy_file_exist (xy_win_powershell_profile));
|
||||||
xy_warn("警告:输出警告内容");
|
assert (false == xy_file_exist (xy_win_powershellv5_profile));
|
||||||
xy_error("错误:输出错误内容");
|
|
||||||
|
|
||||||
assert(xy_file_exist("chsrc.png"));
|
puts (xy_uniform_path (" \n ~/haha/test/123 \n\r "));
|
||||||
assert(xy_file_exist(xy_win_powershell_profile));
|
assert_str (xy_uniform_path ("~/haha/test"),
|
||||||
assert(false==xy_file_exist(xy_win_powershellv5_profile));
|
xy_parent_dir (" ~/haha/test/123"));
|
||||||
|
|
||||||
puts (xy_uniform_path(" \n ~/haha/test/123 \n\r "));
|
xy_success ("测试全部通过");
|
||||||
assert_str (xy_uniform_path("~/haha/test"), xy_parent_dir (" ~/haha/test/123") );
|
|
||||||
|
|
||||||
xy_success("测试全部通过");
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user