]> git.cameronkatri.com Git - cgit.git/commitdiff
cache.c: cache ls_cache output properly
authorJohn Keeping <john@keeping.me.uk>
Sat, 18 May 2013 17:46:39 +0000 (18:46 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Wed, 22 May 2013 10:53:06 +0000 (12:53 +0200)
By using the standard library's printf, cache_ls does not redirect its
output to the cache when we change the process' stdout file descriptor
to point to the cache file.  Fix this by using "htmlf" in the same way
that we do for writing HTTP headers.

Signed-off-by: John Keeping <john@keeping.me.uk>
cache.c
tests/t0020-validate-cache.sh

diff --git a/cache.c b/cache.c
index 74a1795a884051d480806323023209b88aa33b5c..aa870e3654125cf6017d5f7d6d0f21da8a549a0e 100644 (file)
--- a/cache.c
+++ b/cache.c
@@ -15,6 +15,7 @@
 
 #include "cgit.h"
 #include "cache.h"
+#include "html.h"
 
 #define CACHE_BUFSIZE (1024 * 4)
 
@@ -404,12 +405,12 @@ int cache_ls(const char *path)
                                  fullname.buf, strerror(err), err);
                        continue;
                }
-               printf("%s %s %10"PRIuMAX" %s\n",
-                      fullname.buf,
-                      sprintftime("%Y-%m-%d %H:%M:%S",
-                                  slot.cache_st.st_mtime),
-                      (uintmax_t)slot.cache_st.st_size,
-                      slot.buf);
+               htmlf("%s %s %10"PRIuMAX" %s\n",
+                     fullname.buf,
+                     sprintftime("%Y-%m-%d %H:%M:%S",
+                                 slot.cache_st.st_mtime),
+                     (uintmax_t)slot.cache_st.st_size,
+                     slot.buf);
                close_slot(&slot);
        }
        closedir(dir);
index 7e7379a80a898651484b4f395c5e4c3cc21c40e9..657765d897b5da5dc7f13231c8e0fd2467086a05 100755 (executable)
@@ -66,7 +66,13 @@ test_expect_success 'verify cache-size=1021' '
        cgit_url "bar/diff" &&
        cgit_url "bar/patch" &&
        ls cache >output &&
-       test_line_count = 13 output
+       test_line_count = 13 output &&
+       cgit_url "foo/ls_cache" >output.full &&
+       strip_headers <output.full >output &&
+       test_line_count = 13 output &&
+       # Check that ls_cache output is cached correctly
+       cgit_url "foo/ls_cache" >output.second &&
+       test_cmp output.full output.second
 '
 
 test_done