tests: Add case for filters' padding_set

Test that the padding is correct and the instruction is valid.
This commit is contained in:
Jean-Philippe Andre 2014-03-25 17:47:20 +09:00
parent b045feefb1
commit 0a6d2e6b29
1 changed files with 6 additions and 1 deletions

View File

@ -118,6 +118,8 @@ START_TEST(evas_filter_parser)
CHKBAAD("blend(invalid=hello);");
CHKBAAD("buffer:a(alpha);buffer:a(rgba);blend();");
CHKBAAD("buffer:a(alpha,src=partname);");
CHKGOOD("padding_set(0);blend();");
CHKGOOD("padding_set(l=1,r=2,t=3,b=4);blend();");
// Case sensitivity
CHKGOOD("BLEND();");
@ -302,7 +304,10 @@ static struct Filter_Test_Case _test_cases[] = {
{ 0, 0, 0, 0, "buffer:m(src=rect);mask(m,fillmode=repeat_x_stretch_y);", "rect" },
{ 0, 0, 0, 0, "buffer:m(src=rect);mask(m,fillmode=repeat);", "rect" },
{ 0, 0, 0, 0, "buffer:m(src=rect);mask(m,fillmode=stretch);", "rect" },
{ 0, 0, 0, 0, "buffer:m(src=rect);buffer:b(rgba);blend(m,dst=b,fillmode=repeat_x_stretch_y);blend();", "rect" }
{ 0, 0, 0, 0, "buffer:m(src=rect);buffer:b(rgba);blend(m,dst=b,fillmode=repeat_x_stretch_y);blend();", "rect" },
// Padding_set
{ 11, 22, 33, 44, "padding_set(11,22,33,44);blend();"}
};
static const int _test_cases_count = sizeof(_test_cases) / sizeof(_test_cases[0]);