It_stdio_hasmntopt_001.cpp 3.7 KB
Newer Older
L
lnlan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/*
 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this list of
 * conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice, this list
 * of conditions and the following disclaimer in the documentation and/or other materials
 * provided with the distribution.
 *
 * 3. Neither the name of the copyright holder nor the names of its contributors may be used
 * to endorse or promote products derived from this software without specific prior written
 * permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
#include "It_test_IO.h"

static UINT32 testcase(VOID)
{
    struct mntent* mnt = nullptr;
    struct mntent* mnt_new = nullptr;
    FILE *fp = nullptr;
W
wangchen 已提交
38
    FILE *fp2 = nullptr;
L
lnlan 已提交
39 40 41 42 43 44
    char *argv[2] = {nullptr};
    argv[0] = "/etc/fstab";
    argv[1] = "errors";
    char *opt = argv[1];
    char *ret = nullptr;

45 46 47 48
    char fileWords[] = "/dev/disk/by-uuid/c4992556-a86e-45e8-ba5f-190b16a9073x /usr1 ext3 errors=remount-ro,nofail 0 1";
    char *pathList[] = {"/etc/fstab"};
    char *streamList[] = {(char *)fileWords};
    int streamLen[] = {sizeof(fileWords)};
W
wangchen 已提交
49

50 51 52 53 54 55
    int flag = PrepareFileEnv(pathList, streamList, streamLen, 1);
    if (flag != 0) {
        printf("error: need some env file, but prepare is not ok");
        (VOID)RecoveryFileEnv(pathList, 1);
        return -1;
    }
W
wangchen 已提交
56

L
lnlan 已提交
57 58 59 60 61 62 63 64 65 66 67
    mnt_new = (struct mntent *)malloc(sizeof(struct mntent));
    mnt_new->mnt_fsname = "UUID=c4992556-a86e-45e8-ba5f-190b16a9073x";
    mnt_new->mnt_dir = "/usr1";
    mnt_new->mnt_type = "ext3";
    mnt_new->mnt_opts = "errors=remount-ro,nofail";
    mnt_new->mnt_freq = 0;
    mnt_new->mnt_passno = 1;

    fp = setmntent("/etc/fstab", "r");
    if (!fp) {
        printf("fp=0x%x\n", fp);
W
wangchen 已提交
68
        free(mnt_new);
L
lnlan 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        return LOS_NOK;
    }

    mnt = getmntent(fp);
    if (mnt && !(feof(fp) || ferror(fp))) {
        ret =  hasmntopt(mnt, opt);
        printf("hasmntopt=%s\n", ret);
        ICUNIT_ASSERT_NOT_EQUAL_NULL(ret, NULL, -1);
        mnt = getmntent(fp);
    }

    if (fp != NULL) {
        endmntent(fp);
    }

    /* test the addmntent below */
    fp = setmntent(argv[0], "a");
W
wangchen 已提交
86 87
    fp2 = fopen("/lib/libc.so", "r");
    if (fp2 != NULL) {
L
lnlan 已提交
88 89 90 91 92 93 94 95 96
        printf("aha I found you are OHOS!!!\n");
        if (addmntent(fp, mnt_new)) {
            printf("a new mnt is added to %s\n", argv[0]);
        }
    }

    if (fp != NULL) {
        endmntent(fp);
    }
W
wangchen 已提交
97 98 99
    if (fp2 != NULL) {
        fclose(fp2);
    }
100
    (VOID)RecoveryFileEnv(pathList, 1);
L
lnlan 已提交
101 102 103 104 105 106 107
    return LOS_OK;
}

VOID IT_STDIO_HASMNTOPT_001(void)
{
    TEST_ADD_CASE(__FUNCTION__, testcase, TEST_LIB, TEST_LIBC, TEST_LEVEL1, TEST_FUNCTION);
}