2008-10-21 13:51:48 +02:00
/* GLib testing framework examples and tests
*
* Copyright ( C ) 2008 Red Hat , Inc .
*
* 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 .
*
* Authors : David Zeuthen < davidz @ redhat . com >
*/
# include <glib/glib.h>
# include <gio/gio.h>
# include <stdlib.h>
# include <string.h>
static void
2013-04-21 00:50:21 +02:00
test_g_icon_to_string ( void )
2008-10-21 13:51:48 +02:00
{
GIcon * icon ;
GIcon * icon2 ;
GIcon * icon3 ;
GIcon * icon4 ;
GIcon * icon5 ;
GEmblem * emblem1 ;
GEmblem * emblem2 ;
const char * uri ;
GFile * location ;
char * data ;
GError * error ;
2012-04-08 16:19:20 +02:00
gint origin ;
GIcon * i ;
2012-06-04 11:59:27 +02:00
GFile * file ;
2008-10-21 13:51:48 +02:00
error = NULL ;
/* check that GFileIcon and GThemedIcon serialize to the encoding specified */
uri = " file:///some/native/path/to/an/icon.png " ;
location = g_file_new_for_uri ( uri ) ;
icon = g_file_icon_new ( location ) ;
2012-06-04 11:59:27 +02:00
g_object_get ( icon , " file " , & file , NULL ) ;
g_assert ( file = = location ) ;
g_object_unref ( file ) ;
2008-10-21 13:51:48 +02:00
data = g_icon_to_string ( icon ) ;
2012-02-03 19:03:38 +01:00
g_assert_cmpstr ( data , = = , G_DIR_SEPARATOR_S " some " G_DIR_SEPARATOR_S " native " G_DIR_SEPARATOR_S " path " G_DIR_SEPARATOR_S " to " G_DIR_SEPARATOR_S " an " G_DIR_SEPARATOR_S " icon.png " ) ;
2008-10-21 13:51:48 +02:00
icon2 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( location ) ;
uri = " file:///some/native/path/to/an/icon with spaces.png " ;
location = g_file_new_for_uri ( uri ) ;
icon = g_file_icon_new ( location ) ;
data = g_icon_to_string ( icon ) ;
2012-02-03 19:03:38 +01:00
g_assert_cmpstr ( data , = = , G_DIR_SEPARATOR_S " some " G_DIR_SEPARATOR_S " native " G_DIR_SEPARATOR_S " path " G_DIR_SEPARATOR_S " to " G_DIR_SEPARATOR_S " an " G_DIR_SEPARATOR_S " icon with spaces.png " ) ;
2008-10-21 13:51:48 +02:00
icon2 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( location ) ;
uri = " sftp:///some/non-native/path/to/an/icon.png " ;
location = g_file_new_for_uri ( uri ) ;
icon = g_file_icon_new ( location ) ;
data = g_icon_to_string ( icon ) ;
g_assert_cmpstr ( data , = = , " sftp:///some/non-native/path/to/an/icon.png " ) ;
icon2 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( location ) ;
2008-12-01 07:47:04 +01:00
#if 0
2008-10-21 13:51:48 +02:00
uri = " sftp:///some/non-native/path/to/an/icon with spaces.png " ;
location = g_file_new_for_uri ( uri ) ;
icon = g_file_icon_new ( location ) ;
data = g_icon_to_string ( icon ) ;
g_assert_cmpstr ( data , = = , " sftp:///some/non-native/path/to/an/icon%20with%20spaces.png " ) ;
icon2 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( location ) ;
2008-12-01 07:47:04 +01:00
# endif
2008-10-21 13:51:48 +02:00
icon = g_themed_icon_new ( " network-server " ) ;
data = g_icon_to_string ( icon ) ;
g_assert_cmpstr ( data , = = , " network-server " ) ;
icon2 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
/* Check that we can serialize from well-known specified formats */
icon = g_icon_new_for_string ( " network-server% " , & error ) ;
g_assert_no_error ( error ) ;
icon2 = g_themed_icon_new ( " network-server% " ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
icon = g_icon_new_for_string ( " /path/to/somewhere.png " , & error ) ;
g_assert_no_error ( error ) ;
location = g_file_new_for_commandline_arg ( " /path/to/somewhere.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( location ) ;
icon = g_icon_new_for_string ( " /path/to/somewhere with whitespace.png " , & error ) ;
g_assert_no_error ( error ) ;
data = g_icon_to_string ( icon ) ;
2012-02-03 19:03:38 +01:00
g_assert_cmpstr ( data , = = , G_DIR_SEPARATOR_S " path " G_DIR_SEPARATOR_S " to " G_DIR_SEPARATOR_S " somewhere with whitespace.png " ) ;
2008-10-21 13:51:48 +02:00
g_free ( data ) ;
location = g_file_new_for_commandline_arg ( " /path/to/somewhere with whitespace.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( location ) ;
g_object_unref ( icon2 ) ;
location = g_file_new_for_commandline_arg ( " /path/to/somewhere%20with%20whitespace.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( ! g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( location ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( icon ) ;
icon = g_icon_new_for_string ( " sftp:///path/to/somewhere.png " , & error ) ;
g_assert_no_error ( error ) ;
data = g_icon_to_string ( icon ) ;
g_assert_cmpstr ( data , = = , " sftp:///path/to/somewhere.png " ) ;
g_free ( data ) ;
location = g_file_new_for_commandline_arg ( " sftp:///path/to/somewhere.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( location ) ;
2008-12-01 07:47:04 +01:00
#if 0
2008-10-21 13:51:48 +02:00
icon = g_icon_new_for_string ( " sftp:///path/to/somewhere with whitespace.png " , & error ) ;
g_assert_no_error ( error ) ;
data = g_icon_to_string ( icon ) ;
g_assert_cmpstr ( data , = = , " sftp:///path/to/somewhere%20with%20whitespace.png " ) ;
g_free ( data ) ;
location = g_file_new_for_commandline_arg ( " sftp:///path/to/somewhere with whitespace.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( location ) ;
g_object_unref ( icon2 ) ;
location = g_file_new_for_commandline_arg ( " sftp:///path/to/somewhere%20with%20whitespace.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( location ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( icon ) ;
2008-12-01 07:47:04 +01:00
# endif
2008-10-21 13:51:48 +02:00
/* Check that GThemedIcon serialization works */
icon = g_themed_icon_new ( " network-server " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon ) , " computer " ) ;
data = g_icon_to_string ( icon ) ;
icon2 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
icon = g_themed_icon_new ( " icon name with whitespace " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon ) , " computer " ) ;
data = g_icon_to_string ( icon ) ;
icon2 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
icon = g_themed_icon_new_with_default_fallbacks ( " network-server-xyz " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon ) , " computer " ) ;
data = g_icon_to_string ( icon ) ;
icon2 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
/* Check that GEmblemedIcon serialization works */
icon = g_themed_icon_new ( " face-smirk " ) ;
icon2 = g_themed_icon_new ( " emblem-important " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon2 ) , " emblem-shared " ) ;
location = g_file_new_for_uri ( " file:///some/path/somewhere.png " ) ;
icon3 = g_file_icon_new ( location ) ;
g_object_unref ( location ) ;
emblem1 = g_emblem_new_with_origin ( icon2 , G_EMBLEM_ORIGIN_DEVICE ) ;
emblem2 = g_emblem_new_with_origin ( icon3 , G_EMBLEM_ORIGIN_LIVEMETADATA ) ;
icon4 = g_emblemed_icon_new ( icon , emblem1 ) ;
g_emblemed_icon_add_emblem ( G_EMBLEMED_ICON ( icon4 ) , emblem2 ) ;
data = g_icon_to_string ( icon4 ) ;
icon5 = g_icon_new_for_string ( data , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( g_icon_equal ( icon4 , icon5 ) ) ;
2012-04-08 16:19:20 +02:00
g_object_get ( emblem1 , " origin " , & origin , " icon " , & i , NULL ) ;
g_assert ( origin = = G_EMBLEM_ORIGIN_DEVICE ) ;
g_assert ( i = = icon2 ) ;
g_object_unref ( i ) ;
2008-10-21 13:51:48 +02:00
g_object_unref ( emblem1 ) ;
g_object_unref ( emblem2 ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( icon3 ) ;
g_object_unref ( icon4 ) ;
g_object_unref ( icon5 ) ;
2010-09-03 21:56:23 +02:00
g_free ( data ) ;
2008-10-21 13:51:48 +02:00
}
2013-04-21 00:50:21 +02:00
static void
test_g_icon_serialize ( void )
{
GIcon * icon ;
GIcon * icon2 ;
GIcon * icon3 ;
GIcon * icon4 ;
GIcon * icon5 ;
GEmblem * emblem1 ;
GEmblem * emblem2 ;
GFile * location ;
GVariant * data ;
gint origin ;
GIcon * i ;
/* Check that we can deserialize from well-known specified formats */
data = g_variant_new_string ( " network-server% " ) ;
icon = g_icon_deserialize ( g_variant_ref_sink ( data ) ) ;
g_variant_unref ( data ) ;
icon2 = g_themed_icon_new ( " network-server% " ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
data = g_variant_new_string ( " /path/to/somewhere.png " ) ;
icon = g_icon_deserialize ( g_variant_ref_sink ( data ) ) ;
g_variant_unref ( data ) ;
location = g_file_new_for_commandline_arg ( " /path/to/somewhere.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( location ) ;
data = g_variant_new_string ( " /path/to/somewhere with whitespace.png " ) ;
icon = g_icon_deserialize ( g_variant_ref_sink ( data ) ) ;
g_variant_unref ( data ) ;
location = g_file_new_for_commandline_arg ( " /path/to/somewhere with whitespace.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( location ) ;
g_object_unref ( icon2 ) ;
location = g_file_new_for_commandline_arg ( " /path/to/somewhere%20with%20whitespace.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( ! g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( location ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( icon ) ;
data = g_variant_new_string ( " sftp:///path/to/somewhere.png " ) ;
icon = g_icon_deserialize ( g_variant_ref_sink ( data ) ) ;
g_variant_unref ( data ) ;
location = g_file_new_for_commandline_arg ( " sftp:///path/to/somewhere.png " ) ;
icon2 = g_file_icon_new ( location ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( location ) ;
/* Check that GThemedIcon serialization works */
icon = g_themed_icon_new ( " network-server " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon ) , " computer " ) ;
data = g_icon_serialize ( icon ) ;
icon2 = g_icon_deserialize ( data ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_variant_unref ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
icon = g_themed_icon_new ( " icon name with whitespace " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon ) , " computer " ) ;
data = g_icon_serialize ( icon ) ;
icon2 = g_icon_deserialize ( data ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_variant_unref ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
icon = g_themed_icon_new_with_default_fallbacks ( " network-server-xyz " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon ) , " computer " ) ;
data = g_icon_serialize ( icon ) ;
icon2 = g_icon_deserialize ( data ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_variant_unref ( data ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
/* Check that GEmblemedIcon serialization works */
icon = g_themed_icon_new ( " face-smirk " ) ;
icon2 = g_themed_icon_new ( " emblem-important " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon2 ) , " emblem-shared " ) ;
location = g_file_new_for_uri ( " file:///some/path/somewhere.png " ) ;
icon3 = g_file_icon_new ( location ) ;
g_object_unref ( location ) ;
emblem1 = g_emblem_new_with_origin ( icon2 , G_EMBLEM_ORIGIN_DEVICE ) ;
emblem2 = g_emblem_new_with_origin ( icon3 , G_EMBLEM_ORIGIN_LIVEMETADATA ) ;
icon4 = g_emblemed_icon_new ( icon , emblem1 ) ;
g_emblemed_icon_add_emblem ( G_EMBLEMED_ICON ( icon4 ) , emblem2 ) ;
data = g_icon_serialize ( icon4 ) ;
icon5 = g_icon_deserialize ( data ) ;
g_assert ( g_icon_equal ( icon4 , icon5 ) ) ;
g_object_get ( emblem1 , " origin " , & origin , " icon " , & i , NULL ) ;
g_assert ( origin = = G_EMBLEM_ORIGIN_DEVICE ) ;
g_assert ( i = = icon2 ) ;
g_object_unref ( i ) ;
g_object_unref ( emblem1 ) ;
g_object_unref ( emblem2 ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( icon3 ) ;
g_object_unref ( icon4 ) ;
g_object_unref ( icon5 ) ;
g_variant_unref ( data ) ;
}
2010-07-27 00:40:17 +02:00
static void
test_themed_icon ( void )
{
2013-06-02 07:42:28 +02:00
GIcon * icon1 , * icon2 , * icon3 , * icon4 ;
2010-07-27 00:40:17 +02:00
const gchar * const * names ;
const gchar * names2 [ ] = { " first " , " testicon " , " last " , NULL } ;
gchar * str ;
2010-07-29 08:19:01 +02:00
gboolean fallbacks ;
2013-06-02 07:42:28 +02:00
GVariant * variant ;
2010-07-27 00:40:17 +02:00
icon1 = g_themed_icon_new ( " testicon " ) ;
2010-07-29 08:19:01 +02:00
g_object_get ( icon1 , " use-default-fallbacks " , & fallbacks , NULL ) ;
g_assert ( ! fallbacks ) ;
2010-07-27 00:40:17 +02:00
names = g_themed_icon_get_names ( G_THEMED_ICON ( icon1 ) ) ;
g_assert_cmpint ( g_strv_length ( ( gchar * * ) names ) , = = , 1 ) ;
g_assert_cmpstr ( names [ 0 ] , = = , " testicon " ) ;
g_themed_icon_prepend_name ( G_THEMED_ICON ( icon1 ) , " first " ) ;
g_themed_icon_append_name ( G_THEMED_ICON ( icon1 ) , " last " ) ;
names = g_themed_icon_get_names ( G_THEMED_ICON ( icon1 ) ) ;
g_assert_cmpint ( g_strv_length ( ( gchar * * ) names ) , = = , 3 ) ;
g_assert_cmpstr ( names [ 0 ] , = = , " first " ) ;
g_assert_cmpstr ( names [ 1 ] , = = , " testicon " ) ;
g_assert_cmpstr ( names [ 2 ] , = = , " last " ) ;
2010-11-27 22:56:44 +01:00
g_assert_cmpuint ( g_icon_hash ( icon1 ) , = = , 2400773466U ) ;
2010-07-27 00:40:17 +02:00
icon2 = g_themed_icon_new_from_names ( ( gchar * * ) names2 , - 1 ) ;
g_assert ( g_icon_equal ( icon1 , icon2 ) ) ;
str = g_icon_to_string ( icon2 ) ;
icon3 = g_icon_new_for_string ( str , NULL ) ;
g_assert ( g_icon_equal ( icon2 , icon3 ) ) ;
g_free ( str ) ;
2013-06-02 07:42:28 +02:00
variant = g_icon_serialize ( icon3 ) ;
icon4 = g_icon_deserialize ( variant ) ;
g_assert ( g_icon_equal ( icon3 , icon4 ) ) ;
g_assert ( g_icon_hash ( icon3 ) = = g_icon_hash ( icon4 ) ) ;
g_variant_unref ( variant ) ;
2010-07-27 00:40:17 +02:00
g_object_unref ( icon1 ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( icon3 ) ;
2013-06-02 07:42:28 +02:00
g_object_unref ( icon4 ) ;
2010-07-27 00:40:17 +02:00
}
static void
test_emblemed_icon ( void )
{
2013-06-02 07:42:28 +02:00
GIcon * icon ;
GIcon * icon1 , * icon2 , * icon3 , * icon4 , * icon5 ;
2010-07-27 00:40:17 +02:00
GEmblem * emblem , * emblem1 , * emblem2 ;
GList * emblems ;
2013-06-02 07:42:28 +02:00
GVariant * variant ;
2010-07-27 00:40:17 +02:00
icon1 = g_themed_icon_new ( " testicon " ) ;
icon2 = g_themed_icon_new ( " testemblem " ) ;
emblem1 = g_emblem_new ( icon2 ) ;
emblem2 = g_emblem_new_with_origin ( icon2 , G_EMBLEM_ORIGIN_TAG ) ;
icon3 = g_emblemed_icon_new ( icon1 , emblem1 ) ;
emblems = g_emblemed_icon_get_emblems ( G_EMBLEMED_ICON ( icon3 ) ) ;
g_assert_cmpint ( g_list_length ( emblems ) , = = , 1 ) ;
g_assert ( g_emblemed_icon_get_icon ( G_EMBLEMED_ICON ( icon3 ) ) = = icon1 ) ;
icon4 = g_emblemed_icon_new ( icon1 , emblem1 ) ;
g_emblemed_icon_add_emblem ( G_EMBLEMED_ICON ( icon4 ) , emblem2 ) ;
emblems = g_emblemed_icon_get_emblems ( G_EMBLEMED_ICON ( icon4 ) ) ;
g_assert_cmpint ( g_list_length ( emblems ) , = = , 2 ) ;
g_assert ( ! g_icon_equal ( icon3 , icon4 ) ) ;
2013-06-02 07:42:28 +02:00
variant = g_icon_serialize ( icon4 ) ;
icon5 = g_icon_deserialize ( variant ) ;
g_assert ( g_icon_equal ( icon4 , icon5 ) ) ;
g_assert ( g_icon_hash ( icon4 ) = = g_icon_hash ( icon5 ) ) ;
g_variant_unref ( variant ) ;
2010-07-27 00:40:17 +02:00
emblem = emblems - > data ;
g_assert ( g_emblem_get_icon ( emblem ) = = icon2 ) ;
2010-11-27 22:56:44 +01:00
g_assert ( g_emblem_get_origin ( emblem ) = = G_EMBLEM_ORIGIN_TAG ) ;
2010-07-27 00:40:17 +02:00
emblem = emblems - > next - > data ;
g_assert ( g_emblem_get_icon ( emblem ) = = icon2 ) ;
2010-11-27 22:56:44 +01:00
g_assert ( g_emblem_get_origin ( emblem ) = = G_EMBLEM_ORIGIN_UNKNOWN ) ;
2010-07-27 00:40:17 +02:00
2012-06-04 01:50:54 +02:00
g_emblemed_icon_clear_emblems ( G_EMBLEMED_ICON ( icon4 ) ) ;
g_assert ( g_emblemed_icon_get_emblems ( G_EMBLEMED_ICON ( icon4 ) ) = = NULL ) ;
g_assert ( g_icon_hash ( icon4 ) ! = g_icon_hash ( icon2 ) ) ;
g_object_get ( icon4 , " gicon " , & icon , NULL ) ;
g_assert ( icon = = icon1 ) ;
g_object_unref ( icon ) ;
2010-07-27 00:40:17 +02:00
g_object_unref ( icon1 ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( icon3 ) ;
g_object_unref ( icon4 ) ;
2013-06-02 07:42:28 +02:00
g_object_unref ( icon5 ) ;
2010-07-27 00:40:17 +02:00
g_object_unref ( emblem1 ) ;
g_object_unref ( emblem2 ) ;
}
2013-06-02 07:42:28 +02:00
static void
load_cb ( GObject * source_object ,
GAsyncResult * res ,
gpointer data )
{
GLoadableIcon * icon = G_LOADABLE_ICON ( source_object ) ;
GMainLoop * loop = data ;
GError * error = NULL ;
GInputStream * stream ;
stream = g_loadable_icon_load_finish ( icon , res , NULL , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( G_IS_INPUT_STREAM ( stream ) ) ;
g_object_unref ( stream ) ;
g_main_loop_quit ( loop ) ;
}
static void
loadable_icon_tests ( GLoadableIcon * icon )
{
GError * error = NULL ;
GInputStream * stream ;
GMainLoop * loop ;
stream = g_loadable_icon_load ( icon , 20 , NULL , NULL , & error ) ;
g_assert_no_error ( error ) ;
g_assert ( G_IS_INPUT_STREAM ( stream ) ) ;
g_object_unref ( stream ) ;
loop = g_main_loop_new ( NULL , FALSE ) ;
g_loadable_icon_load_async ( icon , 20 , NULL , load_cb , loop ) ;
g_main_loop_run ( loop ) ;
g_main_loop_unref ( loop ) ;
}
2010-07-27 00:40:17 +02:00
static void
test_file_icon ( void )
{
GFile * file ;
GIcon * icon ;
GIcon * icon2 ;
2013-06-02 07:42:28 +02:00
GIcon * icon3 ;
GIcon * icon4 ;
2010-07-27 00:40:17 +02:00
gchar * str ;
2013-06-02 07:42:28 +02:00
GVariant * variant ;
2013-05-20 12:38:41 +02:00
2013-05-29 14:49:16 +02:00
file = g_file_new_for_path ( g_test_get_filename ( G_TEST_DIST , " g-icon.c " , NULL ) ) ;
2010-07-27 00:40:17 +02:00
icon = g_file_icon_new ( file ) ;
g_object_unref ( file ) ;
2013-06-02 07:42:28 +02:00
loadable_icon_tests ( G_LOADABLE_ICON ( icon ) ) ;
2010-07-27 00:40:17 +02:00
str = g_icon_to_string ( icon ) ;
icon2 = g_icon_new_for_string ( str , NULL ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_free ( str ) ;
2013-06-02 07:42:28 +02:00
file = g_file_new_for_path ( " / \1 \2 \3 / \244 " ) ;
icon4 = g_file_icon_new ( file ) ;
variant = g_icon_serialize ( icon4 ) ;
icon3 = g_icon_deserialize ( variant ) ;
g_assert ( g_icon_equal ( icon4 , icon3 ) ) ;
g_assert ( g_icon_hash ( icon4 ) = = g_icon_hash ( icon3 ) ) ;
g_variant_unref ( variant ) ;
2010-07-27 00:40:17 +02:00
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
2013-06-02 07:42:28 +02:00
g_object_unref ( icon3 ) ;
g_object_unref ( icon4 ) ;
2013-11-08 14:28:55 +01:00
g_object_unref ( file ) ;
2013-06-02 07:42:28 +02:00
}
static void
test_bytes_icon ( void )
{
GBytes * bytes ;
GBytes * bytes2 ;
GIcon * icon ;
GIcon * icon2 ;
GIcon * icon3 ;
GVariant * variant ;
const gchar * data = " 1234567890987654321 " ;
bytes = g_bytes_new_static ( data , strlen ( data ) ) ;
icon = g_bytes_icon_new ( bytes ) ;
icon2 = g_bytes_icon_new ( bytes ) ;
g_assert ( g_bytes_icon_get_bytes ( G_BYTES_ICON ( icon ) ) = = bytes ) ;
g_assert ( g_icon_equal ( icon , icon2 ) ) ;
g_assert ( g_icon_hash ( icon ) = = g_icon_hash ( icon2 ) ) ;
g_object_get ( icon , " bytes " , & bytes2 , NULL ) ;
g_assert ( bytes = = bytes2 ) ;
g_bytes_unref ( bytes2 ) ;
variant = g_icon_serialize ( icon ) ;
icon3 = g_icon_deserialize ( variant ) ;
g_assert ( g_icon_equal ( icon , icon3 ) ) ;
g_assert ( g_icon_hash ( icon ) = = g_icon_hash ( icon3 ) ) ;
loadable_icon_tests ( G_LOADABLE_ICON ( icon ) ) ;
g_variant_unref ( variant ) ;
g_object_unref ( icon ) ;
g_object_unref ( icon2 ) ;
g_object_unref ( icon3 ) ;
g_bytes_unref ( bytes ) ;
2010-07-27 00:40:17 +02:00
}
2008-10-21 13:51:48 +02:00
int
main ( int argc ,
char * argv [ ] )
{
g_test_init ( & argc , & argv , NULL ) ;
2013-04-21 00:50:21 +02:00
g_test_add_func ( " /icons/to-string " , test_g_icon_to_string ) ;
2010-07-27 00:40:17 +02:00
g_test_add_func ( " /icons/serialize " , test_g_icon_serialize ) ;
g_test_add_func ( " /icons/themed " , test_themed_icon ) ;
g_test_add_func ( " /icons/emblemed " , test_emblemed_icon ) ;
g_test_add_func ( " /icons/file " , test_file_icon ) ;
2013-06-02 07:42:28 +02:00
g_test_add_func ( " /icons/bytes " , test_bytes_icon ) ;
2008-10-21 13:51:48 +02:00
return g_test_run ( ) ;
}