comparison MySQL/UnitTests/UnitTestsMain.cpp @ 0:7cea966b6829

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 04 Jul 2018 08:16:29 +0200
parents
children 9e419261f1c9
comparison
equal deleted inserted replaced
-1:000000000000 0:7cea966b6829
1 /**
2 * Orthanc - A Lightweight, RESTful DICOM Store
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium
6 *
7 * This program is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU Affero General Public License
9 * as published by the Free Software Foundation, either version 3 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/
20
21
22 #include "../Plugins/MySQLIndex.h"
23
24 OrthancDatabases::MySQLParameters globalParameters_;
25
26 #include "../../Framework/Plugins/IndexUnitTests.h"
27 #include "../../Framework/MySQL/MySQLDatabase.h"
28
29 #include <Core/Logging.h>
30
31 #include <gtest/gtest.h>
32
33
34 TEST(MySQLIndex, Lock)
35 {
36 OrthancDatabases::MySQLParameters noLock = globalParameters_;
37 noLock.SetLock(false);
38
39 OrthancDatabases::MySQLParameters lock = globalParameters_;
40 lock.SetLock(true);
41
42 OrthancDatabases::MySQLIndex db1(noLock);
43 db1.SetClearAll(true);
44 db1.Open();
45
46 {
47 OrthancDatabases::MySQLIndex db2(lock);
48 db2.Open();
49
50 OrthancDatabases::MySQLIndex db3(lock);
51 ASSERT_THROW(db3.Open(), Orthanc::OrthancException);
52 }
53
54 OrthancDatabases::MySQLIndex db4(lock);
55 db4.Open();
56 }
57
58
59 int main(int argc, char **argv)
60 {
61 if (argc < 5)
62 {
63 std::cerr << "Usage: " << argv[0] << " <socket> <username> <password> <database>"
64 << std::endl << std::endl
65 << "Example: " << argv[0] << " /var/run/mysqld/mysqld.sock root root orthanctest"
66 << std::endl << std::endl;
67 return -1;
68 }
69
70 globalParameters_.SetUnixSocket(argv[1]);
71 globalParameters_.SetUsername(argv[2]);
72 globalParameters_.SetPassword(argv[3]);
73 globalParameters_.SetDatabase(argv[4]);
74
75 ::testing::InitGoogleTest(&argc, argv);
76 Orthanc::Logging::Initialize();
77 Orthanc::Logging::EnableInfoLevel(true);
78 Orthanc::Logging::EnableTraceLevel(true);
79
80 int result = RUN_ALL_TESTS();
81
82 Orthanc::Logging::Finalize();
83
84 OrthancDatabases::MySQLDatabase::GlobalFinalization();
85
86 return result;
87 }