[Release] wrt-commons_0.2.139
[platform/framework/web/wrt-commons.git] / tests / i18n / test_i18n_dao_read_only.cpp
1 /*
2  * Copyright (c) 2011 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        test_i18n_dao_read_only.cpp
18  * @author      Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of i18n dao tests
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/log/log.h>
24 #include <wrt-commons/i18n-dao-ro/i18n_database.h>
25 #include <wrt-commons/i18n-dao-ro/i18n_dao_read_only.h>
26
27 RUNNER_TEST_GROUP_INIT(I18N)
28
29 /*
30 Name: I18nDAOReadOnly_IsValidSubTag_True
31 Description: Test valid IANA subtag presence
32 Expected: Subtag found
33 */
34 RUNNER_TEST(I18nDAOReadOnly_IsValidSubTag_True)
35 {
36     I18n::DB::Interface::attachDatabaseRO();
37     bool result = I18n::DB::I18nDAOReadOnly::IsValidSubTag(L"aa", 0);
38     I18n::DB::Interface::detachDatabase();
39     RUNNER_ASSERT_MSG(result, "Subtag not found");
40 }
41
42 /*
43 Name: I18nDAOReadOnly_IsValidSubTag_False
44 Description: Test invalid IANA subtag presence
45 Expected: Subtag not found
46 */
47 RUNNER_TEST(I18nDAOReadOnly_IsValidSubTag_False)
48 {
49     I18n::DB::Interface::attachDatabaseRO();
50     bool result = I18n::DB::I18nDAOReadOnly::IsValidSubTag(L"xxx000xxx", -1);
51     I18n::DB::Interface::detachDatabase();
52     RUNNER_ASSERT_MSG(!result, "Subtag found");
53 }