tests: load required version of Clutter/Gtk early

This commit is contained in:
Lionel Landwerlin 2017-02-15 00:43:09 +00:00
parent c63b7f0c3f
commit dd8c06f2c5
17 changed files with 37 additions and 29 deletions

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage({ width: 640, height: 480 }); let stage = new Clutter.Stage({ width: 640, height: 480 });
UI.init(stage); UI.init(stage);

View File

@ -1,10 +1,11 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Cogl = imports.gi.Cogl; const Cogl = imports.gi.Cogl;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage({ user_resizable: true, width: 1024, height: 768 }); let stage = new Clutter.Stage({ user_resizable: true, width: 1024, height: 768 });

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage({ width: 640, height: 480 }); let stage = new Clutter.Stage({ width: 640, height: 480 });
UI.init(stage); UI.init(stage);

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage({ width: 640, height: 480 }); let stage = new Clutter.Stage({ width: 640, height: 480 });
UI.init(stage); UI.init(stage);

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage({ width: 640, height: 480 }); let stage = new Clutter.Stage({ width: 640, height: 480 });
UI.init(stage); UI.init(stage);

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage(); let stage = new Clutter.Stage();
UI.init(stage); UI.init(stage);

View File

@ -1,13 +1,13 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const Mainloop = imports.mainloop; const Mainloop = imports.mainloop;
const GLib = imports.gi.GLib; const GLib = imports.gi.GLib;
const Lang = imports.lang; const Lang = imports.lang;
const UI = imports.testcommon.ui;
const DELAY = 2000; const DELAY = 2000;
function resize_animated(label) { function resize_animated(label) {

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage({ width: 640, height: 480 }); let stage = new Clutter.Stage({ width: 640, height: 480 });
UI.init(stage); UI.init(stage);

View File

@ -1,11 +1,12 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const Lang = imports.lang; const Lang = imports.lang;
const St = imports.gi.St; const St = imports.gi.St;
const Calendar = imports.ui.calendar; const Calendar = imports.ui.calendar;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage({ width: 400, height: 400 }); let stage = new Clutter.Stage({ width: 400, height: 400 });

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage(); let stage = new Clutter.Stage();
UI.init(stage); UI.init(stage);

View File

@ -1,11 +1,12 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const Lang = imports.lang; const Lang = imports.lang;
const St = imports.gi.St; const St = imports.gi.St;
const Calendar = imports.ui.calendar; const Calendar = imports.ui.calendar;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage({ width: 400, height: 400 }); let stage = new Clutter.Stage({ width: 400, height: 400 });

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage(); let stage = new Clutter.Stage();
UI.init(stage); UI.init(stage);

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage(); let stage = new Clutter.Stage();
UI.init(stage); UI.init(stage);

View File

@ -1,13 +1,13 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const Gtk = imports.gi.Gtk; const Gtk = imports.gi.Gtk;
const Lang = imports.lang; const Lang = imports.lang;
const Shell = imports.gi.Shell; const Shell = imports.gi.Shell;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
// This is an interactive test of the sizing behavior of StScrollView. It // This is an interactive test of the sizing behavior of StScrollView. It
// may be interesting in the future to split out the two classes at the // may be interesting in the future to split out the two classes at the
// top into utility classes for testing the sizing behavior of other // top into utility classes for testing the sizing behavior of other

View File

@ -1,11 +1,11 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const Gtk = imports.gi.Gtk; const Gtk = imports.gi.Gtk;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage(); let stage = new Clutter.Stage();
UI.init(stage); UI.init(stage);

View File

@ -1,10 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const UI = imports.testcommon.ui;
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const St = imports.gi.St; const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() { function test() {
let stage = new Clutter.Stage(); let stage = new Clutter.Stage();
UI.init(stage); UI.init(stage);

View File

@ -1,5 +1,10 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const Config = imports.misc.config;
imports.gi.versions.Clutter = Config.LIBMUTTER_API_VERSION;
imports.gi.versions.Gtk = '3.0';
const Clutter = imports.gi.Clutter; const Clutter = imports.gi.Clutter;
const Gio = imports.gi.Gio; const Gio = imports.gi.Gio;
const GLib = imports.gi.GLib; const GLib = imports.gi.GLib;