Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / tests / dao / TestInit.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    TestInit.cpp
18  * @author  Pawel Sikorski (p.sikorski@samsung.com)
19  * @author  Andrzej Surdej (a.surdej@samsung.com)
20  * @version 1.0
21  * @brief   Init widgetDB module test
22  */
23
24 #include <sys/wait.h>
25 #include <dpl/test/test_runner.h>
26 #include <dpl/log/log.h>
27 #include <dpl/wrt-dao-ro/WrtDatabase.h>
28
29 int main (int argc, char *argv[])
30 {
31     int ret = system("/usr/bin/widgetdb_tests_prepare_db.sh start");
32
33     if (!WIFEXITED(ret)) {      //unexpected terminate
34         LogDebug("Fail while preparing database. Restoring");
35         ret = system("/usr/bin/widgetdb_tests_prepare_db.sh stop");
36         if (ret != 0)
37                 LogError("Finalization script has return error: " << ret);
38
39         return -1;
40     } else if (WEXITSTATUS(ret)) { //wrong script command, nothing done
41         LogError("Preparation script has return error: " << ret
42                                                          << ". Quitting");
43         return -1;
44     }
45
46     LogDebug("Starting tests");
47
48     WrtDB::WrtDatabase::attachToThreadRW();
49
50     int status =
51         DPL::Test::TestRunnerSingleton::Instance().ExecTestRunner(argc, argv);
52
53     WrtDB::WrtDatabase::detachFromThread();
54
55     ret = system("/usr/bin/widgetdb_tests_prepare_db.sh stop");
56     if (ret != 0) {
57         LogError("Finalization script has return error: " << ret);
58         return -1;
59     }
60
61     return status;
62 }