tests: add message trailer parsing test cases
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
diff --git a/tests/message/trailer.c b/tests/message/trailer.c
new file mode 100644
index 0000000..d39c541
--- /dev/null
+++ b/tests/message/trailer.c
@@ -0,0 +1,179 @@
+#include "clar_libgit2.h"
+#include "message.h"
+
+struct trailer {
+ const char *key;
+ const char *value;
+};
+
+struct cb_state {
+ struct trailer *trailer;
+};
+
+static int trailer_cb(const char *key, const char *value, void *st_)
+{
+ struct cb_state *st = st_;
+
+ cl_assert_equal_s(st->trailer->key, key);
+ cl_assert_equal_s(st->trailer->value, value);
+
+ st->trailer++;
+
+ return 0;
+}
+
+static void assert_trailers(const char *message, struct trailer *trailers)
+{
+ struct cb_state st = { trailers };
+
+ int rc = git_message_trailers(message, trailer_cb, &st);
+
+ cl_assert_equal_s(NULL, st.trailer->key);
+ cl_assert_equal_s(NULL, st.trailer->value);
+
+ cl_assert_equal_i(0, rc);
+}
+
+void test_message_trailer__simple(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "Signed-off-by: foo@bar.com\n"
+ "Signed-off-by: someone@else.com\n"
+ ,
+ (struct trailer[]){
+ { "Signed-off-by", "foo@bar.com" },
+ { "Signed-off-by", "someone@else.com" },
+ { NULL, NULL },
+ }
+ );
+}
+
+void test_message_trailer__no_whitespace(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "Key:value\n"
+ ,
+ (struct trailer[]){
+ { "Key", "value" },
+ { NULL, NULL },
+ }
+ );
+}
+
+void test_message_trailer__extra_whitespace(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "Key : value\n"
+ ,
+ (struct trailer[]){
+ { "Key", "value" },
+ { NULL, NULL },
+ }
+ );
+}
+
+void test_message_trailer__no_newline(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "Key: value"
+ ,
+ (struct trailer[]){
+ { "Key", "value" },
+ { NULL, NULL },
+ }
+ );
+}
+
+void test_message_trailer__not_last_paragraph(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "Key: value\n"
+ "\n"
+ "More stuff\n"
+ ,
+ (struct trailer[]){
+ { NULL, NULL },
+ }
+ );
+}
+
+void test_message_trailer__conflicts(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "Key: value\n"
+ "\n"
+ "Conflicts:\n"
+ "\tfoo.c\n"
+ ,
+ (struct trailer[]){
+ { "Key", "value" },
+ { NULL, NULL },
+ }
+ );
+}
+
+void test_message_trailer__patch(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "Key: value\n"
+ "\n"
+ "---\n"
+ "More: stuff\n"
+ ,
+ (struct trailer[]){
+ { "Key", "value" },
+ { NULL, NULL },
+ }
+ );
+}
+
+void test_message_trailer__continuation(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "A: b\n"
+ " c\n"
+ "D: e\n"
+ " f: g h\n"
+ "I: j\n"
+ ,
+ (struct trailer[]){
+ { "A", "b\n c" },
+ { "D", "e\n f: g h" },
+ { "I", "j" },
+ { NULL, NULL },
+ }
+ );
+}
+
+void test_message_trailer__invalid(void)
+{
+ assert_trailers(
+ "Message\n"
+ "\n"
+ "Signed-off-by: some@one.com\n"
+ "Not a trailer\n"
+ "Another: trailer\n"
+ ,
+ (struct trailer[]){
+ { "Signed-off-by", "some@one.com" },
+ { "Another", "trailer" },
+ { NULL, NULL },
+ }
+ );
+}