/** * Copyright (c) 2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "functionalext.h" /** * @tc.name : uselocale_0100 * @tc.desc : Asserts whether the result returned when uselocale passes a null pointer is the global locale * @tc.level : Level 0 */ void uselocale_0100(void) { char *rev = setlocale(LC_ALL, "C"); if (!rev) { EXPECT_PTRNE("uselocale_0100", rev, NULL); return; } locale_t usenow = uselocale(NULL); EXPECT_PTRNE("uselocale_0100", usenow, NULL); EXPECT_PTREQ("uselocale_0100", usenow, LC_GLOBAL_LOCALE); } /** * @tc.name : uselocale_0200 * @tc.desc : Asserts whether a custom locale is successfully created using newLOCALE and * used using the custom locale using the uselocale function * @tc.level : Level 0 */ void uselocale_0200(void) { char *rev = setlocale(LC_ALL, "C"); if (!rev) { EXPECT_PTRNE("uselocale_0200", rev, NULL); return; } uselocale(NULL); locale_t newLocale = newlocale(LC_PAPER_MASK, "en_ZA", NULL); if (newLocale == NULL) { EXPECT_PTRNE("uselocale_0200", newLocale, NULL); return; } locale_t usenow = uselocale(newLocale); EXPECT_PTREQ("uselocale_0200", usenow, LC_GLOBAL_LOCALE); locale_t it = uselocale(NULL); EXPECT_PTREQ("uselocale_0200", it, newLocale); if (newLocale) { freelocale(newLocale); newLocale = NULL; } } int main(void) { uselocale_0100(); uselocale_0200(); return t_status; }