Tizen 2.1 base
[platform/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 termiate
34         LogDebug("Fail while preparing database. Restoring");
35         system("/usr/bin/widgetdb_tests_prepare_db.sh stop");
36         return -1;
37     } else if (WEXITSTATUS(ret)) { //wrong script command, nothing done
38             LogError("Preparation script has return error: " << ret
39                      << ". Quitting");
40             return -1;
41     }
42
43     LogInfo("Starting tests");
44
45     WrtDB::WrtDatabase::attachToThreadRW();
46
47     int status =
48         DPL::Test::TestRunnerSingleton::Instance().ExecTestRunner(argc, argv);
49
50     WrtDB::WrtDatabase::detachFromThread();
51
52     system("/usr/bin/widgetdb_tests_prepare_db.sh stop");
53     return status;
54 }