[Release] wrt-installer_0.1.9
[framework/web/wrt-installer.git] / tests / general / NonRootUserTests.cpp
1 /*
2  * Copyright (c) 2013 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    TestCases.cpp
18  * @author  Karol Pawlowski (k.pawlowski@samsung.com)
19  * @author  Tomasz Iwanek (t.iwanek@samsung.com)
20  * @version 1.0
21  * @brief   Non root user installation test's bodies
22  */
23
24 #include <string>
25 #include <dpl/test/test_runner.h>
26 #include <InstallerWrapper.h>
27
28 using namespace InstallerWrapper;
29
30 ////////////////////////////////////////////////////////////////////////////////
31
32 RUNNER_TEST_GROUP_INIT(NonRootUser)
33
34 /*
35 Name: widgetNonRootInstallation
36 Description: Check installation from other user than root
37 Expected: widget should be installed
38 */
39 RUNNER_TEST(widgetNonRootInstallation)
40 {
41     std::string tizenId;
42     RUNNER_ASSERT(install(
43                 miscWidgetsStuff + "widgets/nonroot.wgt",
44                 tizenId,
45                 "app") == InstallerWrapper::Success);
46     uninstall(tizenId);
47 }