mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00
Add flex_grow and flex_shrink.
Two new elements: - flex_grow : Expand the element to occupy free space. - flex_shrink: Minimize the element leave away missing space. flex = flex_grow | flex_shrink. Other changes: - hbox and vbox are now non flexible by default. - the vtext element has been added to help writting tests. - Many new tests.
This commit is contained in:

committed by
Arthur Sonzogni

parent
7f7775ba62
commit
08ee49f3e6
@@ -9,81 +9,347 @@
|
||||
using namespace ftxui;
|
||||
using namespace ftxui;
|
||||
|
||||
TEST(HBoxTest, ScreenSmaller1) {
|
||||
auto root = hbox(text(L"text_1"), text(L"text_2"));
|
||||
Screen screen(11, 1);
|
||||
Render(screen, root);
|
||||
TEST(HBoxTest, NoFlex_NoFlex_NoFlex) {
|
||||
auto root = hbox({
|
||||
text(L"012"),
|
||||
text(L"abc"),
|
||||
text(L"ABC"),
|
||||
});
|
||||
|
||||
EXPECT_EQ("text_1text_", screen.ToString());
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"0aA", //
|
||||
"01aA", //
|
||||
"01abA", //
|
||||
"01abAB", //
|
||||
"012abAB", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
"012abcABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, ScreenSmaller2) {
|
||||
auto root = hbox(text(L"text_1"), text(L"text_2"));
|
||||
Screen screen(10, 1);
|
||||
Render(screen, root);
|
||||
TEST(HBoxTest, FlexGrow_NoFlex_NoFlex) {
|
||||
auto root = hbox({
|
||||
text(L"012") | flex_grow,
|
||||
text(L"abc"),
|
||||
text(L"ABC"),
|
||||
});
|
||||
|
||||
EXPECT_EQ("text_1text", screen.ToString());
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"0aA", //
|
||||
"01aA", //
|
||||
"01abA", //
|
||||
"01abAB", //
|
||||
"012abAB", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012 abcABC", //
|
||||
"012 abcABC", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, ScreenFit) {
|
||||
auto root = hbox(text(L"text_1"), text(L"text_2"));
|
||||
Screen screen(12, 1);
|
||||
Render(screen, root);
|
||||
TEST(HBoxTest, NoFlex_FlexGrow_NoFlex) {
|
||||
auto root = hbox({
|
||||
text(L"012"),
|
||||
text(L"abc") | flex_grow,
|
||||
text(L"ABC"),
|
||||
});
|
||||
|
||||
EXPECT_EQ("text_1text_2", screen.ToString());
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"0aA", //
|
||||
"01aA", //
|
||||
"01abA", //
|
||||
"01abAB", //
|
||||
"012abAB", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012abc ABC", //
|
||||
"012abc ABC", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, ScreenBigger1) {
|
||||
auto root = hbox(text(L"text_1"), text(L"text_2"));
|
||||
Screen screen(13, 1);
|
||||
Render(screen, root);
|
||||
TEST(HBoxTest, NoFlex_NoFlex_FlexGrow) {
|
||||
auto root = hbox({
|
||||
text(L"012"),
|
||||
text(L"abc"),
|
||||
text(L"ABC") | flex_grow,
|
||||
});
|
||||
|
||||
EXPECT_EQ("text_1text_2 ", screen.ToString());
|
||||
}
|
||||
TEST(HBoxTest, ScreenBigger2) {
|
||||
auto root = hbox(text(L"text_1"), text(L"text_2"));
|
||||
Screen screen(14, 1);
|
||||
Render(screen, root);
|
||||
|
||||
EXPECT_EQ("text_1text_2 ", screen.ToString());
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"0aA", //
|
||||
"01aA", //
|
||||
"01abA", //
|
||||
"01abAB", //
|
||||
"012abAB", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
"012abcABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, ScreenSmaller1Flex) {
|
||||
auto root = hbox(text(L"text_1"), filler(), text(L"text_2"));
|
||||
Screen screen(11, 1);
|
||||
Render(screen, root);
|
||||
TEST(HBoxTest, FlexGrow_NoFlex_FlexGrow) {
|
||||
auto root = hbox({
|
||||
text(L"012") | flex_grow,
|
||||
text(L"abc"),
|
||||
text(L"ABC") | flex_grow,
|
||||
});
|
||||
|
||||
EXPECT_EQ("text_text_2", screen.ToString());
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"0aA", //
|
||||
"01aA", //
|
||||
"01abA", //
|
||||
"01abAB", //
|
||||
"012abAB", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
"012 abcABC ", //
|
||||
"012 abcABC ", //
|
||||
"012 abcABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, ScreenSmaller2Flex) {
|
||||
auto root = hbox(text(L"text_1"), filler(), text(L"text_2"));
|
||||
Screen screen(10, 1);
|
||||
Render(screen, root);
|
||||
TEST(HBoxTest, FlexGrow_FlexGrow_FlexGrow) {
|
||||
auto root = hbox({
|
||||
text(L"012") | flex_grow,
|
||||
text(L"abc") | flex_grow,
|
||||
text(L"ABC") | flex_grow,
|
||||
});
|
||||
|
||||
EXPECT_EQ("texttext_2", screen.ToString());
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"0aA", //
|
||||
"01aA", //
|
||||
"01abA", //
|
||||
"01abAB", //
|
||||
"012abAB", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
"012abc ABC ", //
|
||||
"012 abc ABC ", //
|
||||
"012 abc ABC ", //
|
||||
"012 abc ABC ", //
|
||||
"012 abc ABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, ScreenFitFlex) {
|
||||
auto root = hbox(text(L"text_1"), filler(), text(L"text_2"));
|
||||
Screen screen(12, 1);
|
||||
Render(screen, root);
|
||||
// ------
|
||||
|
||||
EXPECT_EQ("text_1text_2", screen.ToString());
|
||||
TEST(HBoxTest, FlexShrink_NoFlex_NoFlex) {
|
||||
auto root = hbox({
|
||||
text(L"012") | flex_shrink,
|
||||
text(L"abc"),
|
||||
text(L"ABC"),
|
||||
});
|
||||
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"a", //
|
||||
"aA", //
|
||||
"abA", //
|
||||
"abAB", //
|
||||
"abcAB", //
|
||||
"abcABC", //
|
||||
"0abcABC", //
|
||||
"01abcABC", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
"012abcABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, ScreenBigger1Flex) {
|
||||
auto root = hbox(text(L"text_1"), filler(), text(L"text_2"));
|
||||
Screen screen(13, 1);
|
||||
Render(screen, root);
|
||||
TEST(HBoxTest, NoFlex_FlexShrink_NoFlex) {
|
||||
auto root = hbox({
|
||||
text(L"012"),
|
||||
text(L"abc") | flex_shrink,
|
||||
text(L"ABC"),
|
||||
});
|
||||
|
||||
EXPECT_EQ("text_1 text_2", screen.ToString());
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0A", //
|
||||
"01A", //
|
||||
"01AB", //
|
||||
"012AB", //
|
||||
"012ABC", //
|
||||
"012aABC", //
|
||||
"012abABC", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
"012abcABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, ScreenBigger2Flex) {
|
||||
auto root = hbox(text(L"text_1"), filler(), text(L"text_2"));
|
||||
Screen screen(14, 1);
|
||||
Render(screen, root);
|
||||
TEST(HBoxTest, NoFlex_NoFlex_FlexShrink) {
|
||||
auto root = hbox({
|
||||
text(L"012"),
|
||||
text(L"abc"),
|
||||
text(L"ABC") | flex_shrink,
|
||||
});
|
||||
|
||||
EXPECT_EQ("text_1 text_2", screen.ToString());
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"01a", //
|
||||
"01ab", //
|
||||
"012ab", //
|
||||
"012abc", //
|
||||
"012abcA", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
"012abcABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, FlexShrink_NoFlex_FlexShrink) {
|
||||
auto root = hbox({
|
||||
text(L"012") | flex_shrink,
|
||||
text(L"abc"),
|
||||
text(L"ABC") | flex_shrink,
|
||||
});
|
||||
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"a", //
|
||||
"ab", //
|
||||
"abc", //
|
||||
"0abc", //
|
||||
"0abcA", //
|
||||
"01abcA", //
|
||||
"01abcAB", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, FlexShrink_FlexShrink_FlexShrink) {
|
||||
auto root = hbox({
|
||||
text(L"012") | flex_shrink,
|
||||
text(L"abc") | flex_shrink,
|
||||
text(L"ABC") | flex_shrink,
|
||||
});
|
||||
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"0aA", //
|
||||
"01aA", //
|
||||
"01abA", //
|
||||
"01abAB", //
|
||||
"012abAB", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012abcABC ", //
|
||||
"012abcABC ", //
|
||||
"012abcABC ", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
TEST(HBoxTest, FlexGrow_NoFlex_FlewShrink) {
|
||||
auto root = hbox({
|
||||
text(L"012") | flex_grow,
|
||||
text(L"abc"),
|
||||
text(L"ABC") | flex_shrink,
|
||||
});
|
||||
|
||||
std::vector<std::string> expectations = {
|
||||
"", //
|
||||
"0", //
|
||||
"0a", //
|
||||
"01a", //
|
||||
"01ab", //
|
||||
"012ab", //
|
||||
"012abc", //
|
||||
"012abcA", //
|
||||
"012abcAB", //
|
||||
"012abcABC", //
|
||||
"012 abcABC", //
|
||||
"012 abcABC", //
|
||||
"012 abcABC", //
|
||||
};
|
||||
for (int i = 0; i < expectations.size(); ++i) {
|
||||
Screen screen(i, 1);
|
||||
Render(screen, root);
|
||||
EXPECT_EQ(expectations[i], screen.ToString());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user