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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2013 Giovanni Campagna <gcampagna@src.gnome.org>
imports.gi.versions.Gdk = '4.0';
imports.gi.versions.Gtk = '4.0';
const ByteArray = imports.byteArray;
const {Gdk, Gio, GObject, Gtk} = imports.gi;
// This is ugly here, but usually it would be in a resource
function createTemplate(className) {
return `
<interface>
<template class="${className}" parent="GtkGrid">
<property name="margin_top">10</property>
<property name="margin_bottom">10</property>
<property name="margin_start">10</property>
<property name="margin_end">10</property>
<child>
<object class="GtkLabel" id="label-child">
<property name="label">Complex!</property>
<signal name="copy-clipboard" handler="templateCallback" swapped="no"/>
</object>
</child>
<child>
<object class="GtkLabel" id="label-child2">
<property name="label">Complex as well!</property>
<signal name="copy-clipboard" handler="boundCallback" object="label-child" swapped="no"/>
</object>
</child>
<child>
<object class="GtkLabel" id="internal-label-child">
<property name="label">Complex and internal!</property>
</object>
</child>
</template>
</interface>`;
}
const MyComplexGtkSubclass = GObject.registerClass({
Template: ByteArray.fromString(createTemplate('Gjs_MyComplexGtkSubclass')),
Children: ['label-child', 'label-child2'],
InternalChildren: ['internal-label-child'],
CssName: 'complex-subclass',
}, class MyComplexGtkSubclass extends Gtk.Grid {
templateCallback(widget) {
this.callbackEmittedBy = widget;
}
boundCallback(widget) {
widget.callbackBoundTo = this;
}
testChildrenExist() {
this._internalLabel = this.get_template_child(MyComplexGtkSubclass, 'label-child');
expect(this._internalLabel).toEqual(jasmine.anything());
expect(this.label_child2).toEqual(jasmine.anything());
expect(this._internal_label_child).toEqual(jasmine.anything());
}
});
const MyComplexGtkSubclassFromResource = GObject.registerClass({
Template: 'resource:///org/gjs/jsunit/complex4.ui',
Children: ['label-child', 'label-child2'],
InternalChildren: ['internal-label-child'],
}, class MyComplexGtkSubclassFromResource extends Gtk.Grid {
testChildrenExist() {
expect(this.label_child).toEqual(jasmine.anything());
expect(this.label_child2).toEqual(jasmine.anything());
expect(this._internal_label_child).toEqual(jasmine.anything());
}
templateCallback(widget) {
this.callbackEmittedBy = widget;
}
boundCallback(widget) {
widget.callbackBoundTo = this;
}
});
const [templateFile, stream] = Gio.File.new_tmp(null);
const baseStream = stream.get_output_stream();
const out = new Gio.DataOutputStream({baseStream});
out.put_string(createTemplate('Gjs_MyComplexGtkSubclassFromFile'), null);
out.close(null);
const MyComplexGtkSubclassFromFile = GObject.registerClass({
Template: templateFile.get_uri(),
Children: ['label-child', 'label-child2'],
InternalChildren: ['internal-label-child'],
}, class MyComplexGtkSubclassFromFile extends Gtk.Grid {
testChildrenExist() {
expect(this.label_child).toEqual(jasmine.anything());
expect(this.label_child2).toEqual(jasmine.anything());
expect(this._internal_label_child).toEqual(jasmine.anything());
}
templateCallback(widget) {
this.callbackEmittedBy = widget;
}
boundCallback(widget) {
widget.callbackBoundTo = this;
}
});
const SubclassSubclass = GObject.registerClass(
class SubclassSubclass extends MyComplexGtkSubclass {});
const CustomActionWidget = GObject.registerClass(
class CustomActionWidget extends Gtk.Widget {
static _classInit(klass) {
klass = Gtk.Widget._classInit(klass);
Gtk.Widget.install_action.call(klass,
'custom.action',
null,
widget => (widget.action = 42));
return klass;
}
});
function validateTemplate(description, ClassName, pending = false) {
let suite = pending ? xdescribe : describe;
suite(description, function () {
let win, content;
beforeEach(function () {
win = new Gtk.Window();
content = new ClassName();
content.label_child.emit('copy-clipboard');
content.label_child2.emit('copy-clipboard');
win.set_child(content);
});
it('sets up internal and public template children', function () {
content.testChildrenExist();
});
it('sets up public template children with the correct widgets', function () {
expect(content.label_child.get_label()).toEqual('Complex!');
expect(content.label_child2.get_label()).toEqual('Complex as well!');
});
it('sets up internal template children with the correct widgets', function () {
expect(content._internal_label_child.get_label())
.toEqual('Complex and internal!');
});
it('connects template callbacks to the correct handler', function () {
expect(content.callbackEmittedBy).toBe(content.label_child);
});
it('binds template callbacks to the correct object', function () {
expect(content.label_child2.callbackBoundTo).toBe(content.label_child);
});
afterEach(function () {
win.destroy();
});
});
}
describe('Gtk overrides', function () {
beforeAll(function () {
Gtk.init();
});
afterAll(function () {
templateFile.delete(null);
});
validateTemplate('UI template', MyComplexGtkSubclass);
validateTemplate('UI template from resource', MyComplexGtkSubclassFromResource);
validateTemplate('UI template from file', MyComplexGtkSubclassFromFile);
validateTemplate('Class inheriting from template class', SubclassSubclass, true);
it('sets CSS names on classes', function () {
expect(Gtk.Widget.get_css_name.call(MyComplexGtkSubclass)).toEqual('complex-subclass');
});
it('static inheritance works', function () {
expect(MyComplexGtkSubclass.get_css_name()).toEqual('complex-subclass');
});
it('can create a Gtk.TreeIter with accessible stamp field', function () {
const iter = new Gtk.TreeIter();
iter.stamp = 42;
expect(iter.stamp).toEqual(42);
});
it('can create a Gtk.CustomSorter with callback', function () {
const sortFunc = jasmine.createSpy('sortFunc').and.returnValue(1);
const model = Gtk.StringList.new(['hello', 'world']);
const sorter = Gtk.CustomSorter.new(sortFunc);
void Gtk.SortListModel.new(model, sorter);
expect(sortFunc).toHaveBeenCalledOnceWith(jasmine.any(Gtk.StringObject), jasmine.any(Gtk.StringObject));
});
it('can change the callback of a Gtk.CustomSorter', function () {
const model = Gtk.StringList.new(['hello', 'world']);
const sorter = Gtk.CustomSorter.new(null);
void Gtk.SortListModel.new(model, sorter);
const sortFunc = jasmine.createSpy('sortFunc').and.returnValue(1);
sorter.set_sort_func(sortFunc);
expect(sortFunc).toHaveBeenCalledOnceWith(jasmine.any(Gtk.StringObject), jasmine.any(Gtk.StringObject));
sortFunc.calls.reset();
sorter.set_sort_func(null);
expect(sortFunc).not.toHaveBeenCalled();
});
});
describe('Gtk 4 regressions', function () {
it('Gdk.Event fundamental type should not crash', function () {
expect(() => new Gdk.Event()).toThrowError(/Couldn't find a constructor/);
});
xit('Actions added via Gtk.WidgetClass.add_action() should not crash', function () {
const custom = new CustomActionWidget();
custom.activate_action('custom.action', null);
expect(custom.action).toEqual(42);
}).pend('https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/3796');
});
|