strftime_l.c 1.8 KB
Newer Older
W
wangjiahui 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/**
 * 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 <stdlib.h>
#include <locale.h>
#include <time.h>
19
#include "asctime_data.h"
W
wangjiahui 已提交
20 21 22 23 24 25 26 27 28 29 30 31
#include "functionalext.h"

static time_t gTime = 1659177614;
static int16_t gBufferSize = 80;

/**
 * @tc.name      : strftime_l_0100
 * @tc.desc      : according to different time zones, format date
 * @tc.level     : Level 0
 */
void strftime_l_0100(void)
{
32 33 34 35 36
    for (int32_t i = 0; i < (int32_t)(sizeof(test_asctime_data) / sizeof(test_asctime_data[0])); i++) {
        const char *handlerChar = test_handle_path(test_asctime_data[i].tz);
        if (!handlerChar) {
            t_error("strftime_l_0100 failed: handlerChar is NULL\n");
            continue;
W
wangjiahui 已提交
37
        }
38

W
wangjiahui 已提交
39 40 41 42 43 44 45 46 47 48
        setenv("TZ", handlerChar, 1);
        tzset();
        struct tm *timeptr = localtime(&gTime);
        if (!timeptr) {
            EXPECT_PTRNE("strftime_l_0100", timeptr, NULL);
            return;
        }
        char buffer[gBufferSize];
        locale_t m_locale = newlocale(LC_ALL_MASK, "zh_cn.UTF-8", NULL);
        strftime_l(buffer, sizeof(buffer) - 1, "%c", timeptr, m_locale);
49
        EXPECT_STREQ("strftime_l_0100", buffer, test_asctime_data[i].result);
W
wangjiahui 已提交
50 51 52 53 54 55 56 57
    }
}

int main(void)
{
    strftime_l_0100();
    return t_status;
}