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
|
/************************************************************************
*
* Copyright (C) 2023 IRCAD France
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#include "spin_box.hpp"
#include <QDoubleSpinBox>
#include <QSpinBox>
namespace sight::ui::test::helper
{
//------------------------------------------------------------------------------
static void change(tester& _tester, const QPoint& _pos)
{
_tester.interact(std::make_unique<mouse_click>(Qt::MouseButton::LeftButton, Qt::NoModifier, _pos));
}
//------------------------------------------------------------------------------
void spin_box::increment(tester& _tester, const selector& _spin_box, int _times)
{
auto bt = _tester.add_in_backtrace(
"incrementing \"" + _spin_box.get_description(_tester) + "\" spin box " + std::to_string(_times) + "times"
);
_spin_box.select(_tester);
auto* widget = _tester.get<QWidget*>();
for(int i = 0 ; i < _times ; i++)
{
change(_tester, tester::right_of(widget));
}
}
//------------------------------------------------------------------------------
void spin_box::decrement(tester& _tester, const selector& _spin_box, int _times)
{
auto bt = _tester.add_in_backtrace(
"decrementing \"" + _spin_box.get_description(_tester) + "\" spin box " + std::to_string(_times) + "times"
);
_spin_box.select(_tester);
auto* widget = _tester.get<QWidget*>();
for(int i = 0 ; i < _times ; i++)
{
change(_tester, tester::left_of(widget));
}
}
//------------------------------------------------------------------------------
void spin_box::value_equals(tester& _tester, const selector& _spin_box, const std::string& _expected)
{
auto bt = _tester.add_in_backtrace(
"checking whether \"" + _spin_box.get_description(_tester) + "\" spin box has the value " + _expected
);
_spin_box.select(_tester);
QString q_expected = QString::fromStdString(_expected);
_tester.doubt(
_spin_box.get_description(_tester) + " should have the value " + _expected,
[&q_expected](QObject* _obj)
{
if(auto* double_spin_box = qobject_cast<QDoubleSpinBox*>(_obj))
{
return double_spin_box->cleanText() == q_expected;
}
if(auto* int_spin_box = qobject_cast<QSpinBox*>(_obj))
{
return int_spin_box->cleanText() == q_expected;
}
return false;
});
}
//------------------------------------------------------------------------------
void spin_box::value_equals(tester& _tester, const selector& _spin_box, int _expected)
{
auto bt = _tester.add_in_backtrace(
"checking whether \"" + _spin_box.get_description(_tester) + "\" spin box has the value "
+ std::to_string(_expected)
);
_spin_box.select(_tester);
_tester.doubt(
_spin_box.get_description(_tester) + " should have the value " + std::to_string(_expected),
[&_expected](QObject* _obj)
{
if(auto* double_spin_box = qobject_cast<QDoubleSpinBox*>(_obj))
{
return double_spin_box->value() == _expected;
}
if(auto* int_spin_box = qobject_cast<QSpinBox*>(_obj))
{
return int_spin_box->value() == _expected;
}
return false;
});
}
} // namespace sight::ui::test::helper
|