mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
689b054b6e
==2389== 84 (44 direct, 40 indirect) bytes in 1 blocks are definitely lost in loss record 299 of 315 ==2389== at 0x4005BDC: malloc (vg_replace_malloc.c:195) ==2389== by 0x4057094: g_malloc (gmem.c:134) ==2389== by 0x406F2D6: g_slice_alloc (gslice.c:836) ==2389== by 0x406F31B: g_slice_alloc0 (gslice.c:848) ==2389== by 0x413D5BB: g_type_create_instance (gtype.c:1867) ==2389== by 0x412372A: g_object_constructor (gobject.c:1482) ==2389== by 0x4122E1D: g_object_newv (gobject.c:1266) ==2389== by 0x4122B93: g_object_new (gobject.c:1178) ==2389== by 0x41AF54C: g_memory_input_stream_new (gmemoryinputstream.c:199) ==2389== by 0x8048BD1: test_read_chunks (memory-input-stream.c:40) Bug #628331.
145 lines
4.5 KiB
C
145 lines
4.5 KiB
C
/* GLib testing framework examples and tests
|
|
* Copyright (C) 2007 Imendio AB
|
|
* Authors: Tim Janik
|
|
*
|
|
* This work is provided "as is"; redistribution and modification
|
|
* in whole or in part, in any medium, physical or electronic is
|
|
* permitted without restriction.
|
|
*
|
|
* This work is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*
|
|
* In no event shall the authors or contributors be liable for any
|
|
* direct, indirect, incidental, special, exemplary, or consequential
|
|
* damages (including, but not limited to, procurement of substitute
|
|
* goods or services; loss of use, data, or profits; or business
|
|
* interruption) however caused and on any theory of liability, whether
|
|
* in contract, strict liability, or tort (including negligence or
|
|
* otherwise) arising in any way out of the use of this software, even
|
|
* if advised of the possibility of such damage.
|
|
*/
|
|
|
|
#include <glib/glib.h>
|
|
#include <gio/gio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
static void
|
|
test_read_chunks (void)
|
|
{
|
|
const char *data1 = "abcdefghijklmnopqrstuvwxyz";
|
|
const char *data2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
const char *result = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
char buffer[128];
|
|
gsize bytes_read, pos, len, chunk_size;
|
|
GError *error = NULL;
|
|
GInputStream *stream;
|
|
gboolean res;
|
|
|
|
stream = g_memory_input_stream_new ();
|
|
|
|
g_memory_input_stream_add_data (G_MEMORY_INPUT_STREAM (stream),
|
|
data1, -1, NULL);
|
|
g_memory_input_stream_add_data (G_MEMORY_INPUT_STREAM (stream),
|
|
data2, -1, NULL);
|
|
len = strlen (data1) + strlen (data2);
|
|
|
|
for (chunk_size = 1; chunk_size < len - 1; chunk_size++)
|
|
{
|
|
pos = 0;
|
|
while (pos < len)
|
|
{
|
|
bytes_read = g_input_stream_read (stream, buffer, chunk_size, NULL, &error);
|
|
g_assert_no_error (error);
|
|
g_assert_cmpint (bytes_read, ==, MIN (chunk_size, len - pos));
|
|
g_assert (strncmp (buffer, result + pos, bytes_read) == 0);
|
|
|
|
pos += bytes_read;
|
|
}
|
|
|
|
g_assert_cmpint (pos, ==, len);
|
|
res = g_seekable_seek (G_SEEKABLE (stream), 0, G_SEEK_SET, NULL, &error);
|
|
g_assert_cmpint (res, ==, TRUE);
|
|
g_assert_no_error (error);
|
|
}
|
|
|
|
g_object_unref (stream);
|
|
}
|
|
|
|
static void
|
|
test_seek (void)
|
|
{
|
|
const char *data1 = "abcdefghijklmnopqrstuvwxyz";
|
|
const char *data2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
GInputStream *stream;
|
|
GError *error;
|
|
char buffer[10];
|
|
|
|
stream = g_memory_input_stream_new ();
|
|
|
|
g_memory_input_stream_add_data (G_MEMORY_INPUT_STREAM (stream),
|
|
data1, -1, NULL);
|
|
g_memory_input_stream_add_data (G_MEMORY_INPUT_STREAM (stream),
|
|
data2, -1, NULL);
|
|
|
|
g_assert (G_IS_SEEKABLE (stream));
|
|
g_assert (g_seekable_can_seek (G_SEEKABLE (stream)));
|
|
|
|
error = NULL;
|
|
g_assert (g_seekable_seek (G_SEEKABLE (stream), 26, G_SEEK_SET, NULL, &error));
|
|
g_assert_no_error (error);
|
|
g_assert_cmpint (g_seekable_tell (G_SEEKABLE (stream)), ==, 26);
|
|
|
|
g_assert (g_input_stream_read (stream, buffer, 1, NULL, &error) == 1);
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (buffer[0] == 'A');
|
|
|
|
g_assert (!g_seekable_seek (G_SEEKABLE (stream), 26, G_SEEK_CUR, NULL, &error));
|
|
g_assert_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT);
|
|
g_error_free (error);
|
|
|
|
g_object_unref (stream);
|
|
}
|
|
|
|
static void
|
|
test_truncate (void)
|
|
{
|
|
const char *data1 = "abcdefghijklmnopqrstuvwxyz";
|
|
const char *data2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
GInputStream *stream;
|
|
GError *error;
|
|
|
|
stream = g_memory_input_stream_new ();
|
|
|
|
g_memory_input_stream_add_data (G_MEMORY_INPUT_STREAM (stream),
|
|
data1, -1, NULL);
|
|
g_memory_input_stream_add_data (G_MEMORY_INPUT_STREAM (stream),
|
|
data2, -1, NULL);
|
|
|
|
g_assert (G_IS_SEEKABLE (stream));
|
|
g_assert (!g_seekable_can_truncate (G_SEEKABLE (stream)));
|
|
|
|
error = NULL;
|
|
g_assert (!g_seekable_truncate (G_SEEKABLE (stream), 26, NULL, &error));
|
|
g_assert_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED);
|
|
g_error_free (error);
|
|
|
|
g_object_unref (stream);
|
|
}
|
|
|
|
int
|
|
main (int argc,
|
|
char *argv[])
|
|
{
|
|
g_type_init ();
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
g_test_add_func ("/memory-input-stream/read-chunks", test_read_chunks);
|
|
g_test_add_func ("/memory-input-stream/seek", test_seek);
|
|
g_test_add_func ("/memory-input-stream/truncate", test_truncate);
|
|
|
|
return g_test_run();
|
|
}
|