You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
2 years ago
|
/* This is part of the netCDF package.
|
||
|
Copyright 2018 University Corporation for Atmospheric Research/Unidata
|
||
|
See COPYRIGHT file for conditions of use.
|
||
|
|
||
|
Test netcdf files a bit.
|
||
|
*/
|
||
|
|
||
|
#include <nc_tests.h>
|
||
|
#include "err_macros.h"
|
||
|
#include "netcdf.h"
|
||
|
|
||
|
#define FILE_NAME "tst_files5.nc"
|
||
|
|
||
|
int
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
printf("\n*** Testing netcdf file functions.\n");
|
||
|
printf("*** Checking the new inq_path function...");
|
||
|
{
|
||
|
int ncid;
|
||
|
size_t path_len;
|
||
|
char path_in[NC_MAX_NAME + 1] = "";
|
||
|
|
||
|
/* Test with classic file create. */
|
||
|
if (nc_create(FILE_NAME, 0, &ncid)) ERR;
|
||
|
if (nc_inq_path(ncid, &path_len, path_in)) ERR;
|
||
|
if (path_len != strlen(FILE_NAME) || strcmp(path_in, FILE_NAME)) ERR;
|
||
|
if (nc_close(ncid)) ERR;
|
||
|
strcpy(path_in, "");
|
||
|
path_len = 0;
|
||
|
|
||
|
/* Test with classic file open. */
|
||
|
if (nc_open(FILE_NAME, 0, &ncid)) ERR;
|
||
|
if (nc_inq_path(ncid, &path_len, path_in)) ERR;
|
||
|
if (path_len != strlen(FILE_NAME) || strcmp(path_in, FILE_NAME)) ERR;
|
||
|
if (nc_close(ncid)) ERR;
|
||
|
strcpy(path_in, "");
|
||
|
|
||
|
/* Test with netCDF-4 create. */
|
||
|
if (nc_create(FILE_NAME, NC_NETCDF4, &ncid)) ERR;
|
||
|
if (nc_inq_path(ncid, &path_len, path_in)) ERR;
|
||
|
if (path_len != strlen(FILE_NAME) || strcmp(path_in, FILE_NAME)) ERR;
|
||
|
if (nc_close(ncid)) ERR;
|
||
|
strcpy(path_in, "");
|
||
|
path_len = 0;
|
||
|
|
||
|
/* Test with classic file open. */
|
||
|
if (nc_open(FILE_NAME, 0, &ncid)) ERR;
|
||
|
if (nc_inq_path(ncid, &path_len, path_in)) ERR;
|
||
|
if (path_len != strlen(FILE_NAME) || strcmp(path_in, FILE_NAME)) ERR;
|
||
|
if (nc_close(ncid)) ERR;
|
||
|
strcpy(path_in, "");
|
||
|
path_len = 0;
|
||
|
|
||
|
}
|
||
|
SUMMARIZE_ERR;
|
||
|
FINAL_RESULTS;
|
||
|
}
|