Fix build break with boost 1.71.0
[platform/core/security/key-manager.git] / tests / test_sw-backend.cpp
1 /*
2  *  Copyright (c) 2000 - 2017 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 #include <sw-backend/crypto.h>
17
18 #include <boost/test/unit_test.hpp>
19
20 #include "test_common.h"
21
22 using namespace CKM;
23 using namespace CKM::Crypto::SW::Cipher;
24
25 BOOST_AUTO_TEST_SUITE(SW_BACKEND_TEST)
26
27 BOOST_AUTO_TEST_SUITE(CRYPTO)
28
29 BOOST_AUTO_TEST_CASE(constructs)
30 {
31         BOOST_REQUIRE_NO_THROW(AesCbcEncryption128(createRandom(16), createRandom(16)));
32
33         BOOST_REQUIRE_THROW(AesCbcEncryption128(createRandom(16), createRandom(5)),
34                                                 Exc::Crypto::InternalError);
35         BOOST_REQUIRE_THROW(AesCbcEncryption128(createRandom(17), createRandom(16)),
36                                                 Exc::Crypto::InternalError);
37 }
38
39 BOOST_AUTO_TEST_CASE(encryption_cbc)
40 {
41         AesCbcEncryption128 cipher(createRandom(16), createRandom(16));
42
43         BOOST_REQUIRE_NO_THROW(cipher.Append(createRandom(10)));
44         BOOST_REQUIRE_NO_THROW(cipher.Finalize());
45 }
46
47 BOOST_AUTO_TEST_CASE(encryption_gcm)
48 {
49         AesGcmEncryption128 cipher(createRandom(16), createRandom(16));
50
51         BOOST_REQUIRE_NO_THROW(cipher.AppendAAD(createRandom(10)));
52         BOOST_REQUIRE_NO_THROW(cipher.Append(createRandom(10)));
53         BOOST_REQUIRE_NO_THROW(cipher.Finalize());
54 }
55
56 BOOST_AUTO_TEST_SUITE_END() // CRYPTO
57
58 BOOST_AUTO_TEST_SUITE_END() // SW_BACKEND_TEST