| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QString unit-tests. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2009 Red Hat Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: | 
					
						
							|  |  |  |  *  Luiz Capitulino <lcapitulino@redhat.com> | 
					
						
							| 
									
										
										
										
											2010-05-12 16:34:42 -03:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. | 
					
						
							|  |  |  |  * See the COPYING.LIB file in the top-level directory. | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-01-12 11:33:22 -06:00
										 |  |  | #include <glib.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:19:43 +01:00
										 |  |  | #include "qapi/qmp/qstring.h"
 | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | #include "qemu-common.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Public Interface test-cases | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * (with some violations to access 'private' data) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  | static void qstring_from_str_test(void) | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | { | 
					
						
							|  |  |  |     QString *qstring; | 
					
						
							|  |  |  |     const char *str = "QEMU"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qstring = qstring_from_str(str); | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  |     g_assert(qstring != NULL); | 
					
						
							|  |  |  |     g_assert(qstring->base.refcnt == 1); | 
					
						
							|  |  |  |     g_assert(strcmp(str, qstring->string) == 0); | 
					
						
							|  |  |  |     g_assert(qobject_type(QOBJECT(qstring)) == QTYPE_QSTRING); | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // destroy doesn't exit yet
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     g_free(qstring->string); | 
					
						
							|  |  |  |     g_free(qstring); | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  | static void qstring_destroy_test(void) | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | { | 
					
						
							|  |  |  |     QString *qstring = qstring_from_str("destroy test"); | 
					
						
							|  |  |  |     QDECREF(qstring); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  | static void qstring_get_str_test(void) | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | { | 
					
						
							|  |  |  |     QString *qstring; | 
					
						
							|  |  |  |     const char *ret_str; | 
					
						
							|  |  |  |     const char *str = "QEMU/KVM"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qstring = qstring_from_str(str); | 
					
						
							|  |  |  |     ret_str = qstring_get_str(qstring); | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  |     g_assert(strcmp(ret_str, str) == 0); | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QDECREF(qstring); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  | static void qstring_append_chr_test(void) | 
					
						
							| 
									
										
										
										
											2009-11-18 23:05:28 -02:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     QString *qstring; | 
					
						
							|  |  |  |     const char *str = "qstring append char unit-test"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qstring = qstring_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; str[i]; i++) | 
					
						
							|  |  |  |         qstring_append_chr(qstring, str[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  |     g_assert(strcmp(str, qstring_get_str(qstring)) == 0); | 
					
						
							| 
									
										
										
										
											2009-11-18 23:05:28 -02:00
										 |  |  |     QDECREF(qstring); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  | static void qstring_from_substr_test(void) | 
					
						
							| 
									
										
										
										
											2009-11-18 23:05:29 -02:00
										 |  |  | { | 
					
						
							|  |  |  |     QString *qs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qs = qstring_from_substr("virtualization", 3, 9); | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  |     g_assert(qs != NULL); | 
					
						
							|  |  |  |     g_assert(strcmp(qstring_get_str(qs), "tualiza") == 0); | 
					
						
							| 
									
										
										
										
											2009-11-18 23:05:29 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QDECREF(qs); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  | static void qobject_to_qstring_test(void) | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | { | 
					
						
							|  |  |  |     QString *qstring; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qstring = qstring_from_str("foo"); | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  |     g_assert(qobject_to_qstring(QOBJECT(qstring)) == qstring); | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QDECREF(qstring); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  | int main(int argc, char **argv) | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  |     g_test_init(&argc, &argv, NULL); | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  |     g_test_add_func("/public/from_str", qstring_from_str_test); | 
					
						
							|  |  |  |     g_test_add_func("/public/destroy", qstring_destroy_test); | 
					
						
							|  |  |  |     g_test_add_func("/public/get_str", qstring_get_str_test); | 
					
						
							|  |  |  |     g_test_add_func("/public/append_chr", qstring_append_chr_test); | 
					
						
							|  |  |  |     g_test_add_func("/public/from_substr", qstring_from_substr_test); | 
					
						
							|  |  |  |     g_test_add_func("/public/to_qstring", qobject_to_qstring_test); | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 13:10:47 -06:00
										 |  |  |     return g_test_run(); | 
					
						
							| 
									
										
										
										
											2009-08-28 15:27:30 -03:00
										 |  |  | } |