1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2012 Red Hat, Inc.
// SPDX-FileCopyrightText: 2019 Philip Chimento <philip.chimento@gmail.com>
// File with tests from the WarnLib-1.0.gir test suite from GI
const {Gio, GObject, WarnLib} = imports.gi;
describe('WarnLib', function () {
// Calling matches() on an unpaired error used to JSUnit.assert:
// https://bugzilla.gnome.org/show_bug.cgi?id=689482
it('bug 689482', function () {
try {
WarnLib.throw_unpaired();
fail();
} catch (e) {
expect(e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.NOT_FOUND)).toBeFalsy();
}
});
const WhateverImpl = GObject.registerClass({
Implements: [WarnLib.Whatever],
}, class WhateverImpl extends GObject.Object {
vfunc_do_moo(x) {
expect(x).toEqual(5);
this.mooCalled = true;
}
vfunc_do_boo(x) {
expect(x).toEqual(6);
this.booCalled = true;
}
});
it('calls vfuncs with unnamed parameters', function () {
const o = new WhateverImpl();
o.do_moo(5, null);
o.do_boo(6, null);
expect(o.mooCalled).toBeTruthy(); // spies don't work on vfuncs
expect(o.booCalled).toBeTruthy();
});
it('handles enum members that start with a digit', function () {
expect(WarnLib.NumericEnum['1ST']).toEqual(1);
});
});
|