quote.c 2.88 KB
Newer Older
1 2
#include "clar_libgit2.h"

3 4
static void expect_quote_pass(const char *expected, const char *str)
{
5
	git_str buf = GIT_STR_INIT;
6

7 8
	cl_git_pass(git_str_puts(&buf, str));
	cl_git_pass(git_str_quote(&buf));
9

10 11
	cl_assert_equal_s(expected, git_str_cstr(&buf));
	cl_assert_equal_i(strlen(expected), git_str_len(&buf));
12

13
	git_str_dispose(&buf);
14 15
}

16
void test_str_quote__quote_succeeds(void)
17 18 19 20 21 22 23 24 25 26
{
	expect_quote_pass("", "");
	expect_quote_pass("foo", "foo");
	expect_quote_pass("foo/bar/baz.c", "foo/bar/baz.c");
	expect_quote_pass("foo bar", "foo bar");
	expect_quote_pass("\"\\\"leading quote\"", "\"leading quote");
	expect_quote_pass("\"slash\\\\y\"", "slash\\y");
	expect_quote_pass("\"foo\\r\\nbar\"", "foo\r\nbar");
	expect_quote_pass("\"foo\\177bar\"", "foo\177bar");
	expect_quote_pass("\"foo\\001bar\"", "foo\001bar");
27
	expect_quote_pass("\"foo\\377bar\"", "foo\377bar");
28 29 30
}

static void expect_unquote_pass(const char *expected, const char *quoted)
31
{
32
	git_str buf = GIT_STR_INIT;
33

34 35
	cl_git_pass(git_str_puts(&buf, quoted));
	cl_git_pass(git_str_unquote(&buf));
36

37 38
	cl_assert_equal_s(expected, git_str_cstr(&buf));
	cl_assert_equal_i(strlen(expected), git_str_len(&buf));
39

40
	git_str_dispose(&buf);
41 42
}

43
static void expect_unquote_fail(const char *quoted)
44
{
45
	git_str buf = GIT_STR_INIT;
46

47 48
	cl_git_pass(git_str_puts(&buf, quoted));
	cl_git_fail(git_str_unquote(&buf));
49

50
	git_str_dispose(&buf);
51 52
}

53
void test_str_quote__unquote_succeeds(void)
54
{
55 56 57 58 59 60 61 62 63 64 65 66
	expect_unquote_pass("", "\"\"");
	expect_unquote_pass(" ", "\" \"");
	expect_unquote_pass("foo", "\"foo\"");
	expect_unquote_pass("foo bar", "\"foo bar\"");
	expect_unquote_pass("foo\"bar", "\"foo\\\"bar\"");
	expect_unquote_pass("foo\\bar", "\"foo\\\\bar\"");
	expect_unquote_pass("foo\tbar", "\"foo\\tbar\"");
	expect_unquote_pass("\vfoo\tbar\n", "\"\\vfoo\\tbar\\n\"");
	expect_unquote_pass("foo\nbar", "\"foo\\012bar\"");
	expect_unquote_pass("foo\r\nbar", "\"foo\\015\\012bar\"");
	expect_unquote_pass("foo\r\nbar", "\"\\146\\157\\157\\015\\012\\142\\141\\162\"");
	expect_unquote_pass("newline: \n", "\"newline: \\012\"");
67
	expect_unquote_pass("0xff: \377", "\"0xff: \\377\"");
68 69
}

70
void test_str_quote__unquote_fails(void)
71
{
72 73 74 75 76 77 78 79
	expect_unquote_fail("no quotes at all");
	expect_unquote_fail("\"no trailing quote");
	expect_unquote_fail("no leading quote\"");
	expect_unquote_fail("\"invalid \\z escape char\"");
	expect_unquote_fail("\"\\q invalid escape char\"");
	expect_unquote_fail("\"invalid escape char \\p\"");
	expect_unquote_fail("\"invalid \\1 escape char \"");
	expect_unquote_fail("\"invalid \\14 escape char \"");
80 81 82
	expect_unquote_fail("\"invalid \\280 escape char\"");
	expect_unquote_fail("\"invalid \\378 escape char\"");
	expect_unquote_fail("\"invalid \\380 escape char\"");
83 84 85 86
	expect_unquote_fail("\"invalid \\411 escape char\"");
	expect_unquote_fail("\"truncated escape char \\\"");
	expect_unquote_fail("\"truncated escape char \\0\"");
	expect_unquote_fail("\"truncated escape char \\01\"");
87
}