aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/system/shared/utils.py
blob: a7f4756d9ffb2051f9abc5beffd9e55f3f436404 (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
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
############################################################################
#
# Copyright (C) 2022 The Qt Company Ltd.
# Contact: https://www.qt.io/licensing/
#
# This file is part of the Qt VS Tools.
#
# $QT_BEGIN_LICENSE:GPL-EXCEPT$
# Commercial License Usage
# Licensees holding valid commercial Qt licenses may use this file in
# accordance with the commercial license agreement provided with the
# Software or, alternatively, in accordance with the terms contained in
# a written agreement between you and The Qt Company. For licensing terms
# and conditions see https://www.qt.io/terms-conditions. For further
# information use the contact form at https://www.qt.io/contact-us.
#
# GNU General Public License Usage
# Alternatively, this file may be used under the terms of the GNU
# General Public License version 3 as published by the Free Software
# Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
# included in the packaging of this file. Please review the following
# information to ensure the GNU General Public License requirements will
# be met: https://www.gnu.org/licenses/gpl-3.0.html.
#
# $QT_END_LICENSE$
#
############################################################################

# -*- coding: utf-8 -*-

import os
import subprocess
from xml.dom import minidom


def startAppGetVersion():
    appContext = startApplication("devenv /LCID 1033")
    try:
        vsDirectory = appContext.commandLine.strip('"').partition("\\Common7")[0]
        programFilesDir = os.getenv("ProgramFiles(x86)")
        plv = subprocess.check_output('"%s/Microsoft Visual Studio/Installer/vswhere.exe" '
                                      '-path "%s" -property catalog_productLineVersion'
                                      % (programFilesDir, vsDirectory))
        version = str(plv).strip("b'\\rn\r\n")
    except:
        test.fatal("Cannot determine used VS version")
        version = ""
    if version != "2017":
        mouseClick(waitForObject(names.continueWithoutCode_Label))
    return version


def openExtensionManager(version):
    if version == "2017":
        mouseClick(waitForObject(names.tools_MenuItem))
        mouseClick(waitForObject(names.pART_Popup_Extensions_and_Updates_MenuItem))
    else:
        mouseClick(waitForObject(names.extensions_MenuItem))
        mouseClick(waitForObject(names.pART_Popup_Manage_Extensions_MenuItem))


def selectInstalledVsTools(version):
    openExtensionManager(version)
    if version == "2017":
        try:
            vsToolsLabel = waitForObject(names.extensionManager_UI_InstalledExtItem_Qt_2017_Label,
                                         5000)
        except:
            return None
    else:
        mouseClick(waitForObject({"type": "TreeItem", "id": "Installed"}))
        try:
            vsToolsLabel = waitForObject(names.extensionManager_UI_InstalledExtItem_Qt_Label,
                                         5000)
        except:
            return None
    mouseClick(vsToolsLabel)
    return vsToolsLabel.text


def changesScheduledLabelExists():
    return object.exists(names.changes_scheduled_Label)


def readExpectedVsToolsVersion():
    expectedVersion = os.getenv("SQUISH_VSTOOLS_VERSION")
    if expectedVersion:
        return expectedVersion
    test.warning("No expected Qt VS Tools version set.",
                 "The environment variable SQUISH_VSTOOLS_VERSION is not set. Falling back to "
                 "reading the expected version from version.targets")
    try:
        versionXml = minidom.parse("../../../../version.targets")
        return versionXml.getElementsByTagName("QtVSToolsVersion")[0].firstChild.data
    except:
        test.fatal("Can't read expected VS Tools version from sources.")
        return ""


def verifyVsToolsVersion():
    displayedVersion = waitForObjectExists(names.manage_Extensions_Version_Label).text
    expectedVersion = readExpectedVsToolsVersion()
    test.compare(displayedVersion, expectedVersion,
                 "Expected version of VS Tools is displayed?")


def openVsToolsMenu(version):
    if version == "2017":
        mouseClick(waitForObject(names.qt_VS_Tools_MenuItem, 5000))
    else:
        mouseClick(waitForObject(names.extensions_MenuItem))
        mouseClick(waitForObject(names.pART_Popup_Qt_VS_Tools_MenuItem, 5000))


def closeMainWindow():
    mouseClick(waitForObject(names.file_MenuItem))
    mouseClick(waitForObject(names.pART_Popup_Exit_MenuItem))