mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
6b69b9c52c
## S3 Related Fixes * Add comprehensive support for specifying AWS profiles to provide access credentials. * Parse the files "~/.aws/config" and "~/.aws/credentials to provide credentials for the HDF5 ROS3 driver and to locate default region. * Add a function to obtain the currently active S3 credentials. The search rules are defined in docs/nczarr.md. * Provide documentation for the new features. * Modify the struct NCauth (in include/ncauth.h) to replace specific S3 credentials with a profile name. * Add a unit test to test the operation of profile and credentials management. * Add support for URLS of the form "s3://<bucket>/<key>"; this requires obtaining a default region. * Allows the specification of profile and/or region in a URL of the form "#mode=nczarr,...&aws.region=...&aws.profile=..." ## Misc. Fixes * Move the ezxml code to libdispatch so that it can be used both by DAP4 and nczarr. * Modify nclist to provide a deep clone operation. * Modify ncuri to provide a deep clone operation. * Modify the .rc file format to allow the specification of a path to be tested when looking for an entry in the .rc file. * Ensure that the NC_rcload function is called. * Modify nchttp to support setting request headers.
38 lines
1.2 KiB
CMake
38 lines
1.2 KiB
CMake
# Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014,
|
|
# 2015, 2016, 2017, 2018, 2019
|
|
# University Corporation for Atmospheric Research/Unidata.
|
|
|
|
# See netcdf-c/COPYRIGHT file for more info.
|
|
|
|
# This is the cmake build file for unit_test/ directory.
|
|
# @author Ward Fisher
|
|
|
|
# Currently (August 21, 2019): Some tests will not work with
|
|
# Visual Studio. The unit tests are for internal netCDF functions,
|
|
# so we don't want to make them external, which would be required to
|
|
# run on Windows.
|
|
|
|
SET(UNIT_TESTS test_ncuri test_pathcvt)
|
|
|
|
IF(NOT MSVC)
|
|
IF(ENABLE_NETCDF_4)
|
|
SET(UNIT_TESTS ${UNIT_TESTS} tst_nclist tst_nc4internal)
|
|
ENDIF(ENABLE_NETCDF_4)
|
|
ENDIF(NOT MSVC)
|
|
|
|
FOREACH(CTEST ${UNIT_TESTS})
|
|
add_bin_test(unit_test ${CTEST})
|
|
ENDFOREACH()
|
|
|
|
# Aws Tests
|
|
build_bin_test(test_aws)
|
|
ADD_SH_TEST(unit_test run_aws)
|
|
|
|
# Performance tests
|
|
add_bin_test(unit_test tst_exhash timer_utils.c)
|
|
add_bin_test(unit_test tst_xcache timer_utils.c)
|
|
|
|
FILE(GLOB COPY_FILES ${CMAKE_CURRENT_SOURCE_DIR}/*.sh)
|
|
FILE(COPY ${COPY_FILES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/ FILE_PERMISSIONS OWNER_WRITE OWNER_READ OWNER_EXECUTE)
|