Fix gcov package contents for automation
[platform/core/uifw/stt.git] / tests / src / stt_denied_unittests.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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 #include <gtest/gtest.h>
18 #include <stt.h>
19
20 #include "cynara_mock.h"
21 #include "system_info_mock.h"
22
23 namespace {
24
25 class STTDeniedTest : public testing::Test {
26     public:
27         virtual void SetUp() {
28             /* start of TC */
29             cynara_check_set_result(CYNARA_API_ACCESS_DENIED);
30         }
31         virtual void TearDown() {
32             /* end of TC */
33             cynara_check_set_result(CYNARA_API_ACCESS_ALLOWED);
34         }
35 };
36
37 TEST_F(STTDeniedTest, utc_stt_create_denied)
38 {
39     int ret = STT_ERROR_NONE;
40
41     stt_h stt = NULL;
42     ret = stt_create(&stt);
43     EXPECT_EQ(ret, STT_ERROR_PERMISSION_DENIED);
44 }
45
46 } // namespace