mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
80 lines
3.3 KiB
C++
80 lines
3.3 KiB
C++
#include <string>
|
|
#include "gtest/gtest.h"
|
|
#include "widgets/button.h"
|
|
#include "base/window.h"
|
|
#include "base/children_layouter_factory.h"
|
|
#include "scroll_view/children_layouter_list_view.h"
|
|
|
|
using std::string;
|
|
|
|
TEST(ChildrenLayoutListView, basic) {
|
|
const char* layout_params = "list_view(x=3,y=4,s=14,i=30,d=40)";
|
|
children_layouter_t* layouter = children_layouter_create(layout_params);
|
|
children_layouter_list_view_t* l = (children_layouter_list_view_t*)layouter;
|
|
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "x", 0), 3);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "y", 0), 4);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "s", 0), 14);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "i", 0), 30);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "d", 0), 40);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "ki", 0), 0);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "kd", 0), 1);
|
|
|
|
ASSERT_EQ(l->x_margin, 3);
|
|
ASSERT_EQ(l->y_margin, 4);
|
|
ASSERT_EQ(l->spacing, 14);
|
|
ASSERT_EQ(l->x_margin, 3);
|
|
ASSERT_EQ(l->item_height, 30);
|
|
ASSERT_EQ(l->default_item_height, 40);
|
|
|
|
children_layouter_destroy(layouter);
|
|
}
|
|
|
|
TEST(ChildrenLayoutListView, keep_invisible) {
|
|
const char* layout_params = "list_view(x=3,y=4,s=14,i=30,d=40,keep_invisible=true)";
|
|
children_layouter_t* layouter = children_layouter_create(layout_params);
|
|
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "ki", 0), 1);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "kd", 0), 1);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "keep_invisible", 0), 1);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "keep_disable", 0), 1);
|
|
|
|
children_layouter_destroy(layouter);
|
|
}
|
|
|
|
TEST(ChildrenLayoutListView, keep_invisible1) {
|
|
const char* layout_params = "list_view(x=3,y=4,s=14,i=30,d=40,ki=true)";
|
|
children_layouter_t* layouter = children_layouter_create(layout_params);
|
|
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "ki", 0), 1);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "kd", 0), 1);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "keep_invisible", 0), 1);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "keep_disable", 0), 1);
|
|
|
|
children_layouter_destroy(layouter);
|
|
}
|
|
|
|
TEST(ChildrenLayoutListView, keep_disable) {
|
|
const char* layout_params = "list_view(x=3,y=4,s=14,i=30,d=40,keep_disable=true)";
|
|
children_layouter_t* layouter = children_layouter_create(layout_params);
|
|
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "ki", 0), 0);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "kd", 0), 1);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "keep_invisible", 0), 0);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "keep_disable", 0), 1);
|
|
|
|
children_layouter_destroy(layouter);
|
|
}
|
|
|
|
TEST(ChildrenLayoutListView, keep_disable1) {
|
|
const char* layout_params = "list_view(x=3,y=4,s=14,i=30,d=40,kd=false)";
|
|
children_layouter_t* layouter = children_layouter_create(layout_params);
|
|
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "ki", 0), 0);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "kd", 0), 0);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "keep_invisible", 0), 0);
|
|
ASSERT_EQ(children_layouter_get_param_int(layouter, "keep_disable", 0), 0);
|
|
|
|
children_layouter_destroy(layouter);
|
|
}
|