Add privileges to APIs
[platform/core/security/ode.git] / tests / ecryptfs-engine.cpp
1 /*
2  *  Copyright (c) 2015 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 #include <string>
18 #include <klay/exception.h>
19 #include <klay/testbench.h>
20
21 #include "../server/engine/ecryptfs-engine.h"
22 #include "../server/progress-bar.h"
23 #include "../server/progress-vconf-backend.h"
24
25 #define TEST_PATH   "/opt/usr"
26
27 TESTCASE(EcryptfsGetPathTest)
28 {
29         try {
30                 ode::VConfBackend vconfBackend(VCONFKEY_SDE_ENCRYPT_PROGRESS);
31                 ode::ProgressBar progressBar(std::bind(&ode::VConfBackend::update, &vconfBackend, std::placeholders::_1));
32                 ode::EcryptfsEngine engine("/dev/mmcblkp0", "/opt/usr", progressBar);
33                 if (engine.getSource() != "/dev/mmcblkp0") {
34                         throw runtime::Exception("Source doen't match");
35                 }
36                 if (engine.getDestination() != "/opt/usr") {
37                         throw runtime::Exception("Destination doen't match");
38                 }
39         } catch (runtime::Exception &e) {
40                 TEST_FAIL(e.what());
41         }
42 }