blob: 38ce468eeeb3a4b8ad8aa4d7c0bdee119bfdf090 (
plain)
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
|
#include "assert.h"
#include "test.h"
#include "buffer.h"
#include <string.h>
void test_move() {
struct buffer b = buffer_create("test-buffer", false);
ASSERT(b.dot.col == 0 && b.dot.line == 0,
"Expected dot to be at buffer start");
// make sure we cannot move now
buffer_backward_char(&b);
buffer_backward_line(&b);
ASSERT(b.dot.col == 0 && b.dot.line == 0,
"Expected to not be able to move backward in empty buffer");
buffer_forward_char(&b);
buffer_forward_line(&b);
ASSERT(b.dot.col == 0 && b.dot.line == 0,
"Expected to not be able to move forward in empty buffer");
// add some text and try again
const char *txt = "testing movement";
int lineindex = buffer_add_text(&b, (uint8_t *)txt, strlen(txt));
ASSERT(lineindex + 1 == 1, "Expected buffer to have one line");
buffer_beginning_of_line(&b);
buffer_forward_char(&b);
ASSERT(b.dot.col == 1 && b.dot.line == 0,
"Expected to be able to move forward by one char");
// now we have two lines
const char *txt2 = "\n";
int lineindex2 = buffer_add_text(&b, (uint8_t *)txt2, strlen(txt2));
ASSERT(lineindex2 + 1 == 2, "Expected buffer to have two lines");
buffer_backward_line(&b);
buffer_beginning_of_line(&b);
buffer_backward_char(&b);
ASSERT(
b.dot.col == 0 && b.dot.line == 0,
"Expected to not be able to move backwards when at beginning of buffer");
buffer_destroy(&b);
}
void run_buffer_tests() { run_test(test_move); }
|