1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#undef G_DISABLE_ASSERT
#include <glib-object.h>
#include <shumate/shumate.h>
#include "shumate/shumate-tile-private.h"
#include "shumate/shumate-vector-renderer-private.h"
#include "shumate/shumate-utils-private.h"
static void
test_vector_renderer_render (void)
{
GError *error = NULL;
g_autoptr(GBytes) style_json = NULL;
g_autoptr(GBytes) tile_data = NULL;
g_autoptr(ShumateVectorRenderer) renderer = NULL;
g_autoptr(ShumateTile) tile = shumate_tile_new_full (0, 0, 512, 0);
g_autoptr(GdkPaintable) paintable = NULL;
g_autoptr(GPtrArray) symbols = NULL;
ShumateGridPosition source_position = { 0, 0, 0 };
style_json = g_resources_lookup_data ("/org/gnome/shumate/Tests/style.json", G_RESOURCE_LOOKUP_FLAGS_NONE, NULL);
g_assert_no_error (error);
renderer = shumate_vector_renderer_new ("", g_bytes_get_data (style_json, NULL), &error);
g_assert_no_error (error);
tile_data = g_resources_lookup_data ("/org/gnome/shumate/Tests/0.pbf", G_RESOURCE_LOOKUP_FLAGS_NONE, NULL);
g_assert_no_error (error);
shumate_vector_renderer_render (renderer, tile, tile_data, &source_position, &paintable, &symbols);
g_assert_no_error (error);
g_assert_true (GDK_IS_PAINTABLE (paintable));
g_assert_nonnull (symbols);
}
int
main (int argc, char *argv[])
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/vector-renderer/render", test_vector_renderer_render);
return g_test_run ();
}
|