aboutsummaryrefslogtreecommitdiffstats
path: root/squishtests/suite_neptune3/tst_climate/steps/popup_climate.py
blob: 9148880eb36241931cf3e900c234ea2df9bc135f (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
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
# -*- coding: utf-8 -*-

############################################################################
##
## Copyright (C) 2019 Luxoft Sweden AB
## Copyright (C) 2018 Pelagicore AG
## Contact: https://www.qt.io/licensing/
##
## This file is part of the Neptune 3 UI.
##
## $QT_BEGIN_LICENSE:GPL-QTAS$
## Commercial License Usage
## Licensees holding valid commercial Qt Automotive Suite 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 or (at your option) any later version
## approved by the KDE Free Qt Foundation. The licenses are as published by
## the Free Software Foundation and appearing in the file LICENSE.GPL3
## 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$
##
## SPDX-License-Identifier: GPL-3.0
##
#############################################################################

import common.app as app  # to switch context
import common.settings as settings  # waiting duration

# squish
import names


@OnFeatureStart
def hook(context):
    start_neptune_ui_app_w_focus("console")


@Given("the climate area is tapped")
def step(context):
    app.switch_to_app('climate')
    climateMouseArea = squish.waitForObjectExists(
                                 names.climateAreaMouseArea_MouseArea)
    squish.tapObject(climateMouseArea)


def map_button(button_name):
    if button_name == 'rear defrost':
        select_name = names.rear_defrost_Button
    elif button_name == 'front defrost':
        select_name = names.front_defrost_Button
    elif button_name == 'recirculation':
        select_name = names.recirculation_Button
    elif button_name == 'seat heater driver':
        select_name = names.seat_heater_driver_Button
    elif button_name == 'steering wheel heat':
        select_name = names.steering_wheel_heat_Button
    else:
        select_name = names.seat_heater_passenger_Button
    selected_button = waitForObject(select_name)
    return selected_button


@Then("select climate button '|word|'")
def step(context, button_name):
    selected_button = map_button(button_name)
    squish.tapObject(selected_button)


@Then("climate button '|word|' shall be checked")
def step(context, button_name):
    selected_button = map_button(button_name)
    test.compare(selected_button.checked, True, "some climate button")
    squish.snooze(1)
    app.switch_to_main_app()


@When("the '|word|' climate slider is moved '|word|'")
def step(context, leftRight, change):
    if not context.userData:
        context.userData = {}

    climate_slider_handle = {}
    if leftRight == 'left':
        climate_slider_left = squish.waitForObjectExists(
                                      names.leftTempSlider_TemperatureSlider)
        context.userData['leftSliderValue'] = climate_slider_left.value
        climate_slider_handle = squish.waitForObjectExists(
                                       names.leftTempSlider_TemperatureSlider)
    else:
        climate_slider_right = squish.waitForObjectExists(
                                       names.rightTempSlider_TemperatureSlider)
        context.userData['rightSliderValue'] = climate_slider_right.value
        climate_slider_handle = squish.waitForObjectExists(
                                       names.rightTempSlider_TemperatureSlider)

    mousePress(climate_slider_handle, Qt.LeftButton)
    squish.snooze(settings.G_WAIT_SOME_STEPS_SEC)
    move = QPoint(0, 0)
    if change == 'upwards':
        move = QPoint(0, -40)
    else:
        move = QPoint(0, 40)
    ts_movement = coord_transform2D(move)

    mouseMove(climate_slider_handle, ts_movement.x, ts_movement.y)
    snooze(settings.G_WAIT_SOME_STEPS_SEC)
    mouseRelease(Qt.LeftButton)


@Then("the climate slider value on the '|word|' should '|word|'")
def step(context, leftRight, change):
    if not context.userData:
        context.userData = {}

    before_value = 0
    current_value = 0
    if leftRight == 'left':
        before_value = context.userData['leftSliderValue']
        climate_slider_left = squish.waitForObjectExists(
                                        names.leftTempSlider_TemperatureSlider)
        current_value = climate_slider_left.value
    else:
        before_value = context.userData['rightSliderValue']
        climate_slider_right = squish.waitForObjectExists(
                                       names.rightTempSlider_TemperatureSlider)
        current_value = climate_slider_right.value

    test.log("Before: " + str(before_value) + " now: " + str(current_value))

    is_now_smaller = (current_value < before_value)
    is_equal = (current_value == before_value)

    if change == 'increase':
        test.compare(not is_now_smaller and not is_equal, True,
                     "has greater value")
        test.compare(not is_now_smaller and not is_equal, True,
                     "has greater value")
    else:  # decreased
        test.compare(is_now_smaller, True,
                    "has smaller value")