Initialize Tizen 2.3
[framework/web/wrt-installer.git] / tests / general / InstallerWrapper.h
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 #ifndef WRT_INSTALLER_TESTS_GENERAL_INSTALLER_WRAPPER_H
18 #define WRT_INSTALLER_TESTS_GENERAL_INSTALLER_WRAPPER_H
19
20 #include <string>
21
22 namespace InstallerWrapper
23 {
24
25 typedef int InstallResult;
26 const InstallResult WrongWidgetPackage = -2;
27 const InstallResult OtherError = -1;
28 const InstallResult Success = 0;
29
30 const std::string miscWidgetsStuff = "/opt/share/widget/tests/installer/";
31
32 struct Result {
33     bool m_exc;
34     bool m_exd;
35     bool m_exs;
36     std::string message;
37     Result(bool exc = false, bool exd = false, bool exs = false)
38         : m_exc(exc), m_exd(exd), m_exs(exs) {}
39 };
40
41 InstallResult install(
42         const std::string& path,
43         std::string& tizenId,
44         const std::string& user = "");
45 bool uninstall(const std::string& tizenId);
46 /**
47  * @brief killWrtClients kills processes that matches 'wrt-client'
48  * @return True if any client was killed
49  */
50 bool sigintWrtClients();
51
52 }
53
54 #endif//WRT_INSTALLER_TESTS_GENERAL_INSTALLER_WRAPPER_H