File indexing completed on 2024-05-12 05:42:41

0001 #include <cutehmi/InplaceError.hpp>
0002 
0003 #include <QtTest/QtTest>
0004 
0005 namespace cutehmi {
0006 
0007 class test_InplaceError:
0008     public QObject
0009 {
0010         Q_OBJECT
0011 
0012     private slots:
0013         void macro();
0014 
0015         void str();
0016 };
0017 
0018 void test_InplaceError::macro()
0019 {
0020     InplaceError err = CUTEHMI_ERROR("Error message.");
0021     QCOMPARE(err.message, "Error message.");
0022     QCOMPARE(err.file, __FILE__);
0023     QVERIFY(err.line != 0);
0024     QCOMPARE(err.function, Q_FUNC_INFO);
0025     QCOMPARE(err.code(), Error::FAIL);
0026 }
0027 
0028 void test_InplaceError::str()
0029 {
0030     int line = __LINE__;
0031     InplaceError err = InplaceError("Error string.", __FILE__, line, Q_FUNC_INFO);
0032     QString str = err.str();
0033     QVERIFY(str.contains("Error string."));
0034 #ifndef CUTEHMI_NDEBUG
0035     QVERIFY(str.contains(__FILE__));
0036     QVERIFY(str.contains(QString::number(line)));
0037     QVERIFY(str.contains(Q_FUNC_INFO));
0038 #else
0039     QVERIFY(!str.contains(__FILE__));
0040     QVERIFY(!str.contains(QString::number(line)));
0041     QVERIFY(!str.contains(Q_FUNC_INFO));
0042 #endif
0043 }
0044 
0045 
0046 }
0047 
0048 QTEST_MAIN(cutehmi::test_InplaceError)
0049 #include "test_InplaceError.moc"
0050 
0051 //(c)C: Copyright © 2019-2020, Michał Policht <michal@policht.pl>. All rights reserved.
0052 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0053 //(c)C: This file is a part of CuteHMI.
0054 //(c)C: CuteHMI 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.
0055 //(c)C: CuteHMI 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.
0056 //(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI.  If not, see <https://www.gnu.org/licenses/>.
0057 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0058 //(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
0059 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0060 //(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.