utimensat.c 3.0 KB
Newer Older
G
ganlan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * 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 <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/stat.h>
20
#include "filepath_util.h"
G
ganlan 已提交
21 22 23

const long sec = 123840;

M
maweiye 已提交
24 25
extern int __utimensat_time64(int, const char *, const struct timespec [2], int);

G
ganlan 已提交
26 27 28 29 30 31 32
/**
 * @tc.name      : utimensat_0100
 * @tc.desc      : change file timestamps with nanosecond precision
 * @tc.level     : Level 0
 */
void utimensat_0100(void)
{
33 34
    char path[PATH_MAX] = {0};
    FILE_ABSOLUTE_PATH(STR_FILE_TXT, path);
G
ganlan 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    int fd = open(path, O_RDWR | O_CREAT);
    struct timespec times[] = {{.tv_sec = 0}, {.tv_sec = sec}};

    int result = utimensat(fd, path, times, 0);
    if (result != 0) {
        t_error("%s failed: result = %d\n", __func__, result);
    }

    close(fd);

    struct stat statbuf;
    result = stat(path, &statbuf);
    if (result != 0) {
        t_error("%s failed: result = %d\n", __func__, result);
    }

    if (statbuf.st_mtim.tv_sec != sec) {
        t_error("%s failed: statbuf.st_mtim.tv_sec = %ld\n", __func__, statbuf.st_mtim.tv_sec);
    }

    remove(path);
}

/**
 * @tc.name      : utimensat_0200
 * @tc.desc      : change file timestamps with invalid parameters
 * @tc.level     : Level 2
 */
void utimensat_0200(void)
{
    errno = 0;
    int result = utimensat(-1, NULL, NULL, 0);
    if (result == 0) {
        t_error("%s failed: result = %d\n", __func__, result);
    }

    if (errno != EBADF) {
        t_error("%s failed: errno = %d\n", __func__, errno);
    }
}

M
maweiye 已提交
76 77 78 79 80 81 82
/**
 * @tc.name      : utimensat_time64_0100
 * @tc.desc      : change file timestamps with nanosecond precision
 * @tc.level     : Level 0
 */
void utimensat_time64_0100(void)
{
83 84
    char path[PATH_MAX] = {0};
    FILE_ABSOLUTE_PATH(STR_FILE_TXT, path);
M
maweiye 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    int fd = open(path, O_RDWR | O_CREAT);
    struct timespec times[] = {{.tv_sec = 0}, {.tv_sec = sec}};

    int result = __utimensat_time64(fd, path, times, 0);
    if (result != 0) {
        t_error("%s failed: result = %d\n", __func__, result);
    }

    close(fd);

    struct stat statbuf;
    result = stat(path, &statbuf);
    if (result != 0) {
        t_error("%s failed: result = %d\n", __func__, result);
    }

    if (statbuf.st_mtim.tv_sec != sec) {
        t_error("%s failed: statbuf.st_mtim.tv_sec = %ld\n", __func__, statbuf.st_mtim.tv_sec);
    }

    remove(path);
}

G
ganlan 已提交
108 109 110 111
int main(int argc, char *argv[])
{
    utimensat_0100();
    utimensat_0200();
M
maweiye 已提交
112
    utimensat_time64_0100();
G
ganlan 已提交
113 114 115

    return t_status;
}