You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/tests/ncplane.cpp

77 lines
2.3 KiB
C++

#include <notcurses.h>
#include "main.h"
class NcplaneTest : public :: testing::Test {
protected:
void SetUp() override {
if(getenv("TERM") == nullptr){
GTEST_SKIP();
}
notcurses_options nopts{};
nopts.outfd = STDIN_FILENO;
nc_ = notcurses_init(&nopts);
ASSERT_NE(nullptr, nc_);
n_ = notcurses_stdplane(nc_);
ASSERT_NE(nullptr, n_);
}
void TearDown() override {
EXPECT_EQ(0, notcurses_stop(nc_));
}
struct notcurses* nc_;
struct ncplane* n_;
};
// Dimensions of the standard plane ought be the same as those of the context
TEST_F(NcplaneTest, StdPlaneDimensions) {
int cols, rows;
notcurses_term_dimensions(nc_, &rows, &cols);
int ncols, nrows;
ncplane_dimensions(n_, &nrows, &ncols);
EXPECT_EQ(rows, nrows);
EXPECT_EQ(cols, ncols);
}
// Verify that we can move to all four coordinates of the standard plane
TEST_F(NcplaneTest, MoveStdPlaneDimensions) {
int cols, rows;
notcurses_term_dimensions(nc_, &rows, &cols);
EXPECT_EQ(0, ncplane_move(n_, 0, 0));
EXPECT_EQ(0, ncplane_move(n_, cols - 1, 0));
EXPECT_EQ(0, ncplane_move(n_, cols - 1, rows - 1));
EXPECT_EQ(0, ncplane_move(n_, 0, rows - 1));
}
// Verify that we can move to all four coordinates of the standard plane
TEST_F(NcplaneTest, MoveBeyondPlaneFails) {
int cols, rows;
notcurses_term_dimensions(nc_, &rows, &cols);
EXPECT_NE(0, ncplane_move(n_, -1, 0));
EXPECT_NE(0, ncplane_move(n_, -1, -1));
EXPECT_NE(0, ncplane_move(n_, 0, -1));
EXPECT_NE(0, ncplane_move(n_, cols - 1, -1));
EXPECT_NE(0, ncplane_move(n_, cols, 0));
EXPECT_NE(0, ncplane_move(n_, cols + 1, 0));
EXPECT_NE(0, ncplane_move(n_, cols, rows));
EXPECT_NE(0, ncplane_move(n_, -1, rows - 1));
EXPECT_NE(0, ncplane_move(n_, 0, rows));
EXPECT_NE(0, ncplane_move(n_, 0, rows + 1));
}
TEST_F(NcplaneTest, SetPlaneRGB) {
EXPECT_EQ(0, ncplane_fg_rgb8(n_, 0, 0, 0));
EXPECT_EQ(0, ncplane_fg_rgb8(n_, 255, 255, 255));
}
TEST_F(NcplaneTest, RejectBadRGB) {
EXPECT_NE(0, ncplane_fg_rgb8(n_, -1, 0, 0));
EXPECT_NE(0, ncplane_fg_rgb8(n_, 0, -1, 0));
EXPECT_NE(0, ncplane_fg_rgb8(n_, 0, 0, -1));
EXPECT_NE(0, ncplane_fg_rgb8(n_, -1, -1, -1));
EXPECT_NE(0, ncplane_fg_rgb8(n_, 256, 255, 255));
EXPECT_NE(0, ncplane_fg_rgb8(n_, 255, 256, 255));
EXPECT_NE(0, ncplane_fg_rgb8(n_, 255, 255, 256));
EXPECT_NE(0, ncplane_fg_rgb8(n_, 256, 256, 256));
}