mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
e6637e81cc
* CMake: add USE_PANDOC, USE_DOXYGEN options #101 * README: mention rust * start integrating rust into build #101 * CMake: add USE_NETWORK option for cargo * Debian: build-dep on doxygen * rust: colloquy checks in Cargo.lock * extract NCKEY defines into their own include * colloquy: use clap to parse CLI args * CMake: unify option namespace * Python: update include path * Rust: fix up --frozen workings for -DUSE_NETWORK=off * CMake: abstract out colloquy a little * Sync direct.hh to the New Way
120 lines
3.5 KiB
C++
120 lines
3.5 KiB
C++
#include "main.h"
|
|
|
|
TEST_CASE("Palette256") {
|
|
// common initialization
|
|
if(getenv("TERM") == nullptr){
|
|
return;
|
|
}
|
|
if(!enforce_utf8()){
|
|
return;
|
|
}
|
|
FILE* outfp_{};
|
|
outfp_ = fopen("/dev/tty", "wb");
|
|
REQUIRE(nullptr != outfp_);
|
|
notcurses_options nopts{};
|
|
nopts.inhibit_alternate_screen = true;
|
|
nopts.suppress_banner = true;
|
|
struct notcurses* nc_ = notcurses_init(&nopts, outfp_);
|
|
REQUIRE(nc_);
|
|
struct ncplane* n_ = notcurses_stdplane(nc_);
|
|
REQUIRE(n_);
|
|
|
|
SUBCASE("AllocAndFree") {
|
|
palette256* p = palette256_new(nc_);
|
|
REQUIRE(nullptr != p);
|
|
palette256_free(p);
|
|
}
|
|
|
|
SUBCASE("SetIndexZero") {
|
|
palette256* p = palette256_new(nc_);
|
|
REQUIRE(nullptr != p);
|
|
palette256_set_rgb(p, 0, 0x80, 0x90, 0xa0);
|
|
unsigned r, g, b;
|
|
palette256_get_rgb(p, 0, &r, &g, &b);
|
|
CHECK(r == 0x80);
|
|
CHECK(g == 0x90);
|
|
CHECK(b == 0xa0);
|
|
palette256_free(p);
|
|
}
|
|
|
|
SUBCASE("SetIndex255") {
|
|
palette256* p = palette256_new(nc_);
|
|
REQUIRE(nullptr != p);
|
|
palette256_set_rgb(p, 255, 0xa0, 0x70, 0x50);
|
|
unsigned r, g, b;
|
|
palette256_get_rgb(p, 255, &r, &g, &b);
|
|
CHECK(r == 0xa0);
|
|
CHECK(g == 0x70);
|
|
CHECK(b == 0x50);
|
|
palette256_free(p);
|
|
}
|
|
|
|
// when we set a palette index, it ought change us from using default
|
|
SUBCASE("FAttributes") {
|
|
cell c = CELL_TRIVIAL_INITIALIZER;
|
|
CHECK(cell_fg_default_p(&c));
|
|
cell_set_fg_alpha(&c, CELL_ALPHA_TRANSPARENT);
|
|
CHECK(0 == cell_set_fg_palindex(&c, 0x20));
|
|
CHECK(!cell_fg_default_p(&c));
|
|
CHECK(cell_fg_palindex_p(&c));
|
|
CHECK(CELL_ALPHA_OPAQUE == cell_fg_alpha(&c));
|
|
CHECK(0x20 == cell_fg_palindex(&c));
|
|
}
|
|
|
|
SUBCASE("BAttributes") {
|
|
cell c = CELL_TRIVIAL_INITIALIZER;
|
|
CHECK(cell_bg_default_p(&c));
|
|
cell_set_bg_alpha(&c, CELL_ALPHA_TRANSPARENT);
|
|
CHECK(0 == cell_set_bg_palindex(&c, 0x20));
|
|
CHECK(!cell_bg_default_p(&c));
|
|
CHECK(cell_bg_palindex_p(&c));
|
|
CHECK(CELL_ALPHA_OPAQUE == cell_bg_alpha(&c));
|
|
CHECK(0x20 == cell_bg_palindex(&c));
|
|
}
|
|
|
|
// write it to an ncplane, and verify attributes via reflection
|
|
SUBCASE("PutCAttrs") {
|
|
cell c = CELL_TRIVIAL_INITIALIZER;
|
|
cell_load_simple(n_, &c, 'X');
|
|
CHECK(0 == cell_set_fg_palindex(&c, 0x20));
|
|
CHECK(0 == cell_set_bg_palindex(&c, 0x40));
|
|
CHECK(0 < ncplane_putc_yx(n_, 0, 0, &c));
|
|
cell_release(n_, &c);
|
|
cell r = CELL_TRIVIAL_INITIALIZER;
|
|
CHECK(0 < ncplane_at_yx(n_, 0, 0, &r));
|
|
CHECK(cell_fg_palindex_p(&r));
|
|
CHECK(cell_bg_palindex_p(&r));
|
|
CHECK(CELL_ALPHA_OPAQUE == cell_fg_alpha(&r));
|
|
CHECK(CELL_ALPHA_OPAQUE == cell_bg_alpha(&r));
|
|
CHECK(0x20 == cell_fg_palindex(&r));
|
|
CHECK(0x40 == cell_bg_palindex(&r));
|
|
cell_release(n_, &r);
|
|
}
|
|
|
|
SUBCASE("RenderCAttrs") {
|
|
cell c = CELL_TRIVIAL_INITIALIZER;
|
|
cell_load_simple(n_, &c, 'X');
|
|
CHECK(0 == cell_set_fg_palindex(&c, 0x20));
|
|
CHECK(0 == cell_set_bg_palindex(&c, 0x40));
|
|
CHECK(0 == ncplane_set_fg_palindex(n_, 0x20));
|
|
CHECK(0 == ncplane_set_bg_palindex(n_, 0x40));
|
|
CHECK(0 < ncplane_putc_yx(n_, 0, 0, &c));
|
|
cell_release(n_, &c);
|
|
CHECK(0 == notcurses_render(nc_));
|
|
cell r = CELL_TRIVIAL_INITIALIZER;
|
|
CHECK(nullptr != notcurses_at_yx(nc_, 0, 0, &r));
|
|
CHECK(cell_fg_palindex_p(&r));
|
|
CHECK(cell_bg_palindex_p(&r));
|
|
CHECK(CELL_ALPHA_OPAQUE == cell_fg_alpha(&r));
|
|
CHECK(CELL_ALPHA_OPAQUE == cell_bg_alpha(&r));
|
|
CHECK(0x20 == cell_fg_palindex(&r));
|
|
CHECK(0x40 == cell_bg_palindex(&r));
|
|
cell_release(n_, &r);
|
|
}
|
|
|
|
// common teardown
|
|
CHECK(0 == notcurses_stop(nc_));
|
|
CHECK(0 == fclose(outfp_));
|
|
}
|
|
|