mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
237 lines
7.6 KiB
C++
237 lines
7.6 KiB
C++
#include "main.h"
|
|
#include "internal.h"
|
|
|
|
TEST_CASE("TextLayout") {
|
|
auto nc_ = testing_notcurses();
|
|
if(!nc_){
|
|
return;
|
|
}
|
|
ncplane* ncp_ = notcurses_stdplane(nc_);
|
|
REQUIRE(ncp_);
|
|
|
|
const char str[] = "this is going to be broken up";
|
|
|
|
SUBCASE("LayoutLeft") {
|
|
auto sp = ncplane_new(nc_, 2, 20, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_LEFT, str, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(str));
|
|
char* line = ncplane_contents(sp, 0, 0, 2, 20);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "this is going to bebroken up"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
SUBCASE("LayoutRight") {
|
|
auto sp = ncplane_new(nc_, 2, 20, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_RIGHT, str, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(str));
|
|
char* line = ncplane_contents(sp, 0, 0, 2, 20);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "this is going to bebroken up"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
SUBCASE("LayoutCenter") {
|
|
auto sp = ncplane_new(nc_, 2, 20, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_CENTER, str, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(str));
|
|
char* line = ncplane_contents(sp, 0, 0, 2, 20);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "this is going to bebroken up"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
// lay out text where a word ends on the boundary
|
|
SUBCASE("LayoutOnBoundary") {
|
|
auto sp = ncplane_new(nc_, 2, 10, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "my nuclear arms";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_CENTER, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "my nucleararms"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
// lay out text where a word crosses the boundary
|
|
SUBCASE("LayoutCrossBoundary") {
|
|
auto sp = ncplane_new(nc_, 3, 10, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "my grasping arms";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_CENTER, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "mygraspingarms"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
// lay out text where a word is longer than the plane
|
|
SUBCASE("LayoutTransPlanar") {
|
|
auto sp = ncplane_new(nc_, 3, 10, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "my thermonuclear arms";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_CENTER, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
// FIXME i think i'd prefer that this printed what it could of thermo
|
|
// on the first line, and continued it on the second, since it has to
|
|
// break the word anyway...then we'd get "my thermonuclear arms"
|
|
CHECK(0 == strcmp(line, "mythermonuclear arms"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
// lay out text where a word is longer than the plane
|
|
SUBCASE("LayoutTransPlanar") {
|
|
auto sp = ncplane_new(nc_, 3, 10, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "my thermonuclear arms";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_CENTER, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "mythermonuclear arms"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
SUBCASE("LayoutLeadingSpaces") {
|
|
auto sp = ncplane_new(nc_, 3, 10, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = " \t\n my thermonuclear arms";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_CENTER, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "mythermonuclear arms"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
// create a plane of a single row, and fill it exactly with one word
|
|
SUBCASE("LayoutFills1DPlane") {
|
|
auto sp = ncplane_new(nc_, 1, 14, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "quarkgluonfart";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_LEFT, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "quarkgluonfart"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
// create a plane of a single row, and fill it exactly with words
|
|
SUBCASE("LayoutFills1DPlaneWords") {
|
|
auto sp = ncplane_new(nc_, 1, 16, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "quark gluon fart";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_LEFT, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "quark gluon fart"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
// create a plane of two rows, and exactly fill the first line
|
|
SUBCASE("LayoutFillsSingleLine") {
|
|
auto sp = ncplane_new(nc_, 2, 13, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "quantum balls";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_LEFT, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "quantum balls"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
// create a plane of two rows, and exactly fill both
|
|
SUBCASE("LayoutFillsPlane") {
|
|
auto sp = ncplane_new(nc_, 2, 13, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "quantum balls scratchy no?!";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_LEFT, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "quantum ballsscratchy no?!"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
SUBCASE("LayoutLongNoScroll") {
|
|
auto sp = ncplane_new(nc_, 2, 13, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
size_t bytes;
|
|
const char boundstr[] = "quantum balls scratchy no?! truly! arrrrp";
|
|
int res = ncplane_puttext(sp, 0, NCALIGN_LEFT, boundstr, &bytes);
|
|
CHECK(0 > res);
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes < strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "quantum ballsscratchy no?!"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
SUBCASE("LayoutLongScroll") {
|
|
auto sp = ncplane_new(nc_, 2, 13, 0, 0, nullptr);
|
|
REQUIRE(sp);
|
|
ncplane_set_scrolling(sp, true);
|
|
size_t bytes;
|
|
const char boundstr[] = "quantum balls scratchy?! true! arrrrp";
|
|
CHECK(0 < ncplane_puttext(sp, 0, NCALIGN_LEFT, boundstr, &bytes));
|
|
CHECK(0 == notcurses_render(nc_));
|
|
CHECK(bytes == strlen(boundstr));
|
|
char* line = ncplane_contents(sp, 0, 0, -1, -1);
|
|
REQUIRE(line);
|
|
CHECK(0 == strcmp(line, "scratchy?!true! arrrrp"));
|
|
free(line);
|
|
ncplane_destroy(sp);
|
|
}
|
|
|
|
CHECK(0 == notcurses_stop(nc_));
|
|
|
|
}
|