[gxml] GDocument: added load/iterate benchmark test



commit 51f4ac38fab5cb92c4318bfd0a8d4197d5af1ac6
Author: Daniel Espinosa <esodan gmail com>
Date:   Wed Mar 20 12:30:57 2019 -0600

    GDocument: added load/iterate benchmark test

 test/GXmlDocumentPerformanceIterateTest.vala | 52 ++++++++++++++++++++++++++++
 test/meson.build                             | 16 +++++++--
 2 files changed, 66 insertions(+), 2 deletions(-)
---
diff --git a/test/GXmlDocumentPerformanceIterateTest.vala b/test/GXmlDocumentPerformanceIterateTest.vala
new file mode 100644
index 0000000..d148b85
--- /dev/null
+++ b/test/GXmlDocumentPerformanceIterateTest.vala
@@ -0,0 +1,52 @@
+/* -*- Mode: vala; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
+/* GXmlDocumentPerformanceIterateTest.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 222ff5c..5006e8c 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -94,13 +94,13 @@ files_gom_performance_iterate = files ([
                'GomDocumentPerformanceIterateTest.vala'
        ])
 
-gom_performance = executable('gom-performance-iterate', files_gom_performance + configvapi + configtestvapi,
+gom_performance_iterate = 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)
+benchmark ('gom-performance-iterate', gom_performance_iterate)
 
 
 files_libxml_performance = files ([
@@ -113,4 +113,16 @@ libxml_performance = executable('libxml-performance-load', files_libxml_performa
 )
 
 benchmark ('libxml-performance', libxml_performance)
+
+files_libxml_performance_iterate = files ([
+               'GXmlDocumentPerformanceIterateTest.vala'
+       ])
+
+libxml_performance_iterate = executable('libxml-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 ('libxml-performance-iterate', libxml_performance_iterate)
                


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]