Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Return "calculated" checksum if requested w/caching #234

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SET(LIBREPO_MAJOR "1")
SET(LIBREPO_MINOR "13")
SET(LIBREPO_PATCH "0")
SET(LIBREPO_PATCH "1")
2 changes: 1 addition & 1 deletion librepo.spec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
%global dnf_conflict 2.8.8

Name: librepo
Version: 1.13.0
Version: 1.13.1
Release: 1%{?dist}
Summary: Repodata downloading library

Expand Down
2 changes: 2 additions & 0 deletions librepo/checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,8 @@ lr_checksum_fd_compare(LrChecksumType type,
g_debug("%s: Using checksum cached in xattr: [%s] %s",
__func__, checksum_key, buf);
*matches = (strcmp(expected, buf) == 0);
if (calculated)
*calculated = g_strdup(buf);
return TRUE;
}
} else {
Expand Down
68 changes: 65 additions & 3 deletions tests/test_checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ START_TEST(test_checksum_fd)
}
END_TEST

START_TEST(test_cached_checksum)
START_TEST(test_cached_checksum_matches)
{
FILE *f;
int fd, ret;
Expand All @@ -105,7 +105,7 @@ START_TEST(test_cached_checksum)
gchar *checksum_key = g_strconcat(XATTR_CHKSUM_PREFIX, "sha256", NULL);
gchar *mtime_str = NULL;

filename = lr_pathconcat(test_globals.tmpdir, "/test_checksum", NULL);
filename = lr_pathconcat(test_globals.tmpdir, "/test_checksum_matches", NULL);
f = fopen(filename, "w");
fail_if(f == NULL);
fwrite("foo\nbar\n", 1, 8, f);
Expand Down Expand Up @@ -178,6 +178,67 @@ START_TEST(test_cached_checksum)
}
END_TEST

START_TEST(test_cached_checksum_value)
{
FILE *f;
int fd, ret;
gboolean checksum_ret, matches;
ssize_t attr_ret;
char *filename;
static char *expected = "d78931fcf2660108eec0d6674ecb4e02401b5256a6b5ee82527766ef6d198c67";
struct stat st;
char buf[256];
GError *tmp_err = NULL;
gchar *timestamp_key = g_strconcat(XATTR_CHKSUM_PREFIX, "mtime", NULL);
gchar *checksum_key = g_strconcat(XATTR_CHKSUM_PREFIX, "sha256", NULL);
gchar *mtime_str = NULL;
gchar *calculated = NULL;

filename = lr_pathconcat(test_globals.tmpdir, "/test_checksum_value", NULL);
f = fopen(filename, "w");
fail_if(f == NULL);
fwrite("foo\nbar\n", 1, 8, f);
fclose(f);

// Assert no cached checksum exists
attr_ret = GETXATTR(filename, timestamp_key, &buf, sizeof(buf)-1);
fail_if(attr_ret != -1); // Cached timestamp should not exists
attr_ret = GETXATTR(filename, checksum_key, &buf, sizeof(buf)-1);
fail_if(attr_ret != -1); // Cached checksum should not exists

// Calculate checksum
fd = open(filename, O_RDONLY);
fail_if(fd < 0);
checksum_ret = lr_checksum_fd_compare(LR_CHECKSUM_SHA256,
fd,
"",
1,
&matches,
&calculated,
&tmp_err);
fail_if(tmp_err);
fail_if(!checksum_ret);
// We pass in an empty string for expected, so we must not match.
fail_if(matches);
close(fd);
fail_if(strcmp(calculated, expected));

// Assert no cached checksum exists
// This assumes issue #235 is unresolved. Once it is, this code
// should fail and the test will need updated.
attr_ret = GETXATTR(filename, timestamp_key, &buf, sizeof(buf)-1);
fail_if(attr_ret != -1); // Cached timestamp should not exists
attr_ret = GETXATTR(filename, checksum_key, &buf, sizeof(buf)-1);
fail_if(attr_ret != -1); // Cached checksum should not exists

lr_free(calculated);
lr_free(filename);
lr_free(timestamp_key);
lr_free(checksum_key);
lr_free(mtime_str);
}
END_TEST

START_TEST(test_cached_checksum_clear)
{
FILE *f;
Expand Down Expand Up @@ -242,7 +303,8 @@ checksum_suite(void)
Suite *s = suite_create("checksum");
TCase *tc = tcase_create("Main");
tcase_add_test(tc, test_checksum_fd);
tcase_add_test(tc, test_cached_checksum);
tcase_add_test(tc, test_cached_checksum_matches);
tcase_add_test(tc, test_cached_checksum_value);
tcase_add_test(tc, test_cached_checksum_clear);
suite_add_tcase(s, tc);
return s;
Expand Down