Release 0.1.66
[platform/core/security/key-manager.git] / unit-tests / test_base64.cpp
1 /*
2  *  Copyright (c) 2016-2020 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  * @file        test_base64.cpp
17  * @author      Kyungwook Tak (k.tak@samsung.com)
18  * @version     1.0
19  * @brief       base64 encoder / decoder test
20  */
21 #include <base64.h>
22
23 #include <vector>
24 #include <cstring>
25 #include <boost_macros_wrapper.h>
26
27 #include <ckm/ckm-type.h>
28 #include <exception.h>
29
30 using CKM::base64Encode;
31 using CKM::base64Decode;
32 using CKM::RawBuffer;
33
34 namespace {
35
36 constexpr unsigned char RAW_DATA[] =  {
37         0xf8, 0x87, 0x0a, 0xc5, 0xd3, 0x6d, 0x44, 0x49, 0x03, 0x9f, 0xbd, 0x1e, 0xa8, 0x2f, 0xf6, 0xc3,
38         0xdf, 0x3b, 0x02, 0x13, 0x58, 0x1b, 0x12, 0x30, 0x1c, 0xd7, 0xad, 0xa5, 0x1f, 0x5d, 0x01, 0x33
39 };
40
41 const std::vector<unsigned char>
42 RAW_DATA_VEC(RAW_DATA, RAW_DATA + sizeof(RAW_DATA) / sizeof(unsigned char));
43
44 const RawBuffer rawbuf(RAW_DATA_VEC.begin(), RAW_DATA_VEC.end());
45
46 }
47
48 BOOST_AUTO_TEST_SUITE(BASE64_TEST)
49
50 POSITIVE_TEST_CASE(ENCODE_DECODE)
51 {
52         /* try encode */
53         RawBuffer encdata;
54         BOOST_REQUIRE_NO_THROW(encdata = base64Encode<RawBuffer>(rawbuf));
55
56         /* try decode */
57         RawBuffer decdata;
58         BOOST_REQUIRE_NO_THROW(decdata = base64Decode<RawBuffer>(encdata));
59
60         /* compare with orig data */
61         BOOST_REQUIRE_MESSAGE(
62                 rawbuf.size() == decdata.size() &&
63                 memcmp(rawbuf.data(), decdata.data(), rawbuf.size()) == 0,
64                 "Original data and encoded-decoded data is different!");
65 }
66
67 NEGATIVE_TEST_CASE(ILLEGAL_DATA)
68 {
69         BOOST_REQUIRE_THROW(base64Decode<RawBuffer>(rawbuf), CKM::Exc::InternalError);
70 }
71
72 BOOST_AUTO_TEST_SUITE_END()