summaryrefslogtreecommitdiffstats
path: root/test/s3comms.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/s3comms.c')
-rw-r--r--test/s3comms.c83
1 files changed, 0 insertions, 83 deletions
diff --git a/test/s3comms.c b/test/s3comms.c
index c2d9ff9..87b6c7b 100644
--- a/test/s3comms.c
+++ b/test/s3comms.c
@@ -14,9 +14,6 @@
* Read-Only S3 Virtual File Driver (VFD)
*
* Purpose: Unit tests for the S3 Communications (s3comms) module.
- *
- * Programmer: Jacob Smith
- * 2017-10-11
*/
#include "h5test.h"
@@ -62,9 +59,6 @@
* JSVERIFY_NOT() - long-int inequality check; prints
* JSVERIFY_STR() - string equality check; prints
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*****************************************************************************/
/*----------------------------------------------------------------------------
@@ -89,9 +83,6 @@
*
* *FAILED* at somefile.c:12 in function_name()...
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
#define JSFAILED_AT() \
@@ -117,9 +108,6 @@
* Prints a generic "FAILED AT" line to stdout and jumps to `error`,
* similar to `TEST_ERROR` in h5test.h
*
- * Programmer: Jacob Smith
- * 2017-10-23
- *
*----------------------------------------------------------------------------
*/
#define FAIL_IF(condition) \
@@ -145,9 +133,6 @@
* However, `JSVERIFY(5, my_op(), "bad return")` may be even clearer.
* (see JSVERIFY)
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
#define FAIL_UNLESS(condition) \
@@ -176,9 +161,6 @@
* ! Expected 425
* ! Actual 3
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
static inline void
@@ -221,9 +203,6 @@ jserr_long(long expected, long actual, const char *reason)
* !!! Actual:
* not what I expected at all
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
static inline void
@@ -258,9 +237,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
* (with `reason`, if not NULL; expected/actual if NULL)
* and jump to `error` at end of function
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
#define JSVERIFY(expected, actual, reason) \
@@ -282,9 +258,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
* (with `reason`, if not NULL; expected/actual if NULL)
* and jump to `error` at end of function
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
#define JSVERIFY_NOT(expected, actual, reason) \
@@ -305,9 +278,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
* (with `reason`, if not NULL; expected/actual if NULL)
* and jump to `error` at end of function
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
#define JSVERIFY_STR(expected, actual, reason) \
@@ -325,8 +295,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
/*----------------------------------------------------------------------------
* Macro: JSVERIFY()
* See: JSVERIFY documentation above.
- * Programmer: Jacob Smith
- * 2017-10-14
*----------------------------------------------------------------------------
*/
#define JSVERIFY(actual, expected, reason) \
@@ -340,8 +308,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
/*----------------------------------------------------------------------------
* Macro: JSVERIFY_NOT()
* See: JSVERIFY_NOT documentation above.
- * Programmer: Jacob Smith
- * 2017-10-14
*----------------------------------------------------------------------------
*/
#define JSVERIFY_NOT(actual, expected, reason) \
@@ -354,8 +320,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
/*----------------------------------------------------------------------------
* Macro: JSVERIFY_STR()
* See: JSVERIFY_STR documentation above.
- * Programmer: Jacob Smith
- * 2017-10-14
*----------------------------------------------------------------------------
*/
#define JSVERIFY_STR(actual, expected, reason) \
@@ -396,9 +360,6 @@ static hbool_t s3_test_bucket_defined = FALSE;
* Demonstrate that the macro `S3COMMS_FORMAT_CREDENTIAL`
* performs as expected.
*
- * Programmer: Jacob Smith
- * 2017-09-19
- *
*----------------------------------------------------------------------------
*/
static herr_t
@@ -441,9 +402,6 @@ error:
* Query strings
* request "body"
*
- * Programmer: Jacob Smith
- * 2017-10-04
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -613,9 +571,6 @@ error:
* Success: 0
* Failure: -1
*
- * Programmer: Jacob Smith
- * 2017-09-14
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -691,9 +646,6 @@ error:
*
* Define and verify behavior of `H5FD_s3comms_hrb_init_request()`
*
- * Programmer: Jacob Smith
- * 2017-09-20
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -813,9 +765,6 @@ error:
*
* Test operations on hrb_node_t structure
*
- * Programmer: Jacob Smith
- * 2017-09-22
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -1203,9 +1152,6 @@ error:
*
* Define and verify behavior of `H5FD_s3comms_HMAC_SHA256()`
*
- * Programmer: Jacob Smith
- * 2017-09-19
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -1316,9 +1262,6 @@ error:
*
* Define and verify behavior of `H5FD_s3comms_nlowercase()`
*
- * Programmer: Jacob Smith
- * 2017-19-18
- *
*----------------------------------------------------------------------------
*/
static herr_t
@@ -1389,9 +1332,6 @@ error:
*
* Function: test_parse_url()
*
- * Programmer: Jacob Smith
- * 2017-11-??
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -1693,9 +1633,6 @@ error:
* Success: 0
* Failure: -1
*
- * Programmer: Jacob Smith
- * 2017-09-14
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -1806,8 +1743,6 @@ error:
/*---------------------------------------------------------------------------
* Function: test_s3r_open()
*
- * Programmer: Jacob Smith 2018-01-??
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -2009,9 +1944,6 @@ error:
*
* Shows most basic curl iteration.
*
- * Programmer: Jacob Smith
- * 2017-10-06
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -2174,9 +2106,6 @@ error:
*
* More test cases would be a very good idea.
*
- * Programmer: Jacob Smith
- * 2017-09-18
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -2279,9 +2208,6 @@ error:
* Success: 0
* Failure: -1
*
- * Programmer: Jacob Smith
- * 2017-09-13
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -2332,9 +2258,6 @@ error:
*
* Define and verify behavior of `H5FD_s3comms_trim()`.
*
- * Programmer: Jacob Smith
- * 2017-09-14
- *
*----------------------------------------------------------------------------
*/
static herr_t
@@ -2441,9 +2364,6 @@ error:
*
* Define and verify behavior of `H5FD_s3comms_uriencode()`.
*
- * Programmer: Jacob Smith
- * 2017-09-14
- *
*----------------------------------------------------------------------------
*/
static herr_t
@@ -2564,9 +2484,6 @@ error:
* Success: 0
* Failure: 1
*
- * Programmer: Jacob Smith
- * 2017-10-12
- *
*-------------------------------------------------------------------------
*/
int