mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
#include "main.h"
|
|
#include <cstring>
|
|
#include <iostream>
|
|
|
|
TEST_CASE("Readers") {
|
|
if(getenv("TERM") == nullptr){
|
|
return;
|
|
}
|
|
notcurses_options nopts{};
|
|
nopts.suppress_banner = true;
|
|
FILE* outfp_ = fopen("/dev/tty", "wb");
|
|
REQUIRE(outfp_);
|
|
struct notcurses* nc_ = notcurses_init(&nopts, outfp_);
|
|
REQUIRE(nc_);
|
|
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{};
|
|
auto nr = ncreader_create(n_, 0, 0, &opts);
|
|
CHECK(!nr);
|
|
opts.physrows = 1;
|
|
nr = ncreader_create(n_, 0, 0, &opts);
|
|
CHECK(!nr);
|
|
opts.physcols = 1;
|
|
opts.physrows = 0;
|
|
nr = ncreader_create(n_, 0, 0, &opts);
|
|
CHECK(!nr);
|
|
}
|
|
|
|
SUBCASE("ReaderRender") {
|
|
ncreader_options opts{};
|
|
opts.physrows = dimy / 2;
|
|
opts.physcols = dimx / 2;
|
|
opts.egc = strdup("▒");
|
|
auto nr = ncreader_create(n_, 0, 0, &opts);
|
|
REQUIRE(nullptr != nr);
|
|
channels_set_fg(&opts.echannels, 0xff44ff);
|
|
ncplane_set_base(n_, opts.egc, opts.eattrword, opts.echannels);
|
|
CHECK(0 == notcurses_render(nc_));
|
|
char* contents = nullptr;
|
|
ncreader_destroy(nr, &contents);
|
|
REQUIRE(contents);
|
|
CHECK(0 == notcurses_render(nc_));
|
|
}
|
|
|
|
CHECK(0 == notcurses_stop(nc_));
|
|
CHECK(0 == fclose(outfp_));
|
|
}
|