aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlpromise/data/promise-executor-reject.qml
blob: 321506c483c9dd7c08351752f9d86bc596fe74e8 (plain)
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
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick 2.0

QtObject {
    property string resolution: "reject promise";

    property bool wasExecutorCalled: false
    property bool wasPromiseRejected: false
    property bool wasPromiseTypeReturnedByThen: false;
    property bool wasResolutionForwardedCorrectly: false;

    Component.onCompleted: {
        var promise = new Promise(function(resolve, reject) {
            wasExecutorCalled = true;
            reject(resolution);
        });

        var res = promise.then(function(result) {
            wasPromiseRejected = false;
        }, function(err) {
            wasPromiseRejected = true;
            wasResolutionForwardedCorrectly = (err === resolution);
        });

        wasPromiseTypeReturnedByThen = (typeof res === 'Promise');
    }
}