notcurses/tests/reader.cpp

50 lines
1.2 KiB
C++
Raw Normal View History

2020-05-07 19:06:07 +00:00
#include "main.h"
#include <cstring>
#include <iostream>
TEST_CASE("Readers") {
auto nc_ = testing_notcurses();
if(!nc_){
return;
}
2020-05-07 19:06:07 +00:00
int dimx, dimy;
struct ncplane* n_ = notcurses_stddim_yx(nc_, &dimy, &dimx);
REQUIRE(n_);
REQUIRE(0 == ncplane_cursor_move_yx(n_, 0, 0));
SUBCASE("ReaderBadOptions") {
ncreader_options opts{};
2020-05-09 12:41:19 +00:00
auto nr = ncreader_create(n_, 0, 0, &opts);
CHECK(!nr);
opts.physrows = 1;
2020-05-09 12:41:19 +00:00
nr = ncreader_create(n_, 0, 0, &opts);
CHECK(!nr);
opts.physcols = 1;
opts.physrows = 0;
2020-05-09 12:41:19 +00:00
nr = ncreader_create(n_, 0, 0, &opts);
CHECK(!nr);
}
SUBCASE("ReaderRender") {
ncreader_options opts{};
2020-05-08 20:16:24 +00:00
opts.physrows = dimy / 2;
opts.physcols = dimx / 2;
if(enforce_utf8()){
opts.egc = strdup("");
}else{
opts.egc = strdup("x");
}
2020-05-09 12:41:19 +00:00
auto nr = ncreader_create(n_, 0, 0, &opts);
2020-05-07 19:06:07 +00:00
REQUIRE(nullptr != nr);
2020-05-08 20:16:24 +00:00
channels_set_fg(&opts.echannels, 0xff44ff);
ncplane_set_base(n_, opts.egc, opts.eattrword, opts.echannels);
CHECK(0 == notcurses_render(nc_));
2020-05-09 01:30:45 +00:00
char* contents = nullptr;
2020-05-08 20:16:24 +00:00
ncreader_destroy(nr, &contents);
REQUIRE(contents);
2020-05-07 19:06:07 +00:00
CHECK(0 == notcurses_render(nc_));
}
CHECK(0 == notcurses_stop(nc_));
}