---
gobject/bindtests-manual.js | 110 +++++++++++++++++++++++++++++++++++++++++++
gobject/run-bindtests | 1 +
2 files changed, 111 insertions(+), 0 deletions(-)
create mode 100644 gobject/bindtests-manual.js
diff --git a/gobject/bindtests-manual.js b/gobject/bindtests-manual.js
new file mode 100644
index 0000000..84a1546
--- /dev/null
+++ b/gobject/bindtests-manual.js
@@ -0,0 +1,110 @@
+// libguestfs manually written gobject binding tests
+// Copyright (C) 2012 Red Hat Inc.
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program 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 General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+const Guestfs = imports.gi.Guestfs;
+
+var fail = false;
+
+function check_error(f) {
+ var threw = false;
+
+ try {
+ g[f]();
+ } catch (error) {
+ threw = true;
+ if (!error.message.match(/: error$/)) {
+ print(f + " threw unexpected error: " + error.message);
+ fail = true;
+ }
+ }
+ if (!threw) {
+ print(f + " failed to throw an error");
+ fail = true;
+ }
+}
+
+function eq_fail(f, v) {
+ print(f + " returned unexpected value: " + v);
+ fail = true;
+}
+
+var g = new Guestfs.Session();
+
+var v;
+var eq;
+
+v = g.test0rint('1');
+v == 1 || eq_fail('test0rint', v);
+check_error('test0rinterr');
+
+v = g.test0rint64('1');
+v == 1 || eq_fail('test0rint64', v);
+check_error('test0rint64err');
+
+v = g.test0rbool('true');
+v == 1 || eq_fail('test0rbool', v);
+check_error('test0rboolerr');
+
+v = g.test0rconststring('1');
+v == 'static string' || eq_fail('test0rconststring', v);
+check_error('test0rconststringerr');
+
+v = g.test0rconstoptstring('1');
+v == 'static string' || eq_fail('test0rconstoptstring', v);
+//check_error('test0rconstoptstringerr');
+
+v = g.test0rstring('string');
+v == 'string' || eq_fail('test0rstring', v);
+check_error('test0rstringerr');
+
+v = g.test0rstringlist('5');
+eq = v.length == 5;
+for (var i = 0; eq && i < 5; i++) {
+ if (v[i] != i) eq = false;
+}
+eq || eq_fail('test0rstringlist', v.join(' '));
+check_error('test0rstringlisterr');
+
+v = g.test0rstruct('1');
+v.pv_size == 0 || eq_fail('test0rstruct', v);
+check_error('test0rstructerr');
+
+v = g.test0rstructlist('5');
+eq = v.length == 5;
+for (var i = 0; eq && i < 5; i++) {
+ if (v[i].pv_size != i) eq = false;
+}
+eq || eq_fail('test0rstructlist', v);
+check_error('test0rstructlisterr');
+
+v = g.test0rhashtable('5');
+eq = true;
+for (var i = 0; eq && i < 5; i++) {
+ if (v[i] != i) eq = false;
+}
+eq || eq_fail('test0rhashtable', v);
+check_error('test0rhashtableerr');
+
+v = g.test0rbufferout("01234");
+eq = v.length == 5;
+for (var i = 0; i < v.length; i++) {
+ if (v[i] != 48 + i) eq = false; // 48 = ascii '0'
+}
+eq || eq_fail('test0rbufferout', v);
+check_error('test0rbufferouterr');
+
+fail ? 1 : 0;
diff --git a/gobject/run-bindtests b/gobject/run-bindtests
index f344002..3df2333 100755
--- a/gobject/run-bindtests
+++ b/gobject/run-bindtests
@@ -20,3 +20,4 @@ set -e
../run gjs bindtests.js > bindtests.tmp
diff -u ${srcdir}/../bindtests bindtests.tmp
+../run gjs bindtests-manual.js 2>/dev/null
--
1.7.7.5