mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-06 15:34:44 +08:00
835b81a285
NOTE: This PR should not be included in 4.9.1 since additional DAP4 related PRs will be forthcoming. This PR makes major changes to libdap4 and dap4_test driven by changes to TDS. * Enable DAP4 * Clean up the test input files and the test baseline comparison files. This entails: * Remove a multitude of unused test input and baseline data files; among them are dap4_test/: daptestfiles, dmrtestfiles, nctestfiles, and misctestfiles. * Define a canonical set of test input files and record in dap4_test/cdltestfiles. * Use the cdltestfiles to generate the .nc test inputs. This set of .nc files is then moved to the d4ts (DAP4 test server) war file in the tds repository. This set then becomes the canonical set of DAP4 test sources. * Scrape d4ts to obtain copies of the raw streams of DAP4 encoded data. The .dmr and .dap streams are then stored in dap4_test/rawtestfiles. * Disable some remote server tests until those servers are fixed. * Add an option to ncdump (-XF) that forces the type of the _FillValue attribute; this is primarily to simplify testing of fill mismatch. * Minor bug fixes to ncgen. * Changes to libdap4: * Replace old checksum hack with the dap4.checksum flag. * Support the dap4.XXX controls. * Cleanup _FillValue handling, especially var-attribute type mismatches. * Fix enum handling based on changes to netcdf-java. * Changes to dap4_test: * Add getopt support to various test support programs. * Remove unneeded shell scripts. * Add new scripts: test_curlopt.sh
164 lines
3.1 KiB
C
164 lines
3.1 KiB
C
/*********************************************************************
|
|
* Copyright 2016, UCAR/Unidata
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
*********************************************************************/
|
|
|
|
/**
|
|
Test the netcdf-4 data building process.
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "netcdf.h"
|
|
|
|
#ifdef HAVE_GETOPT_H
|
|
#include <getopt.h>
|
|
#else
|
|
#if defined(_WIN32) && !defined(__MINGW32__)
|
|
#include "XGetopt.h"
|
|
#endif
|
|
#endif
|
|
|
|
#define DEBUG
|
|
|
|
static struct Options {
|
|
char* file;
|
|
char* substratename;
|
|
int debug;
|
|
int checksum;
|
|
int logging;
|
|
} options = {NULL,NULL,0,0,0};
|
|
|
|
static char testname[4096];
|
|
|
|
/* Forward */
|
|
static int test(const char*);
|
|
|
|
static void
|
|
usage(void)
|
|
{
|
|
fprintf(stderr,"usage: %s.c [-d] [-v] [-c] [-s <substratename>] <file>\n",testname);
|
|
exit(1);
|
|
}
|
|
|
|
static void
|
|
breakpoint(int code, int line)
|
|
{
|
|
if(code != NC_NOERR) {
|
|
fprintf(stderr,"***Fail: line: %d err: (%d) %s\n",line,code,nc_strerror(code));
|
|
fflush(stderr);
|
|
}
|
|
}
|
|
#define CHECK(err) if((ret = (err))) {breakpoint(err,__LINE__); goto done;} else {}
|
|
|
|
static void
|
|
parse(int argc, char** argv)
|
|
{
|
|
int c = 0;
|
|
|
|
while ((c = getopt(argc, argv, "cds:v")) != EOF) {
|
|
switch(c) {
|
|
case 'c':
|
|
options.checksum = 1;
|
|
break;
|
|
case 'd':
|
|
options.debug = 1;
|
|
break;
|
|
case 's':
|
|
options.substratename = strdup(optarg);
|
|
break;
|
|
case 'v':
|
|
usage();
|
|
goto done;
|
|
case '?':
|
|
case ':':
|
|
fprintf(stderr,"unknown option: %d\n",c);
|
|
usage();
|
|
goto done;
|
|
}
|
|
}
|
|
|
|
/* get url argument */
|
|
argc -= optind;
|
|
argv += optind;
|
|
|
|
if (argc > 1) {
|
|
fprintf(stderr, "only one input url argument permitted\n");
|
|
usage();
|
|
}
|
|
if (argc == 0) {
|
|
fprintf(stderr, "no input url specified\n");
|
|
usage();
|
|
}
|
|
|
|
options.file = strdup(argv[0]);
|
|
|
|
/* defaults */
|
|
#ifdef DEBUG
|
|
options.logging = 1;
|
|
#endif
|
|
|
|
done:
|
|
return;
|
|
}
|
|
|
|
static void
|
|
gettestname(const char* argv0)
|
|
{
|
|
const char* prefix;
|
|
char* suffix;
|
|
|
|
if((prefix = strrchr(argv0,'/'))==NULL)
|
|
prefix = strrchr(argv0,'\\');
|
|
if(prefix) prefix++; else prefix = argv0;
|
|
testname[0] = '\0';
|
|
strlcat(testname,prefix,sizeof(testname));
|
|
suffix = strrchr(testname,'.');
|
|
if(suffix != NULL) *suffix = '\0';
|
|
}
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
int ret = NC_NOERR;
|
|
char url[4096];
|
|
|
|
gettestname(argv[0]);
|
|
parse(argc,argv);
|
|
|
|
/* build the url */
|
|
snprintf(url,sizeof(url),"file://%s?%s#dap4&debug=copy%s%s%s",
|
|
options.file,
|
|
(options.checksum?"dap4.checksum=true":"dap4.checksum=false"),
|
|
(options.substratename?"&substratename=" : ""),
|
|
(options.substratename?options.substratename: ""),
|
|
(options.logging?"&log": ""));
|
|
|
|
#ifdef DEBUG
|
|
fprintf(stderr,"%s: url=%s\n",testname,url);
|
|
#endif
|
|
|
|
ret = test(url);
|
|
|
|
#ifdef DEBUG
|
|
fprintf(stderr,"code=%d %s\n",ret,nc_strerror(ret));
|
|
#endif
|
|
return (ret ? 1 : 0);
|
|
}
|
|
|
|
static int
|
|
test(const char* url)
|
|
{
|
|
int ret = NC_NOERR;
|
|
int ncid;
|
|
|
|
/* Use the open/close mechanism */
|
|
CHECK(nc_open(url,NC_NETCDF4,&ncid));
|
|
CHECK(nc_close(ncid));
|
|
|
|
done:
|
|
return ret;
|
|
}
|