linphone-desktop/tests/ui/scripts/Utils/utils.spec.qml

140 lines
3.1 KiB
QML

import QtQuick 2.7
import QtTest 1.1
// Explicit import, `utils.js` is not accessible in resources file
// when tests are executed.
import './utils.js' as Utils
// ===================================================================
TestCase {
id: testCase
name: 'UtilsTests'
function test_snakeToCamel_data () {
return [
{ input: 'foo_bar', output: 'fooBar' },
{ input: 'george_abitbol', output: 'georgeAbitbol' },
{ input: 'billTremendousAndHubert', output: 'billTremendousAndHubert' },
{ input: 'foo_bAr_BAZ', output: 'fooBArBAZ' }
]
}
function test_snakeToCamel (data) {
compare(Utils.snakeToCamel(data.input), data.output)
}
// -----------------------------------------------------------------
function test_setTimeoutWithoutParent () {
try {
Utils.setTimeout(0, function () {
fail('`setTimeout` was called without parent.')
})
} catch (e) {
compare(e, 'Error: Qt.createQmlObject(): Missing parent object')
}
}
function test_setTimeout_data () {
return [
{ time: 0 },
{ time: 100 }
]
}
function test_setTimeout (data) {
var failed = true
Utils.setTimeout.call(testCase, data.time, function () {
failed = false
})
if (!failed) {
fail('`setTimeout` callback was called before `wait`')
}
wait(200)
if (failed) {
fail('`setTimeout` failed because callback it was not called in due course')
}
}
// -----------------------------------------------------------------
function test_clearTimeout_data () {
return [
{ time: 0 },
{ time: 100 }
]
}
function test_clearTimeout (data) {
var failed = false
var timeout = Utils.setTimeout.call(testCase, data.time, function () {
failed = true
})
// Simulate time
Utils.times(500000, function (i) {
// Nothing.
})
if (failed) {
fail('`setTimeout` callback was called')
}
Utils.clearTimeout(timeout)
wait(100)
if (failed) {
fail('`setTimeout` callback was called')
}
}
// -----------------------------------------------------------------
function test_times1_data () {
return [
{
cb: function (n) { return n * 2 },
n: 10,
output: [ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18 ]
},
{
cb: function (n) { return n % 2 },
n: 10,
output: [ 0, 1, 0, 1, 0, 1, 0, 1, 0, 1 ]
}
]
}
function test_times1 (data) {
compare(Utils.times(data.n, data.cb), data.output)
}
function test_times2 () {
var sum = 0
Utils.times(5, function (i) { sum += (i + 1) })
compare(sum, 15)
}
// -----------------------------------------------------------------
function test_isString_data () {
return [
{ input: 'foo', output: true },
{ input: Object('bar'), output: true },
{ input: [ 0 ], output: false },
{ input: /baz/, output: false },
{ input: new Error, output: false },
{ input: true, output: false },
{ input: 42, output: false }
]
}
function test_isString (data) {
compare(Utils.isString(data.input), data.output)
}
}