notcurses/tests/notcurses.cpp

60 lines
1.2 KiB
C++
Raw Normal View History

#include <string>
#include <cstdlib>
2019-11-17 14:53:59 +00:00
#include <notcurses.h>
#include "main.h"
2019-11-19 01:57:33 +00:00
class NotcursesTest : public :: testing::Test {
2019-11-19 10:33:38 +00:00
protected:
2019-11-19 01:57:33 +00:00
void SetUp() override {
if(getenv("TERM") == nullptr){
GTEST_SKIP();
}
notcurses_options nopts{};
nopts.outfd = STDIN_FILENO;
nc_ = notcurses_init(&nopts);
ASSERT_NE(nullptr, nc_);
2019-11-19 01:57:33 +00:00
}
2019-11-19 10:33:38 +00:00
2019-11-23 17:28:42 +00:00
void TearDown() override {
if(nc_){
EXPECT_EQ(0, notcurses_stop(nc_));
}
}
2019-11-19 10:33:38 +00:00
struct notcurses* nc_;
2019-11-19 01:57:33 +00:00
};
TEST_F(NotcursesTest, BasicLifetime) {
}
2019-11-19 01:57:33 +00:00
TEST_F(NotcursesTest, TermDimensions) {
int x, y;
2019-11-21 13:19:14 +00:00
notcurses_term_dimyx(nc_, &y, &x);
auto stry = getenv("LINES");
if(stry){
auto envy = std::stoi(stry, nullptr);
EXPECT_EQ(envy, y);
}
auto strx = getenv("COLUMNS");
if(stry){
auto envx = std::stoi(strx, nullptr);
EXPECT_EQ(envx, x);
}
2019-11-17 14:53:59 +00:00
}
2019-11-21 11:38:21 +00:00
TEST_F(NotcursesTest, ResizeSameSize) {
int x, y;
2019-11-21 13:19:14 +00:00
notcurses_term_dimyx(nc_, &y, &x);
2019-11-21 11:38:21 +00:00
EXPECT_EQ(0, notcurses_resize(nc_));
int newx, newy;
2019-11-21 13:19:14 +00:00
notcurses_term_dimyx(nc_, &newy, &newx);
2019-11-21 11:38:21 +00:00
EXPECT_EQ(newx, x);
EXPECT_EQ(newy, y);
}
// we should at least have WA_STANDOUT everywhere, i should think?
TEST_F(NotcursesTest, CursesStyles) {
unsigned attrs = notcurses_supported_styles(nc_);
EXPECT_EQ(1, !!(WA_STANDOUT & attrs));
}