utimensat.c 3.2 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>
D
dhy308 已提交
20
#include <string.h>
G
ganlan 已提交
21 22 23 24
#include "test.h"

const long sec = 123840;

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

G
ganlan 已提交
27 28 29 30 31 32 33
/**
 * @tc.name      : utimensat_0100
 * @tc.desc      : change file timestamps with nanosecond precision
 * @tc.level     : Level 0
 */
void utimensat_0100(void)
{
D
dhy308 已提交
34 35
    char path[128] = {0};
    char *cwd = getcwd(path, sizeof(path));
D
dhy308 已提交
36 37 38 39
    if (!cwd) {
        t_error("%s getcwd failed\n", __func__);
        return;
    }
D
dhy308 已提交
40 41
    strcat(path, "/file.txt");

G
ganlan 已提交
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 76 77 78 79 80 81 82
    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 已提交
83 84 85 86 87 88 89
/**
 * @tc.name      : utimensat_time64_0100
 * @tc.desc      : change file timestamps with nanosecond precision
 * @tc.level     : Level 0
 */
void utimensat_time64_0100(void)
{
D
dhy308 已提交
90 91
    char path[128] = {0};
    char *cwd = getcwd(path, sizeof(path));
D
dhy308 已提交
92 93 94 95
    if (!cwd) {
        t_error("%s getcwd failed\n", __func__);
        return;
    }
D
dhy308 已提交
96 97
    strcat(path, "/file.txt");

M
maweiye 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
    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 已提交
121 122 123 124
int main(int argc, char *argv[])
{
    utimensat_0100();
    utimensat_0200();
M
maweiye 已提交
125
    utimensat_time64_0100();
G
ganlan 已提交
126 127 128

    return t_status;
}