1998-04-15 00:44:46 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 1998 NCSA
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke <matzke@llnl.gov>
|
|
|
|
|
* Friday, April 10, 1998
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests hard and soft (symbolic) links.
|
|
|
|
|
*/
|
1998-11-24 04:40:35 +08:00
|
|
|
|
#include <h5test.h>
|
1998-04-15 00:44:46 +08:00
|
|
|
|
|
1998-11-24 04:40:35 +08:00
|
|
|
|
const char *FILENAME[] = {
|
|
|
|
|
"links",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
1998-08-15 05:05:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: mklinks
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Build a file with assorted links.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Friday, August 14, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static int
|
1998-11-24 04:40:35 +08:00
|
|
|
|
mklinks(hid_t fapl)
|
1998-08-15 05:05:16 +08:00
|
|
|
|
{
|
|
|
|
|
hid_t file, scalar, grp, d1;
|
|
|
|
|
static hsize_t size[1] = {1};
|
1998-11-24 04:40:35 +08:00
|
|
|
|
char filename[1024];
|
1998-08-15 05:05:16 +08:00
|
|
|
|
|
1998-11-24 04:40:35 +08:00
|
|
|
|
TESTING("link creation");
|
1998-04-15 00:44:46 +08:00
|
|
|
|
|
|
|
|
|
/* Create a file */
|
1998-11-24 04:40:35 +08:00
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
|
|
|
|
if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0) {
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if ((scalar=H5Screate_simple (1, size, size))<0) goto error;
|
1998-04-15 00:44:46 +08:00
|
|
|
|
|
|
|
|
|
/* Create a group */
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if ((grp=H5Gcreate (file, "grp1", 0))<0) goto error;
|
|
|
|
|
if (H5Gclose (grp)<0) goto error;
|
1998-04-15 00:44:46 +08:00
|
|
|
|
|
|
|
|
|
/* Create a dataset */
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if ((d1=H5Dcreate (file, "d1", H5T_NATIVE_INT, scalar, H5P_DEFAULT))<0) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (H5Dclose (d1)<0) goto error;
|
1998-04-15 00:44:46 +08:00
|
|
|
|
|
|
|
|
|
/* Create a hard link */
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5Glink (file, H5G_LINK_HARD, "d1", "grp1/hard")<0) goto error;
|
1998-04-15 00:44:46 +08:00
|
|
|
|
|
|
|
|
|
/* Create a symbolic link */
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5Glink (file, H5G_LINK_SOFT, "/d1", "grp1/soft")<0) goto error;
|
1998-04-15 00:44:46 +08:00
|
|
|
|
|
|
|
|
|
/* Create a symbolic link to something that doesn't exist */
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5Glink (file, H5G_LINK_SOFT, "foobar", "grp1/dangle")<0) goto error;
|
1998-04-15 00:44:46 +08:00
|
|
|
|
|
|
|
|
|
/* Create a recursive symbolic link */
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5Glink (file, H5G_LINK_SOFT, "/grp1/recursive",
|
|
|
|
|
"/grp1/recursive")<0) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1998-04-15 00:44:46 +08:00
|
|
|
|
/* Close */
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5Sclose (scalar)<0) goto error;
|
|
|
|
|
if (H5Fclose (file)<0) goto error;
|
|
|
|
|
|
1998-11-24 04:40:35 +08:00
|
|
|
|
PASSED();
|
1998-08-15 05:05:16 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: cklinks
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Open the file created in the first step and check that the
|
|
|
|
|
* links look correct.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Friday, August 14, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static int
|
1998-11-24 04:40:35 +08:00
|
|
|
|
cklinks(hid_t fapl)
|
1998-08-15 05:05:16 +08:00
|
|
|
|
{
|
|
|
|
|
hid_t file;
|
|
|
|
|
H5G_stat_t sb1, sb2;
|
|
|
|
|
char linkval[1024];
|
1998-11-24 04:40:35 +08:00
|
|
|
|
char filename[1024];
|
1998-08-15 05:05:16 +08:00
|
|
|
|
herr_t status;
|
|
|
|
|
|
1998-11-24 04:40:35 +08:00
|
|
|
|
TESTING("link queries");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
|
|
|
|
|
/* Open the file */
|
1998-11-24 04:40:35 +08:00
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
|
|
|
|
if ((file=H5Fopen(filename, H5F_ACC_RDONLY, fapl))<0) {
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hard link */
|
1998-09-03 05:16:24 +08:00
|
|
|
|
if (H5Gget_objinfo(file, "d1", TRUE, &sb1)<0) goto error;
|
|
|
|
|
if (H5Gget_objinfo(file, "grp1/hard", TRUE, &sb2)<0) goto error;
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5G_DATASET!=sb2.type) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" Unexpected object type should have been a dataset");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (sb1.objno[0]!=sb2.objno[0] || sb1.objno[1]!=sb2.objno[1]) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" Hard link test failed. Link seems not to point to the ");
|
|
|
|
|
puts(" expected file location.");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Symbolic link */
|
1998-09-03 05:16:24 +08:00
|
|
|
|
if (H5Gget_objinfo(file, "grp1/soft", TRUE, &sb2)<0) goto error;
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5G_DATASET!=sb2.type) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" Unexpected object type should have been a dataset");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (sb1.objno[0]!=sb2.objno[0] || sb1.objno[1]!=sb2.objno[1]) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" Soft link test failed. Link seems not to point to the ");
|
|
|
|
|
puts(" expected file location.");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (H5Gget_linkval(file, "grp1/soft", sizeof linkval, linkval)<0) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp(linkval, "/d1")) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" Soft link test failed. Wrong link value");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dangling link */
|
|
|
|
|
H5E_BEGIN_TRY {
|
1998-09-03 05:16:24 +08:00
|
|
|
|
status = H5Gget_objinfo(file, "grp1/dangle", TRUE, &sb2);
|
1998-08-15 05:05:16 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if (status>=0) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" H5Gget_objinfo() should have failed for a dangling link.");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
1998-09-03 05:16:24 +08:00
|
|
|
|
if (H5Gget_objinfo(file, "grp1/dangle", FALSE, &sb2)<0) goto error;
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5G_LINK!=sb2.type) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" Unexpected object type should have been a symbolic link");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (H5Gget_linkval(file, "grp1/dangle", sizeof linkval, linkval)<0) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp(linkval, "foobar")) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" Dangling link test failed. Wrong link value");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Recursive link */
|
|
|
|
|
H5E_BEGIN_TRY {
|
1998-09-03 05:16:24 +08:00
|
|
|
|
status = H5Gget_objinfo(file, "grp1/recursive", TRUE, &sb2);
|
1998-08-15 05:05:16 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if (status>=0) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" H5Gget_objinfo() should have failed for a recursive link.");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
1998-09-03 05:16:24 +08:00
|
|
|
|
if (H5Gget_objinfo(file, "grp1/recursive", FALSE, &sb2)<0) goto error;
|
1998-08-15 05:05:16 +08:00
|
|
|
|
if (H5G_LINK!=sb2.type) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
|
|
|
|
puts(" Unexpected object type should have been a symbolic link");
|
1998-08-15 05:05:16 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (H5Gget_linkval(file, "grp1/recursive", sizeof linkval, linkval)<0) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp(linkval, "/grp1/recursive")) {
|
1998-11-24 04:40:35 +08:00
|
|
|
|
FAILED();
|
1998-08-15 05:05:16 +08:00
|
|
|
|
puts(" Recursive link test failed. Wrong link value");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Cleanup */
|
|
|
|
|
if (H5Fclose(file)<0) goto error;
|
1998-11-24 04:40:35 +08:00
|
|
|
|
PASSED();
|
1998-08-15 05:05:16 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: main
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Test links
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: exit(0)
|
|
|
|
|
*
|
|
|
|
|
* Failure: exit(non-zero)
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Friday, August 14, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
main(void)
|
|
|
|
|
{
|
|
|
|
|
int nerrors = 0;
|
1998-11-24 04:40:35 +08:00
|
|
|
|
hid_t fapl;
|
1998-08-15 05:05:16 +08:00
|
|
|
|
|
1998-11-24 04:40:35 +08:00
|
|
|
|
h5_reset();
|
|
|
|
|
fapl = h5_fileaccess();
|
1998-08-15 05:05:16 +08:00
|
|
|
|
|
|
|
|
|
/* The tests... */
|
1998-11-24 04:40:35 +08:00
|
|
|
|
nerrors += mklinks(fapl) < 0 ? 1 : 0;
|
|
|
|
|
nerrors += cklinks(fapl) < 0 ? 1 : 0;
|
1998-08-15 05:05:16 +08:00
|
|
|
|
|
|
|
|
|
/* Results */
|
|
|
|
|
if (nerrors) {
|
|
|
|
|
printf("***** %d LINK TEST%s FAILED! *****\n",
|
|
|
|
|
nerrors, 1 == nerrors ? "" : "S");
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
printf("All link tests passed.\n");
|
2000-09-10 08:08:27 +08:00
|
|
|
|
h5_cleanup(FILENAME, fapl);
|
1998-04-15 00:44:46 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|