File indexing completed on 2024-05-12 05:40:48

0001 /***************************************************************************
0002  *   Copyright (C) 2023 by Renaud Guezennec                                *
0003  *                                                                         *
0004  *   Rolisteam is free software; you can redistribute it and/or modify     *
0005  *   it under the terms of the GNU General Public License as published by  *
0006  *   the Free Software Foundation; either version 2 of the License, or     *
0007  *   (at your option) any later version.                                   *
0008  *                                                                         *
0009  *   This program is distributed in the hope that it will be useful,       *
0010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
0011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
0012  *   GNU General Public License for more details.                          *
0013  *                                                                         *
0014  *   You should have received a copy of the GNU General Public License     *
0015  *   along with this program; if not, write to the                         *
0016  *   Free Software Foundation, Inc.,                                       *
0017  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
0018  ***************************************************************************/
0019 
0020 #include <QtTest>
0021 #include <helper.h>
0022 #include <memory>
0023 #include <QDateTime>
0024 #include "common/remotelogcontroller.h"
0025 
0026 class RemoteLogTest : public QObject
0027 {
0028     Q_OBJECT
0029 
0030 public:
0031     RemoteLogTest();
0032 
0033 private slots:
0034     void init();
0035     void getAndSetTest();
0036 
0037 private:
0038     std::unique_ptr<RemoteLogController> m_ctrl;
0039 };
0040 
0041 RemoteLogTest::RemoteLogTest()
0042 {
0043 
0044 }
0045 
0046 void RemoteLogTest::init()
0047 {
0048     m_ctrl.reset(new RemoteLogController);
0049 }
0050 
0051 void RemoteLogTest::getAndSetTest()
0052 {
0053     for(int i = 0 ; i < 10; ++i)
0054     {
0055         m_ctrl->addLog(Helper::randomString(), Helper::randomString(), Helper::randomString(), QDateTime::currentDateTime().toString());
0056     }
0057 
0058     auto id = Helper::generate<int>(0,10);
0059 
0060     m_ctrl->setAppId(id);
0061     QCOMPARE(m_ctrl->appId(), id);
0062 
0063 
0064     auto strId = Helper::randomString();
0065     m_ctrl->setLocalUuid(strId);
0066     QCOMPARE(m_ctrl->localUuid(), strId);
0067 
0068 }
0069 
0070 
0071 
0072 
0073 
0074 
0075 QTEST_MAIN(RemoteLogTest);
0076 
0077 #include "tst_remotelog.moc"