1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
#include <textviewwidget.h>
#include <vector>
#include "3rd-party/catch.hpp"
#include "listformatter.h"
#include "stflpp.h"
using namespace newsboat;
namespace {
const static std::string stflTextviewForm =
"vbox\n"
" textview[textview-name]\n"
" .expand:0\n"
" offset[textview-name_offset]:0\n"
" richtext:1\n"
" height:5\n";
const static std::string widgetName = "textview-name";
void add_lines(ListFormatter& listfmt, std::vector<std::string> lines)
{
for (const auto& line : lines) {
listfmt.add_line(StflRichText::from_plaintext(line));
}
}
}
TEST_CASE("stfl_replace_lines() keeps text in view", "[TextviewWidget]")
{
Stfl::Form form(stflTextviewForm);
TextviewWidget widget(widgetName, form);
REQUIRE(widget.get_scroll_offset() == 0);
ListFormatter listfmt;
add_lines(listfmt, {
"one",
"two",
"three",
});
widget.stfl_replace_lines(listfmt.get_lines_count(), listfmt.format_list());
widget.set_scroll_offset(2);
REQUIRE(widget.get_scroll_offset() == 2);
SECTION("emptying textview results in scroll to top") {
listfmt.clear();
widget.stfl_replace_lines(listfmt.get_lines_count(), listfmt.format_list());
REQUIRE(widget.get_scroll_offset() == 0);
}
SECTION("widget scrolls upwards if lines are removed") {
listfmt.clear();
add_lines(listfmt, {
"one",
"two",
});
widget.stfl_replace_lines(listfmt.get_lines_count(), listfmt.format_list());
REQUIRE(widget.get_scroll_offset() == 1);
}
SECTION("no change in scroll location when adding lines") {
add_lines(listfmt, {
"four",
"five",
});
widget.stfl_replace_lines(listfmt.get_lines_count(), listfmt.format_list());
REQUIRE(widget.get_scroll_offset() == 2);
}
}
TEST_CASE("Basic movements work as expected", "[TextviewWidget]")
{
Stfl::Form form(stflTextviewForm);
TextviewWidget widget(widgetName, form);
// Recalculate widget dimensions (updates effective width/height fields of textview)
form.run(-3);
// Exit STFL's application mode to make errors show up in regular terminal output
Stfl::reset();
REQUIRE(widget.get_height() == 5);
REQUIRE(widget.get_scroll_offset() == 0);
ListFormatter listfmt;
add_lines(listfmt, {
"one",
"two",
"three",
"four",
"five",
"six",
"seven",
"eight",
"nine",
"ten",
});
widget.stfl_replace_lines(listfmt.get_lines_count(), listfmt.format_list());
widget.set_scroll_offset(2);
REQUIRE(widget.get_scroll_offset() == 2);
SECTION("scroll_up() scrolls up a single line") {
widget.scroll_up();
REQUIRE(widget.get_scroll_offset() == 1);
widget.scroll_up();
REQUIRE(widget.get_scroll_offset() == 0);
}
SECTION("scroll_down() scrolls down a single line") {
widget.scroll_down();
REQUIRE(widget.get_scroll_offset() == 3);
widget.scroll_down();
REQUIRE(widget.get_scroll_offset() == 4);
}
SECTION("scroll_to_top() moves scroll location to first line") {
widget.scroll_to_top();
REQUIRE(widget.get_scroll_offset() == 0);
}
SECTION("scroll_to_bottom() moves scroll location to last line") {
widget.scroll_to_bottom();
// Scroll offset is set in such a way that one line past the end is visible at the bottom. Required scroll offset depends on the height of the textview (hardcoded: 5 lines)
// Given 10 items in the list, scroll offset 6 shows line seven as first line, followed by eight, nine, ten, and an empty line.
REQUIRE(widget.get_scroll_offset() == 6);
}
SECTION("scroll_page_up() moves up just enough such that there is a single line of overlap between old and new view") {
widget.set_scroll_offset(6);
REQUIRE(widget.get_scroll_offset() == 6);
widget.scroll_page_up();
REQUIRE(widget.get_scroll_offset() == 2);
widget.scroll_page_up();
REQUIRE(widget.get_scroll_offset() == 0);
}
SECTION("scroll_page_down() moves down just enough such that there is a single line of overlap between old and new view") {
widget.set_scroll_offset(3);
REQUIRE(widget.get_scroll_offset() == 3);
widget.scroll_page_down();
REQUIRE(widget.get_scroll_offset() == 7);
widget.scroll_page_down();
REQUIRE(widget.get_scroll_offset() == 9);
}
SECTION("scroll_halfpage_up() moves up by half of the screen height") {
widget.set_scroll_offset(5);
REQUIRE(widget.get_scroll_offset() == 5);
widget.scroll_halfpage_up();
REQUIRE(widget.get_scroll_offset() == 2);
widget.scroll_halfpage_up();
REQUIRE(widget.get_scroll_offset() == 0);
}
SECTION("scroll_halfpage_down() moves down by half of the screen height") {
widget.set_scroll_offset(4);
REQUIRE(widget.get_scroll_offset() == 4);
widget.scroll_halfpage_down();
REQUIRE(widget.get_scroll_offset() == 7);
widget.scroll_halfpage_down();
REQUIRE(widget.get_scroll_offset() == 9);
}
}
|