blob: 8d4e8b23f79ff4c046040202d8048a45d62ce449 [file] [log] [blame]
/*
* spillbuf-test.c : test the spill buffer code
*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
* ====================================================================
*/
#include "svn_types.h"
#include "private/svn_subr_private.h"
#include "../svn_test.h"
static const char basic_data[] = "abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"0123456789";
/* Validate that BUF is STARTING_SIZE in length. Then read some data from
the buffer, which should match EXPECTED. The EXPECTED value must be
NUL-terminated, but the NUL is not part of the expected/verified value. */
#define CHECK_READ(b, s, e, p) SVN_ERR(check_read(b, s, e, p))
static svn_error_t *
check_read(svn_spillbuf_t *buf,
svn_filesize_t starting_size,
const char *expected,
apr_pool_t *scratch_pool)
{
apr_size_t expected_len = strlen(expected);
const char *readptr;
apr_size_t readlen;
SVN_TEST_ASSERT(svn_spillbuf__get_size(buf) == starting_size);
SVN_ERR(svn_spillbuf__read(&readptr, &readlen, buf, scratch_pool));
SVN_TEST_ASSERT(readptr != NULL
&& readlen == expected_len
&& memcmp(readptr, expected, expected_len) == 0);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf__basic(apr_pool_t *pool, apr_size_t len, svn_spillbuf_t *buf)
{
int i;
const char *readptr;
apr_size_t readlen;
/* It starts empty. */
SVN_TEST_ASSERT(svn_spillbuf__get_size(buf) == 0);
/* Place enough data into the buffer to cause a spill to disk. */
for (i = 20; i--; )
SVN_ERR(svn_spillbuf__write(buf, basic_data, len, pool));
/* And now has content. */
SVN_TEST_ASSERT(svn_spillbuf__get_size(buf) > 0);
/* Verify that we can read 20 copies of basic_data from the buffer. */
for (i = 20; i--; )
CHECK_READ(buf, (i + 1) * len, basic_data, pool);
/* And after precisely 20 reads, it should be empty. */
SVN_ERR(svn_spillbuf__read(&readptr, &readlen, buf, pool));
SVN_TEST_ASSERT(readptr == NULL);
SVN_TEST_ASSERT(svn_spillbuf__get_size(buf) == 0);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf_basic(apr_pool_t *pool)
{
apr_size_t len = strlen(basic_data); /* Don't include basic_data's NUL */
svn_spillbuf_t *buf = svn_spillbuf__create(len, 10 * len, pool);
return test_spillbuf__basic(pool, len, buf);
}
static svn_error_t *
test_spillbuf_basic_spill_all(apr_pool_t *pool)
{
apr_size_t len = strlen(basic_data); /* Don't include basic_data's NUL */
svn_spillbuf_t *buf =
svn_spillbuf__create_extended(len, 10 * len, TRUE, TRUE, NULL, pool);
return test_spillbuf__basic(pool, len, buf);
}
static svn_error_t *
read_callback(svn_boolean_t *stop,
void *baton,
const char *data,
apr_size_t len,
apr_pool_t *scratch_pool)
{
int *counter = baton;
SVN_TEST_ASSERT(len == sizeof(basic_data));
SVN_TEST_ASSERT(memcmp(data, basic_data, len) == 0);
*stop = (++*counter == 10);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf__callback(apr_pool_t *pool, svn_spillbuf_t *buf)
{
int i;
int counter;
svn_boolean_t exhausted;
/* Place enough data into the buffer to cause a spill to disk. */
for (i = 20; i--; )
SVN_ERR(svn_spillbuf__write(buf, basic_data, sizeof(basic_data), pool));
counter = 0;
SVN_ERR(svn_spillbuf__process(&exhausted, buf, read_callback, &counter,
pool));
SVN_TEST_ASSERT(!exhausted);
SVN_ERR(svn_spillbuf__process(&exhausted, buf, read_callback, &counter,
pool));
SVN_TEST_ASSERT(exhausted);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf_callback(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create(
sizeof(basic_data) /* blocksize */,
10 * sizeof(basic_data) /* maxsize */,
pool);
return test_spillbuf__callback(pool, buf);
}
static svn_error_t *
test_spillbuf_callback_spill_all(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create_extended(
sizeof(basic_data) /* blocksize */,
10 * sizeof(basic_data) /* maxsize */,
TRUE /* delte on close */,
TRUE /* spill all data */,
NULL, pool);
return test_spillbuf__callback(pool, buf);
}
static svn_error_t *
test_spillbuf__file(apr_pool_t *pool, apr_size_t altsize, svn_spillbuf_t *buf)
{
int i;
const char *readptr;
apr_size_t readlen;
apr_size_t cur_index;
/* Place enough data into the buffer to cause a spill to disk. Note that
we are writing data that is *smaller* than the blocksize. */
for (i = 7; i--; )
SVN_ERR(svn_spillbuf__write(buf, basic_data, sizeof(basic_data), pool));
/* The first two reads will be in-memory blocks (the third write causes
the spill to disk). The spillbuf will pack the content into BLOCKSIZE
blocks. The second/last memory block will (thus) be a bit smaller. */
SVN_ERR(svn_spillbuf__read(&readptr, &readlen, buf, pool));
SVN_TEST_ASSERT(readptr != NULL);
SVN_TEST_ASSERT(readlen == altsize);
SVN_ERR(svn_spillbuf__read(&readptr, &readlen, buf, pool));
SVN_TEST_ASSERT(readptr != NULL);
/* The second write put sizeof(basic_data) into the buffer. A small
portion was stored at the end of the memblock holding the first write.
Thus, the size of this read will be the written data, minus that
slice written to the first block. */
SVN_TEST_ASSERT(readlen
== sizeof(basic_data) - (altsize - sizeof(basic_data)));
/* Current index into basic_data[] that we compare against. */
cur_index = 0;
while (TRUE)
{
/* This will read more bytes (from the spill file into a temporary
in-memory block) than the blocks of data that we wrote. This makes
it trickier to verify that the right data is being returned. */
SVN_ERR(svn_spillbuf__read(&readptr, &readlen, buf, pool));
if (readptr == NULL)
break;
while (TRUE)
{
apr_size_t amt;
/* Compute the slice of basic_data that we will compare against,
given the readlen and cur_index. */
if (cur_index + readlen >= sizeof(basic_data))
amt = sizeof(basic_data) - cur_index;
else
amt = readlen;
SVN_TEST_ASSERT(memcmp(readptr, &basic_data[cur_index], amt) == 0);
if ((cur_index += amt) == sizeof(basic_data))
cur_index = 0;
if ((readlen -= amt) == 0)
break;
readptr += amt;
}
}
SVN_TEST_ASSERT(svn_spillbuf__get_size(buf) == 0);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf_file(apr_pool_t *pool)
{
apr_size_t altsize = sizeof(basic_data) + 2;
svn_spillbuf_t *buf = svn_spillbuf__create(
altsize /* blocksize */,
2 * sizeof(basic_data) /* maxsize */,
pool);
return test_spillbuf__file(pool, altsize, buf);
}
static svn_error_t *
test_spillbuf_file_spill_all(apr_pool_t *pool)
{
apr_size_t altsize = sizeof(basic_data) + 2;
svn_spillbuf_t *buf = svn_spillbuf__create_extended(
altsize /* blocksize */,
2 * sizeof(basic_data) /* maxsize */,
TRUE /* delte on close */,
TRUE /* spill all data */,
NULL, pool);
return test_spillbuf__file(pool, altsize, buf);
}
static svn_error_t *
test_spillbuf__interleaving(apr_pool_t *pool, svn_spillbuf_t* buf)
{
SVN_ERR(svn_spillbuf__write(buf, "abcdef", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "ghijkl", 6, pool));
/* now: two blocks: 8 and 4 bytes */
CHECK_READ(buf, 12, "abcdefgh", pool);
/* now: one block: 4 bytes */
SVN_ERR(svn_spillbuf__write(buf, "mnopqr", 6, pool));
/* now: two blocks: 8 and 2 bytes */
CHECK_READ(buf, 10, "ijklmnop", pool);
/* now: one block: 2 bytes */
SVN_ERR(svn_spillbuf__write(buf, "stuvwx", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "ABCDEF", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "GHIJKL", 6, pool));
/* now: two blocks: 8 and 6 bytes, and 6 bytes spilled to a file */
CHECK_READ(buf, 20, "qrstuvwx", pool);
CHECK_READ(buf, 12, "ABCDEF", pool);
CHECK_READ(buf, 6, "GHIJKL", pool);
SVN_TEST_ASSERT(svn_spillbuf__get_size(buf) == 0);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf_interleaving(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create(8 /* blocksize */,
15 /* maxsize */,
pool);
return test_spillbuf__interleaving(pool, buf);
}
static svn_error_t *
test_spillbuf_interleaving_spill_all(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create_extended(
8 /* blocksize */,
15 /* maxsize */,
TRUE /* delte on close */,
TRUE /* spill all data */,
NULL, pool);
return test_spillbuf__interleaving(pool, buf);
}
static svn_error_t *
test_spillbuf_reader(apr_pool_t *pool)
{
svn_spillbuf_reader_t *sbr = svn_spillbuf__reader_create(4 /* blocksize */,
100 /* maxsize */,
pool);
apr_size_t amt;
char buf[10];
SVN_ERR(svn_spillbuf__reader_write(sbr, "abcdef", 6, pool));
/* Get a buffer from the underlying reader, and grab a couple bytes. */
SVN_ERR(svn_spillbuf__reader_read(&amt, sbr, buf, 2, pool));
SVN_TEST_ASSERT(amt == 2 && memcmp(buf, "ab", 2) == 0);
/* Trigger the internal "save" feature of the SBR. */
SVN_ERR(svn_spillbuf__reader_write(sbr, "ghijkl", 6, pool));
/* Read from the save buffer, and from the internal blocks. */
SVN_ERR(svn_spillbuf__reader_read(&amt, sbr, buf, 10, pool));
SVN_TEST_ASSERT(amt == 10 && memcmp(buf, "cdefghijkl", 10) == 0);
/* Should be done. */
SVN_ERR(svn_spillbuf__reader_read(&amt, sbr, buf, 10, pool));
SVN_TEST_ASSERT(amt == 0);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf_stream(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create(4 /* blocksize */,
100 /* maxsize */,
pool);
svn_stream_t *stream = svn_stream__from_spillbuf(buf, pool);
char readbuf[256];
apr_size_t readlen;
apr_size_t writelen;
writelen = 6;
SVN_ERR(svn_stream_write(stream, "abcdef", &writelen));
SVN_ERR(svn_stream_write(stream, "ghijkl", &writelen));
/* now: two blocks: 8 and 4 bytes */
readlen = 8;
SVN_ERR(svn_stream_read_full(stream, readbuf, &readlen));
SVN_TEST_ASSERT(readlen == 8
&& memcmp(readbuf, "abcdefgh", 8) == 0);
/* now: one block: 4 bytes */
SVN_ERR(svn_stream_write(stream, "mnopqr", &writelen));
/* now: two blocks: 8 and 2 bytes */
SVN_ERR(svn_stream_read_full(stream, readbuf, &readlen));
SVN_TEST_ASSERT(readlen == 8
&& memcmp(readbuf, "ijklmnop", 8) == 0);
/* now: one block: 2 bytes */
SVN_ERR(svn_stream_write(stream, "stuvwx", &writelen));
SVN_ERR(svn_stream_write(stream, "ABCDEF", &writelen));
SVN_ERR(svn_stream_write(stream, "GHIJKL", &writelen));
/* now: two blocks: 8 and 6 bytes, and 6 bytes spilled to a file */
SVN_ERR(svn_stream_read_full(stream, readbuf, &readlen));
SVN_TEST_ASSERT(readlen == 8
&& memcmp(readbuf, "qrstuvwx", 8) == 0);
readlen = 6;
SVN_ERR(svn_stream_read_full(stream, readbuf, &readlen));
SVN_TEST_ASSERT(readlen == 6
&& memcmp(readbuf, "ABCDEF", 6) == 0);
SVN_ERR(svn_stream_read_full(stream, readbuf, &readlen));
SVN_TEST_ASSERT(readlen == 6
&& memcmp(readbuf, "GHIJKL", 6) == 0);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf__rwfile(apr_pool_t *pool, svn_spillbuf_t *buf)
{
SVN_ERR(svn_spillbuf__write(buf, "abcdef", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "ghijkl", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "mnopqr", 6, pool));
/* now: two blocks: 4 and 2 bytes, and 12 bytes in spill file. */
CHECK_READ(buf, 18, "abcd", pool);
/* now: one block: 2 bytes, and 12 bytes in spill file. */
CHECK_READ(buf, 14, "ef", pool);
/* now: no blocks, and 12 bytes in spill file. */
CHECK_READ(buf, 12, "ghij", pool);
/* now: no blocks, and 8 bytes in spill file. */
/* Write more data. It should be appended to the spill file. */
SVN_ERR(svn_spillbuf__write(buf, "stuvwx", 6, pool));
/* now: no blocks, and 14 bytes in spill file. */
CHECK_READ(buf, 14, "klmn", pool);
/* now: no blocks, and 10 bytes in spill file. */
CHECK_READ(buf, 10, "opqr", pool);
/* now: no blocks, and 6 bytes in spill file. */
CHECK_READ(buf, 6, "stuv", pool);
/* now: no blocks, and 2 bytes in spill file. */
CHECK_READ(buf, 2, "wx", pool);
/* now: no blocks, and no spill file. */
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf_rwfile(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create(4 /* blocksize */,
10 /* maxsize */,
pool);
return test_spillbuf__rwfile(pool, buf);
}
static svn_error_t *
test_spillbuf_rwfile_spill_all(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create_extended(
4 /* blocksize */,
10 /* maxsize */,
TRUE /* delte on close */,
TRUE /* spill all data */,
NULL, pool);
return test_spillbuf__rwfile(pool, buf);
}
static svn_error_t *
test_spillbuf__eof(apr_pool_t *pool, svn_spillbuf_t *buf)
{
SVN_ERR(svn_spillbuf__write(buf, "abcdef", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "ghijkl", 6, pool));
/* now: two blocks: 4 and 2 bytes, and 6 bytes in spill file. */
CHECK_READ(buf, 12, "abcd", pool);
CHECK_READ(buf, 8, "ef", pool);
CHECK_READ(buf, 6, "ghij", pool);
CHECK_READ(buf, 2, "kl", pool);
/* The spill file should have been emptied and forgotten. */
/* Assuming the spill file has been forgotten, this should result in
precisely the same behavior. Specifically: the initial write should
create two blocks, and the second write should be spilled. If there
*was* a spill file, then this written data would go into the file. */
SVN_ERR(svn_spillbuf__write(buf, "abcdef", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "ghijkl", 6, pool));
CHECK_READ(buf, 12, "abcd", pool);
CHECK_READ(buf, 8, "ef", pool);
CHECK_READ(buf, 6, "ghij", pool);
CHECK_READ(buf, 2, "kl", pool);
/* The spill file should have been emptied and forgotten. */
/* Now, let's do a sequence where we arrange to hit EOF precisely on
a block-sized read. Note: the second write must be more than 4 bytes,
or it will not cause a spill. We use 8 to get the right boundary. */
SVN_ERR(svn_spillbuf__write(buf, "abcdef", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "ghijklmn", 8, pool));
CHECK_READ(buf, 14, "abcd", pool);
CHECK_READ(buf, 10, "ef", pool);
CHECK_READ(buf, 8, "ghij", pool);
CHECK_READ(buf, 4, "klmn", pool);
/* We discard the spill file when we know it has no data, rather than
upon hitting EOF (upon a read attempt). Thus, the spill file should
be gone. */
/* Verify the forgotten spill file. */
SVN_ERR(svn_spillbuf__write(buf, "abcdef", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "ghijkl", 6, pool));
CHECK_READ(buf, 12, "abcd", pool);
CHECK_READ(buf, 8, "ef", pool);
CHECK_READ(buf, 6, "ghij", pool);
/* Two unread bytes remaining in the spill file. */
SVN_TEST_ASSERT(svn_spillbuf__get_size(buf) == 2);
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf_eof(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create(4 /* blocksize */,
10 /* maxsize */,
pool);
return test_spillbuf__eof(pool, buf);
}
static svn_error_t *
test_spillbuf_eof_spill_all(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create_extended(
4 /* blocksize */,
10 /* maxsize */,
TRUE /* delte on close */,
TRUE /* spill all data */,
NULL, pool);
return test_spillbuf__eof(pool, buf);
}
static svn_error_t *
test_spillbuf__file_attrs(apr_pool_t *pool, svn_boolean_t spill_all,
svn_spillbuf_t *buf)
{
svn_filesize_t filesize;
SVN_ERR(svn_spillbuf__write(buf, "abcdef", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "ghijkl", 6, pool));
SVN_ERR(svn_spillbuf__write(buf, "mnopqr", 6, pool));
/* Check that the spillbuf size is what we expect it to be */
SVN_TEST_ASSERT(svn_spillbuf__get_size(buf) == 18);
/* Check file existence */
SVN_TEST_ASSERT(svn_spillbuf__get_filename(buf) != NULL);
SVN_TEST_ASSERT(svn_spillbuf__get_file(buf) != NULL);
/* The size of the file must match expectations */
SVN_ERR(svn_io_file_size_get(&filesize, svn_spillbuf__get_file(buf), pool));
if (spill_all)
SVN_TEST_ASSERT(filesize == svn_spillbuf__get_size(buf));
else
SVN_TEST_ASSERT(filesize == (svn_spillbuf__get_size(buf)
- svn_spillbuf__get_memory_size(buf)));
return SVN_NO_ERROR;
}
static svn_error_t *
test_spillbuf_file_attrs(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create(4 /* blocksize */,
10 /* maxsize */,
pool);
return test_spillbuf__file_attrs(pool, FALSE, buf);
}
static svn_error_t *
test_spillbuf_file_attrs_spill_all(apr_pool_t *pool)
{
svn_spillbuf_t *buf = svn_spillbuf__create_extended(
4 /* blocksize */,
10 /* maxsize */,
TRUE /* delte on close */,
TRUE /* spill all data */,
NULL, pool);
return test_spillbuf__file_attrs(pool, TRUE, buf);
}
/* The test table. */
static int max_threads = 1;
static struct svn_test_descriptor_t test_funcs[] =
{
SVN_TEST_NULL,
SVN_TEST_PASS2(test_spillbuf_basic, "basic spill buffer test"),
SVN_TEST_PASS2(test_spillbuf_basic_spill_all,
"basic spill buffer test (spill-all-data)"),
SVN_TEST_PASS2(test_spillbuf_callback, "spill buffer read callback"),
SVN_TEST_PASS2(test_spillbuf_callback_spill_all,
"spill buffer read callback (spill-all-data)"),
SVN_TEST_PASS2(test_spillbuf_file, "spill buffer file test"),
SVN_TEST_PASS2(test_spillbuf_file_spill_all,
"spill buffer file test (spill-all-data)"),
SVN_TEST_PASS2(test_spillbuf_interleaving,
"interleaving reads and writes"),
SVN_TEST_PASS2(test_spillbuf_interleaving_spill_all,
"interleaving reads and writes (spill-all-data)"),
SVN_TEST_PASS2(test_spillbuf_reader, "spill buffer reader test"),
SVN_TEST_PASS2(test_spillbuf_stream, "spill buffer stream test"),
SVN_TEST_PASS2(test_spillbuf_rwfile, "read/write spill file"),
SVN_TEST_PASS2(test_spillbuf_rwfile_spill_all,
"read/write spill file (spill-all-data)"),
SVN_TEST_PASS2(test_spillbuf_eof, "validate reaching EOF of spill file"),
SVN_TEST_PASS2(test_spillbuf_eof_spill_all,
"validate reaching EOF (spill-all-data)"),
SVN_TEST_PASS2(test_spillbuf_file_attrs, "check spill file properties"),
SVN_TEST_PASS2(test_spillbuf_file_attrs_spill_all,
"check spill file properties (spill-all-data)"),
SVN_TEST_NULL
};
SVN_TEST_MAIN