tizen 2.4 release
[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 <wrt-commons/i18n-dao-ro/i18n_database.h>
24 #include <wrt-commons/i18n-dao-ro/i18n_dao_read_only.h>
25
26 RUNNER_TEST_GROUP_INIT(I18N)
27
28 /*
29 Name: I18nDAOReadOnly_IsValidSubTag_True
30 Description: Test valid IANA subtag presence
31 Expected: Subtag found
32 */
33 RUNNER_TEST(I18nDAOReadOnly_IsValidSubTag_True)
34 {
35     I18n::DB::Interface::attachDatabaseRO();
36     bool result = I18n::DB::I18nDAOReadOnly::IsValidSubTag(L"aa", 0);
37     I18n::DB::Interface::detachDatabase();
38     RUNNER_ASSERT_MSG(result, "Subtag not found");
39 }
40
41 /*
42 Name: I18nDAOReadOnly_IsValidSubTag_False
43 Description: Test invalid IANA subtag presence
44 Expected: Subtag not found
45 */
46 RUNNER_TEST(I18nDAOReadOnly_IsValidSubTag_False)
47 {
48     I18n::DB::Interface::attachDatabaseRO();
49     bool result = I18n::DB::I18nDAOReadOnly::IsValidSubTag(L"xxx000xxx", -1);
50     I18n::DB::Interface::detachDatabase();
51     RUNNER_ASSERT_MSG(!result, "Subtag found");
52 }