Fix C code naming rules & minor fixes
[platform/core/security/libwebappenc.git] / tests / 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        normals.cpp
18  * @author      Dongsun Lee (ds73.lee@samsung.com)
19  *              Kyungwook Tak (k.tak@samsung.com)
20  * @version     2.0
21  * @brief       test for normal downloaded app
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(USER)
30
31 BOOST_AUTO_TEST_SUITE(DOWNLOADED_APP);
32
33 BOOST_AUTO_TEST_CASE(add_get_remove_dek)
34 {
35         Wae::Test::add_get_remove_dek(WAE_DOWNLOADED_NORMAL_APP);
36 }
37
38 BOOST_AUTO_TEST_CASE(create_app_dek)
39 {
40         Wae::Test::create_app_dek(WAE_DOWNLOADED_NORMAL_APP);
41 }
42
43 BOOST_AUTO_TEST_CASE(encrypt_decrypt_normal_app)
44 {
45         Wae::Test::encrypt_decrypt_web_app(WAE_DOWNLOADED_NORMAL_APP);
46 }
47
48 BOOST_AUTO_TEST_SUITE_END() // DOWNLOADED_APP
49
50 BOOST_AUTO_TEST_SUITE_END() // USER