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
|
/* Copyright 2019 Pierre Ossman <ossman@cendio.se> for Cendio AB
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#include <stdio.h>
#include <rfb/util.h>
static const char* escape(const char* input)
{
static char output[4096];
const char* in;
char* out;
in = input;
out = output;
do {
if (*in == '\r') {
*out++ = '\\';
*out++ = 'r';
} else if (*in == '\n') {
*out++ = '\\';
*out++ = 'n';
} else {
*out++ = *in;
}
} while (*in++ != '\0');
return output;
}
static void testLF(const char* input, const char* expected)
{
char* output;
printf("convertLF(\"%s\"): ", escape(input));
output = rfb::convertLF(input);
if (strcmp(output, expected) != 0)
printf("FAILED: got \"%s\"", escape(output));
else
printf("OK");
printf("\n");
fflush(stdout);
rfb::strFree(output);
}
static void testCRLF(const char* input, const char* expected)
{
char* output;
printf("convertCRLF(\"%s\"): ", escape(input));
output = rfb::convertCRLF(input);
if (strcmp(output, expected) != 0)
printf("FAILED: got \"%s\"", escape(output));
else
printf("OK");
printf("\n");
fflush(stdout);
rfb::strFree(output);
}
int main(int argc, char** argv)
{
testLF("", "");
testLF("no EOL", "no EOL");
testLF("\n", "\n");
testLF("already correct\n", "already correct\n");
testLF("multiple\nlines\n", "multiple\nlines\n");
testLF("empty lines\n\n", "empty lines\n\n");
testLF("\ninitial line", "\ninitial line");
testLF("\r\n", "\n");
testLF("one line\r\n", "one line\n");
testLF("multiple\r\nlines\r\n", "multiple\nlines\n");
testLF("empty lines\r\n\r\n", "empty lines\n\n");
testLF("\r\ninitial line", "\ninitial line");
testLF("mixed\r\nlines\n", "mixed\nlines\n");
testLF("cropped\r", "cropped\n");
testLF("old\rmac\rformat", "old\nmac\nformat");
testCRLF("", "");
testCRLF("no EOL", "no EOL");
testCRLF("\r\n", "\r\n");
testCRLF("already correct\r\n", "already correct\r\n");
testCRLF("multiple\r\nlines\r\n", "multiple\r\nlines\r\n");
testCRLF("empty lines\r\n\r\n", "empty lines\r\n\r\n");
testCRLF("\r\ninitial line", "\r\ninitial line");
testCRLF("\n", "\r\n");
testCRLF("one line\n", "one line\r\n");
testCRLF("multiple\nlines\n", "multiple\r\nlines\r\n");
testCRLF("empty lines\n\n", "empty lines\r\n\r\n");
testCRLF("\ninitial line", "\r\ninitial line");
testCRLF("mixed\r\nlines\n", "mixed\r\nlines\r\n");
testCRLF("cropped\r", "cropped\r\n");
testCRLF("old\rmac\rformat", "old\r\nmac\r\nformat");
return 0;
}
|