/* * 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" const char *path = "file.txt"; const char *name = "user.txt"; const char *value = "dat"; const int size = 3; /** * @tc.name : getxattr_0100 * @tc.desc : Verify getxattr process success * @tc.level : Level 0 */ void getxattr_0100(void) { int fd = open(path, O_RDWR | O_CREAT, TEST_MODE); if (fd < 0) { t_error("%s failed: fd = %d\n", __func__, fd); return; } char str[] = "dat"; write(fd, str, sizeof(str)); close(fd); int ret = setxattr(path, name, value, strlen(value), XATTR_CREATE); if (ret != 0) { t_error("%s failed: ret = %d\n", __func__, ret); return; } char buf[BUFSIZ] = {0}; ret = getxattr(path, name, buf, sizeof(buf)); EXPECT_EQ("getxattr_0100", ret, size); EXPECT_STREQ("getxattr_0100", buf, str); ret = remove(path); EXPECT_EQ("getxattr_0100", ret, 0); } /** * @tc.name : getxattr_0200 * @tc.desc : Verify getxattr process fail bacause param is null * @tc.level : Level 0 */ void getxattr_0200(void) { int ret = getxattr(NULL, NULL, NULL, -1); EXPECT_EQ("getxattr_0200", ret, -1); } int main(void) { getxattr_0100(); getxattr_0200(); return t_status; }