Fix build for boost 1.71.0
[platform/core/security/libwebappenc.git] / tests / non-normals.cpp
1 /*
2  *  Copyright (c) 2016 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        non-normals.cpp
18  * @author      Dongsun Lee (ds73.lee@samsung.com)
19  *              Kyungwook Tak (k.tak@samsung.com)
20  * @version     2.0
21  * @brief       API test for preloaded/global apps
22  */
23 #include <boost/test/unit_test.hpp>
24
25 #include "types.h"
26 #include "test-helper.h"
27
28 BOOST_AUTO_TEST_SUITE(SYSTEM)
29
30 BOOST_AUTO_TEST_SUITE(GLOBAL_APP)
31
32 BOOST_AUTO_TEST_CASE(add_get_remove_dek)
33 {
34         Wae::Test::add_get_remove_ce(WAE_DOWNLOADED_GLOBAL_APP);
35 }
36
37 BOOST_AUTO_TEST_CASE(create_app_dek)
38 {
39         Wae::Test::create_app_ce(WAE_DOWNLOADED_GLOBAL_APP);
40 }
41
42 BOOST_AUTO_TEST_CASE(encrypt_decrypt)
43 {
44         Wae::Test::encrypt_decrypt_web_app(WAE_DOWNLOADED_GLOBAL_APP);
45 }
46
47 BOOST_AUTO_TEST_SUITE_END() // GLOBAL_APP
48
49
50 BOOST_AUTO_TEST_SUITE(PRELOADED_APP)
51
52 BOOST_AUTO_TEST_CASE(add_get_remove_dek)
53 {
54         Wae::Test::add_get_remove_ce(WAE_PRELOADED_APP);
55 }
56
57 BOOST_AUTO_TEST_CASE(create_app_dek)
58 {
59         Wae::Test::create_app_ce(WAE_PRELOADED_APP);
60 }
61
62 BOOST_AUTO_TEST_CASE(encrypt_decrypt)
63 {
64         Wae::Test::encrypt_decrypt_web_app(WAE_PRELOADED_APP);
65 }
66
67 BOOST_AUTO_TEST_SUITE_END() // PRELOADED_APP
68
69 BOOST_AUTO_TEST_SUITE_END() // SYSTEM