[gxml] GomDocument: Added load/iterate benchmark
- From: Daniel Espinosa Ortiz <despinosa src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gxml] GomDocument: Added load/iterate benchmark
- Date: Wed, 20 Mar 2019 20:35:42 +0000 (UTC)
commit ab4e60d5da78ab44ff3393434e4573b8d90a8c5d
Author: Daniel Espinosa <esodan gmail com>
Date: Wed Mar 20 12:25:55 2019 -0600
GomDocument: Added load/iterate benchmark
test/GomDocumentPerformanceIterateTest.vala | 52 +++++++++++++++++++++++++++++
test/meson.build | 13 ++++++++
2 files changed, 65 insertions(+)
---
diff --git a/test/GomDocumentPerformanceIterateTest.vala b/test/GomDocumentPerformanceIterateTest.vala
new file mode 100644
index 0000000..144cc68
--- /dev/null
+++ b/test/GomDocumentPerformanceIterateTest.vala
@@ -0,0 +1,52 @@
+/* -*- Mode: vala; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
+/* GomDocumentPerformanceIterateTest.vala
+ *
+ * Copyright (C) 2019 Daniel Espinosa <esodan gmail com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ * Daniel Espinosa <esodan gmail com>
+ */
+
+using GXml;
+class GXmlTest.Suite : Object
+{
+ static int main (string[] args)
+ {
+ GLib.Intl.setlocale (GLib.LocaleCategory.ALL, "");
+ Test.init (ref args);
+ Test.add_func ("/gxml/gom-document/performance/iterate", () => {
+ try {
+ DomDocument d = new GomDocument ();
+ File dir = File.new_for_path (GXmlTestConfig.TEST_DIR);
+ assert (dir.query_exists ());
+ File f = File.new_for_uri (dir.get_uri ()+"/test-large.xml");
+ assert (f.query_exists ());
+ Test.timer_start ();
+ d.read_from_file (f);
+ var t = Test.timer_elapsed ();
+ message ("Elapsed time: %g", t);
+ Test.timer_start ();
+ foreah (DomNode n in d.child_nodes) {
+ assert (n.node_name != "");
+ }
+ } catch (GLib.Error e) {
+ warning ("Error: %s", e.message);
+ assert_not_reached ();
+ }
+ });
+ return Test.run ();
+}
+}
diff --git a/test/meson.build b/test/meson.build
index d924605..222ff5c 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -90,6 +90,19 @@ gom_performance = executable('gom-performance-load', files_gom_performance + con
benchmark ('gom-performance-load', gom_performance)
+files_gom_performance_iterate = files ([
+ 'GomDocumentPerformanceIterateTest.vala'
+ ])
+
+gom_performance = executable('gom-performance-iterate', files_gom_performance + configvapi + configtestvapi,
+ vala_args : [],
+ dependencies : [ gio, gee, xml, inc_libh_dep, testdirs_dep, inc_rooth_dep],
+ link_with: libgxml
+)
+
+benchmark ('gom-performance-iterate', gom_performance)
+
+
files_libxml_performance = files ([
'GXmlDocumentPerformanceTest.vala'
])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]