Blob


1 /*
2 * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include <sys/queue.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <err.h>
23 #include <unistd.h>
25 #include "got_error.h"
26 #include "got_opentemp.h"
28 #include "got_lib_delta.h"
29 #include "got_lib_path.h"
31 #ifndef nitems
32 #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
33 #endif
35 struct delta_test {
36 const char *base;
37 size_t base_len;
38 const char *delta;
39 size_t delta_len;
40 const char *expected;
41 size_t result_len;
42 } delta_tests[] = {
43 /* base len 0, target len 4, append 4 'x' */
44 { "", 0, "\x00\x04\x04xxxx", 7, "xxxx", 4 },
45 /* copy 4 bytes at offset 0 from base, append 4 'x' */
46 { "aabbccdd", 8, "\x08\x08\x90\x04\x04xxxx", 9, "aabbxxxx", 8 },
47 /* copy 4 bytes at offset 4 from base, append 4 'x' */
48 { "aabbccdd", 8, "\x08\x08\x91\x04\x04\x04xxxx", 10, "ccddxxxx", 8 },
49 /* git 48fb7deb5 Fix big left-shifts of unsigned char, 2009-06-17) */
50 { "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
51 16, "\x10\x10\xff\xff\xff\xff\xff\x10\00\00", 10 , NULL, 0 },
52 /* libgit2 9844d38be delta: fix out-of-bounds read of delta */
53 { "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
54 16, "\x10\x70\xff", 3, NULL, 0}
55 };
57 static int
58 delta_apply(void)
59 {
60 const struct got_error *err = NULL;
61 int i;
62 FILE *result_file;
64 result_file = got_opentemp();
65 if (result_file == NULL)
66 return 1;
68 for (i = 0; i < nitems(delta_tests); i++) {
69 struct delta_test *dt = &delta_tests[i];
70 FILE *base_file;
71 char buf[1024];
72 size_t n, result_len;
74 base_file = got_opentemp();
75 if (base_file == NULL) {
76 err = got_error_from_errno();
77 break;
78 }
80 n = fwrite(dt->base, 1, dt->base_len, base_file);
81 if (n != dt->base_len) {
82 err = got_ferror(base_file, GOT_ERR_IO);
83 break;
84 }
85 rewind(base_file);
87 err = got_delta_apply(base_file, dt->delta, dt->delta_len,
88 result_file, &result_len);
89 fclose(base_file);
90 if (dt->expected == NULL) {
91 /* Invalid delta, expect an error. */
92 if (err == NULL)
93 err = got_error(GOT_ERR_EXPECTED);
94 else if (err->code == GOT_ERR_BAD_DELTA)
95 err = NULL;
96 } else {
97 if (err)
98 break;
99 if (result_len != dt->result_len) {
100 err = got_ferror(result_file,
101 GOT_ERR_BAD_DELTA);
102 break;
104 n = fread(buf, result_len, 1, result_file);
105 if (n != 1 ||
106 strncmp(buf, dt->expected, result_len) != 0) {
107 err = got_ferror(result_file,
108 GOT_ERR_BAD_DELTA);
109 break;
112 rewind(result_file);
115 fclose(result_file);
116 return (err == NULL);
119 #define RUN_TEST(expr, name) \
120 { test_ok = (expr); \
121 printf("test %s %s\n", (name), test_ok ? "ok" : "failed"); \
122 failure = (failure || !test_ok); }
124 int
125 main(int argc, const char *argv[])
127 int test_ok;
128 int failure = 0;
130 if (argc != 1) {
131 fprintf(stderr, "usage: delta_test [REPO_PATH]\n");
132 return 1;
135 #ifndef PROFILE
136 if (pledge("stdio rpath wpath cpath", NULL) == -1)
137 err(1, "pledge");
138 #endif
140 RUN_TEST(delta_apply(), "delta_apply");
142 return failure ? 1 : 0;