0
|
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/SQLiteIndex.h"
|
|
23 #include "../../Framework/Plugins/IndexUnitTests.h"
|
|
24
|
|
25 #include <Core/Logging.h>
|
|
26 #include <Core/SystemToolbox.h>
|
|
27
|
|
28 #include <gtest/gtest.h>
|
|
29
|
|
30
|
|
31
|
|
32 TEST(SQLiteIndex, Lock)
|
|
33 {
|
|
34 {
|
|
35 // No locking if using memory backend
|
|
36 OrthancDatabases::SQLiteIndex db1;
|
|
37 OrthancDatabases::SQLiteIndex db2;
|
|
38
|
|
39 db1.Open();
|
|
40 db2.Open();
|
|
41 }
|
|
42
|
|
43 Orthanc::SystemToolbox::RemoveFile("index.db");
|
|
44
|
|
45 {
|
|
46 OrthancDatabases::SQLiteIndex db1("index.db");
|
|
47 OrthancDatabases::SQLiteIndex db2("index.db");
|
|
48
|
|
49 db1.Open();
|
|
50 ASSERT_THROW(db2.Open(), Orthanc::OrthancException);
|
|
51 }
|
|
52
|
|
53 {
|
|
54 OrthancDatabases::SQLiteIndex db3("index.db");
|
|
55 db3.Open();
|
|
56 }
|
|
57 }
|
|
58
|
|
59
|
|
60
|
|
61 int main(int argc, char **argv)
|
|
62 {
|
|
63 ::testing::InitGoogleTest(&argc, argv);
|
|
64 Orthanc::Logging::Initialize();
|
|
65 Orthanc::Logging::EnableInfoLevel(true);
|
|
66 Orthanc::Logging::EnableTraceLevel(true);
|
|
67
|
|
68 int result = RUN_ALL_TESTS();
|
|
69
|
|
70 Orthanc::Logging::Finalize();
|
|
71
|
|
72 return result;
|
|
73 }
|