aboutsummaryrefslogtreecommitdiffstats
path: root/tests/blogc-git-receiver/check_shell_command_parser.c
blob: 5ec4c9b05864161b915bc5a19c27988dfcc8d396 (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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
 * blogc: A blog compiler.
 * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
 *
 * This program can be distributed under the terms of the BSD License.
 * See the file LICENSE.
 */

#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#include "../../src/blogc-git-receiver/shell-command-parser.h"


static void
test_shell_command_parse(void **state)
{
    char *t;
    assert_null(bgr_shell_command_parse(""));
    assert_null(bgr_shell_command_parse("bola"));
    assert_null(bgr_shell_command_parse("bola guda"));
    assert_null(bgr_shell_command_parse("bola 'guda'"));
    t = bgr_shell_command_parse("git-receive-pack 'bola.git'");
    assert_string_equal(t, "bola.git");
    free(t);
    t = bgr_shell_command_parse("git-upload-pack 'bolaa.git'");
    assert_string_equal(t, "bolaa.git");
    free(t);
    t = bgr_shell_command_parse("git-upload-archive 'bolab.git'");
    assert_string_equal(t, "bolab.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bola1.git'");
    assert_string_equal(t, "bola1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bola2.git/'");
    assert_string_equal(t, "bola2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'bola3.git/'");
    assert_string_equal(t, "bola3.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bola.git'");
    assert_string_equal(t, "foo/bola.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bola1.git'");
    assert_string_equal(t, "foo/bola1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bola2.git/'");
    assert_string_equal(t, "foo/bola2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bola3.git/'");
    assert_string_equal(t, "foo/bola3.git/");
    free(t);

    t = bgr_shell_command_parse("git-receive-pack ''\\''bola.git'");
    assert_string_equal(t, "'bola.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\''/bola1.git'");
    assert_string_equal(t, "'/bola1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\''/bola2.git/'");
    assert_string_equal(t, "'/bola2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\''bola3.git/'");
    assert_string_equal(t, "'bola3.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\''foo/bola.git'");
    assert_string_equal(t, "'foo/bola.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\''/foo/bola1.git'");
    assert_string_equal(t, "'/foo/bola1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\''/foo/bola2.git/'");
    assert_string_equal(t, "'/foo/bola2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\''foo/bola3.git/'");
    assert_string_equal(t, "'foo/bola3.git/");
    free(t);

    t = bgr_shell_command_parse("git-receive-pack 'bola.git'\\'''");
    assert_string_equal(t, "bola.git'");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bola1.git'\\'''");
    assert_string_equal(t, "bola1.git'");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bola2.git/'\\'''");
    assert_string_equal(t, "bola2.git/'");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'bola3.git/'\\'''");
    assert_string_equal(t, "bola3.git/'");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bola.git'\\'''");
    assert_string_equal(t, "foo/bola.git'");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bola1.git'\\'''");
    assert_string_equal(t, "foo/bola1.git'");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bola2.git/'\\'''");
    assert_string_equal(t, "foo/bola2.git/'");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bola3.git/'\\'''");
    assert_string_equal(t, "foo/bola3.git/'");
    free(t);

    t = bgr_shell_command_parse("git-receive-pack 'bo'\\''la.git'");
    assert_string_equal(t, "bo'la.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bo'\\''la1.git'");
    assert_string_equal(t, "bo'la1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bo'\\''la2.git/'");
    assert_string_equal(t, "bo'la2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'bo'\\''la3.git/'");
    assert_string_equal(t, "bo'la3.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bo'\\''la.git'");
    assert_string_equal(t, "foo/bo'la.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bo'\\''la1.git'");
    assert_string_equal(t, "foo/bo'la1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bo'\\''la2.git/'");
    assert_string_equal(t, "foo/bo'la2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bo'\\''la3.git/'");
    assert_string_equal(t, "foo/bo'la3.git/");
    free(t);

    t = bgr_shell_command_parse("git-receive-pack ''\\!'bola.git'");
    assert_string_equal(t, "!bola.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\!'/bola1.git'");
    assert_string_equal(t, "!/bola1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\!'/bola2.git/'");
    assert_string_equal(t, "!/bola2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\!'bola3.git/'");
    assert_string_equal(t, "!bola3.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\!'foo/bola.git'");
    assert_string_equal(t, "!foo/bola.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\!'/foo/bola1.git'");
    assert_string_equal(t, "!/foo/bola1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\!'/foo/bola2.git/'");
    assert_string_equal(t, "!/foo/bola2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack ''\\!'foo/bola3.git/'");
    assert_string_equal(t, "!foo/bola3.git/");
    free(t);

    t = bgr_shell_command_parse("git-receive-pack 'bola.git'\\!''");
    assert_string_equal(t, "bola.git!");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bola1.git'\\!''");
    assert_string_equal(t, "bola1.git!");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bola2.git/'\\!''");
    assert_string_equal(t, "bola2.git/!");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'bola3.git/'\\!''");
    assert_string_equal(t, "bola3.git/!");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bola.git'\\!''");
    assert_string_equal(t, "foo/bola.git!");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bola1.git'\\!''");
    assert_string_equal(t, "foo/bola1.git!");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bola2.git/'\\!''");
    assert_string_equal(t, "foo/bola2.git/!");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bola3.git/'\\!''");
    assert_string_equal(t, "foo/bola3.git/!");
    free(t);

    t = bgr_shell_command_parse("git-receive-pack 'bo'\\!'la.git'");
    assert_string_equal(t, "bo!la.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bo'\\!'la1.git'");
    assert_string_equal(t, "bo!la1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/bo'\\!'la2.git/'");
    assert_string_equal(t, "bo!la2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'bo'\\!'la3.git/'");
    assert_string_equal(t, "bo!la3.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bo'\\!'la.git'");
    assert_string_equal(t, "foo/bo!la.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bo'\\!'la1.git'");
    assert_string_equal(t, "foo/bo!la1.git");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack '/foo/bo'\\!'la2.git/'");
    assert_string_equal(t, "foo/bo!la2.git/");
    free(t);
    t = bgr_shell_command_parse("git-receive-pack 'foo/bo'\\!'la3.git/'");
    assert_string_equal(t, "foo/bo!la3.git/");
    free(t);
}


int
main(void)
{
    const UnitTest tests[] = {
        unit_test(test_shell_command_parse),
    };
    return run_tests(tests);
}