Apply boost test framework
[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 "web_app_enc.h"
24
25 #include <boost/test/unit_test.hpp>
26
27 #include "test-helper.h"
28
29 BOOST_AUTO_TEST_SUITE(SYSTEM)
30
31 BOOST_AUTO_TEST_SUITE(GLOBAL_APP)
32
33 BOOST_AUTO_TEST_CASE(add_get_remove_dek)
34 {
35         Wae::Test::add_get_remove_dek(WAE_DOWNLOADED_GLOBAL_APP);
36 }
37
38 BOOST_AUTO_TEST_CASE(create_app_dek)
39 {
40         Wae::Test::create_app_dek(WAE_DOWNLOADED_GLOBAL_APP);
41 }
42
43 BOOST_AUTO_TEST_CASE(encrypt_decrypt)
44 {
45         Wae::Test::encrypt_decrypt_web_app(WAE_DOWNLOADED_GLOBAL_APP);
46 }
47
48 BOOST_AUTO_TEST_SUITE_END() // GLOBAL_APP
49
50
51 BOOST_AUTO_TEST_SUITE(PRELOADED_APP)
52
53 BOOST_AUTO_TEST_CASE(add_get_remove_dek)
54 {
55         Wae::Test::add_get_remove_dek(WAE_PRELOADED_APP);
56 }
57
58 BOOST_AUTO_TEST_CASE(create_app_dek)
59 {
60         Wae::Test::create_app_dek(WAE_PRELOADED_APP);
61 }
62
63 BOOST_AUTO_TEST_CASE(encrypt_decrypt)
64 {
65         Wae::Test::encrypt_decrypt_web_app(WAE_PRELOADED_APP);
66 }
67
68 BOOST_AUTO_TEST_SUITE_END() // PRELOADED_APP
69
70 BOOST_AUTO_TEST_SUITE_END() // SYSTEM