Change char unique_ptr to char vector
[platform/core/security/key-manager.git] / tests / test_common.cpp
1 /*
2  *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Kyungwook Tak <k.tak@samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  *
18  * @file        test_common.cpp
19  * @author      Zofia Abramowska (z.abramowska@samsung.com)
20  * @version
21  * @brief
22  */
23 #include <test_common.h>
24 #include <iostream>
25
26 using namespace CKM;
27
28 RawBuffer createDefaultPass() {
29     return createPass(0, RAW_PASS_SIZE);
30 }
31
32 RawBuffer createPass(std::size_t from, std::size_t to) {
33     RawBuffer raw;
34
35     for (std::size_t i = from; i < to; i++)
36         raw.push_back(static_cast<unsigned char>(i));
37
38     return raw;
39 }
40
41 RawBuffer createBigBlob(std::size_t size) {
42     return createPass(0, size);
43 }
44
45 //raw to hex string conversion from SqlConnection
46 std::string rawToHexString(const RawBuffer &raw) {
47     std::string dump;
48
49     for (auto &e : raw) {
50         char buf[3];
51         snprintf(buf, sizeof(buf), "%02x", (e & 0xff));
52         dump.push_back(buf[0]);
53         dump.push_back(buf[1]);
54     }
55
56     return dump;
57 }