]> err.no Git - libchamplain/commitdiff
Bind new functions.
authorEmmanuel Rodriguez <emmanuel.rodriguez@gmail.com>
Sat, 28 Mar 2009 22:22:35 +0000 (23:22 +0100)
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Sun, 29 Mar 2009 15:32:58 +0000 (18:32 +0300)
Add support for:
  champlain_map_source_set_name
  champlain_map_source_set_license
  champlain_map_source_get_license

bindings/perl/Champlain/t/ChamplainMapSource.t
bindings/perl/Champlain/xs/ChamplainMapSource.xs

index 03bd69de47b7e506b4059c71353561a171308279..db5dcc578964adeb0927a47aa893a0ae22daa5eb 100644 (file)
@@ -3,10 +3,12 @@
 use strict;
 use warnings;
 
-use Clutter::TestHelper tests => 95;
+use Clutter::TestHelper tests => 110;
 
 use Champlain ':coords';
 
+my $OSM_LICENSE = "(CC) BY 2.0 OpenStreetMap contributors";
+
 exit tests();
 
 sub tests {
@@ -30,6 +32,7 @@ sub test_osm_mapnik {
        is($map->get_min_zoom_level, 0, "$label min zoom");
        is($map->get_max_zoom_level, 18, "$label max zoom");
        is($map->get_tile_size, 256, "$label tile size");
+       is($map->get_license, $OSM_LICENSE, "$label license");
        
        # Generic map operations
        generic_map_operations($label, $map);
@@ -47,6 +50,7 @@ sub test_osm_cyclemap {
        is($map->get_min_zoom_level, 0, "$label min zoom");
        is($map->get_max_zoom_level, 18, "$label max zoom");
        is($map->get_tile_size, 256, "$label tile size");
+       is($map->get_license, $OSM_LICENSE, "$label license");
        
        # Generic map operations
        generic_map_operations($label, $map);
@@ -64,6 +68,7 @@ sub test_osm_osmarender {
        is($map->get_min_zoom_level, 0, "$label min zoom");
        is($map->get_max_zoom_level, 18, "$label max zoom");
        is($map->get_tile_size, 256, "$label tile size");
+       is($map->get_license, $OSM_LICENSE, "$label license");
        
        # Generic map operations
        generic_map_operations($label, $map);
@@ -80,6 +85,7 @@ sub test_oam {
        is($map->get_min_zoom_level, 0, "$label min zoom");
        is($map->get_max_zoom_level, 17, "$label max zoom");
        is($map->get_tile_size, 256, "$label tile size");
+       is($map->get_license, "(CC) BY 3.0 OpenArialMap contributors", "$label license");
        
        # Generic map operations
        generic_map_operations($label, $map);
@@ -97,6 +103,11 @@ sub test_mff {
        is($map->get_min_zoom_level, 0, "$label min zoom");
        is($map->get_max_zoom_level, 11, "$label max zoom");
        is($map->get_tile_size, 256, "$label tile size");
+       is(
+               $map->get_license,
+               "Map data available under GNU Free Documentation license, Version 1.2 or later",
+               "$label license"
+       );
        
        # Generic map operations
        generic_map_operations($label, $map);
@@ -107,6 +118,16 @@ sub test_mff {
 # Genereic checks that should work on all map sources
 sub generic_map_operations {
        my ($label, $map) = @_;
+       
+       # Rename of the map
+       $map->set_name("No name");
+       is($map->get_name, "No name", "Rename the map");
+       
+       # Relicense the map
+       $map->set_license("Free for all!");
+       is($map->get_license, "Free for all!", "Relicense the map");
+       
+       
 
        # Ask for the X position of the middle point
        is(
index ca28d1e598dfbdcf006a3df8b3a7440ec4df891a..8095e43bdae9c07fe25b50361ed9bbe7111dcc79 100644 (file)
@@ -73,3 +73,15 @@ champlain_map_source_get_column_count (ChamplainMapSource *map_source, gint zoom
 
 void
 champlain_map_source_get_tile (ChamplainMapSource *map_source, ChamplainView *view, ChamplainZoomLevel *level, ChamplainTile *tile)
+
+
+void
+champlain_map_source_set_name (ChamplainMapSource *map_source, const gchar *name)
+
+
+void
+champlain_map_source_set_license (ChamplainMapSource *map_source, const gchar *license)
+
+
+const gchar*
+champlain_map_source_get_license (ChamplainMapSource *map_source)