2014-08-07 01:53:05 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2020-09-07 10:56:11 +01:00
|
|
|
#include "../../include/xlsxwriter/utility.h"
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
/* Compare expected results with the XML data written to the output
|
|
|
|
* test file.
|
|
|
|
*/
|
|
|
|
#define RUN_XLSX_STREQ(exp, got) \
|
|
|
|
fflush(testfile); \
|
|
|
|
int file_size = ftell(testfile); \
|
|
|
|
\
|
|
|
|
got = (char*)calloc(file_size + 1, 1); \
|
|
|
|
\
|
|
|
|
rewind(testfile); \
|
2021-07-27 17:28:10 +01:00
|
|
|
(void)fread(got, file_size, 1, testfile); \
|
2014-06-08 17:40:59 +01:00
|
|
|
\
|
2014-08-07 01:53:05 +01:00
|
|
|
ASSERT_STR((exp), (got)); \
|
2014-06-08 17:40:59 +01:00
|
|
|
\
|
|
|
|
if (got) \
|
|
|
|
free(got); \
|
|
|
|
\
|
|
|
|
fclose(testfile)
|
|
|
|
|
|
|
|
/* Compare expected results with the XML data written to the output
|
|
|
|
* test file. Same as the previous macro but only shows the difference
|
|
|
|
* from where it starts. Suitable for long strings of XML data.
|
|
|
|
*/
|
|
|
|
#define RUN_XLSX_STREQ_SHORT(exp, got) \
|
|
|
|
fflush(testfile); \
|
|
|
|
int file_size = ftell(testfile); \
|
|
|
|
\
|
|
|
|
got = (char*)calloc(file_size + 1, 1); \
|
|
|
|
\
|
|
|
|
rewind(testfile); \
|
2021-07-27 17:28:10 +01:00
|
|
|
(void)fread(got, file_size, 1, testfile); \
|
2014-06-08 17:40:59 +01:00
|
|
|
\
|
|
|
|
/* Start comparison from first difference. */ \
|
|
|
|
char *got_short = got; \
|
|
|
|
char *exp_short = exp; \
|
|
|
|
while (*exp_short && *exp_short == *got_short) { \
|
|
|
|
exp_short++; \
|
|
|
|
got_short++; \
|
|
|
|
} \
|
|
|
|
\
|
2014-08-07 01:53:05 +01:00
|
|
|
ASSERT_STR(exp_short, got_short); \
|
2014-06-08 17:40:59 +01:00
|
|
|
\
|
|
|
|
if (got) \
|
|
|
|
free(got); \
|
|
|
|
\
|
|
|
|
fclose(testfile)
|
|
|
|
|
|
|
|
|
|
|
|
#define TEST_COL_TO_NAME(num, abs, exp) \
|
2014-06-24 00:01:00 +01:00
|
|
|
lxw_col_to_name(got, num, abs); \
|
2014-08-07 01:53:05 +01:00
|
|
|
ASSERT_STR(exp, got);
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
#define TEST_ROWCOL_TO_CELL(row, col, exp) \
|
2014-06-24 00:01:00 +01:00
|
|
|
lxw_rowcol_to_cell(got, row, col); \
|
2014-08-07 01:53:05 +01:00
|
|
|
ASSERT_STR(exp, got);
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
#define TEST_ROWCOL_TO_CELL_ABS(row, col, row_abs, col_abs, exp) \
|
2014-06-24 00:01:00 +01:00
|
|
|
lxw_rowcol_to_cell_abs(got, row, col, row_abs, col_abs); \
|
2014-08-07 01:53:05 +01:00
|
|
|
ASSERT_STR(exp, got);
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
|
2016-05-05 23:40:06 +01:00
|
|
|
#define TEST_ROWCOL_TO_RANGE(row1, col1, row2, col2, exp) \
|
|
|
|
lxw_rowcol_to_range(got, row1, col1, row2, col2); \
|
2014-08-07 01:53:05 +01:00
|
|
|
ASSERT_STR(exp, got);
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
|
2016-05-05 23:40:06 +01:00
|
|
|
#define TEST_ROWCOL_TO_RANGE_ABS(row1, col1, row2, col2, exp) \
|
|
|
|
lxw_rowcol_to_range_abs(got, row1, col1, row2, col2); \
|
2014-08-07 01:53:05 +01:00
|
|
|
ASSERT_STR(exp, got);
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
|
2016-05-20 22:49:03 +01:00
|
|
|
#define TEST_ROWCOL_TO_FORMULA_ABS(sheet, row1, col1, row2, col2, exp) \
|
2020-09-07 23:35:27 +01:00
|
|
|
lxw_rowcol_to_formula_abs(got, sheet, row1, col1, row2, col2); \
|
2016-05-20 22:49:03 +01:00
|
|
|
ASSERT_STR(exp, got);
|
|
|
|
|
|
|
|
|
2014-06-08 17:40:59 +01:00
|
|
|
#define TEST_DATETIME_TIME(_hour, _min, _sec, exp) \
|
|
|
|
datetime = (lxw_datetime*)calloc(1, sizeof(lxw_datetime)); \
|
|
|
|
datetime->hour = _hour; \
|
|
|
|
datetime->min = _min; \
|
|
|
|
datetime->sec = _sec; \
|
|
|
|
\
|
2020-09-07 23:35:27 +01:00
|
|
|
got = lxw_datetime_to_excel_datetime(datetime); \
|
2014-06-08 17:40:59 +01:00
|
|
|
\
|
2023-09-25 12:40:25 +01:00
|
|
|
ASSERT_DBL_NEAR(exp, got); \
|
2014-06-08 17:40:59 +01:00
|
|
|
free(datetime);
|
|
|
|
|
|
|
|
#define TEST_DATETIME_DATE(_year, _month, _day, exp) \
|
|
|
|
datetime = (lxw_datetime*)calloc(1, sizeof(lxw_datetime)); \
|
|
|
|
datetime->year = _year; \
|
|
|
|
datetime->month = _month; \
|
|
|
|
datetime->day = _day; \
|
|
|
|
\
|
2020-09-07 23:35:27 +01:00
|
|
|
got = lxw_datetime_to_excel_datetime(datetime); \
|
2014-06-08 17:40:59 +01:00
|
|
|
\
|
2023-09-25 12:40:25 +01:00
|
|
|
ASSERT_DBL_NEAR(exp, got); \
|
2014-06-08 17:40:59 +01:00
|
|
|
free(datetime);
|
|
|
|
|
|
|
|
#define TEST_DATETIME_DATE_1904(_year, _month, _day, exp) \
|
|
|
|
datetime = (lxw_datetime*)calloc(1, sizeof(lxw_datetime)); \
|
|
|
|
datetime->year = _year; \
|
|
|
|
datetime->month = _month; \
|
|
|
|
datetime->day = _day; \
|
|
|
|
\
|
2020-09-07 23:35:27 +01:00
|
|
|
got = lxw_datetime_to_excel_date_epoch(datetime, 1); \
|
2014-06-08 17:40:59 +01:00
|
|
|
\
|
2023-09-25 12:40:25 +01:00
|
|
|
ASSERT_DBL_NEAR(exp, got); \
|
2014-06-08 17:40:59 +01:00
|
|
|
free(datetime);
|
|
|
|
|
|
|
|
#define TEST_DATETIME(_year, _month, _day, _hour, _min, _sec, exp) \
|
|
|
|
datetime = (lxw_datetime*)calloc(1, sizeof(lxw_datetime)); \
|
|
|
|
datetime->year = _year; \
|
|
|
|
datetime->month = _month; \
|
|
|
|
datetime->day = _day; \
|
|
|
|
datetime->hour = _hour; \
|
|
|
|
datetime->min = _min; \
|
|
|
|
datetime->sec = _sec; \
|
|
|
|
\
|
2020-09-07 23:35:27 +01:00
|
|
|
got = lxw_datetime_to_excel_datetime(datetime); \
|
2014-06-08 17:40:59 +01:00
|
|
|
\
|
2023-09-25 12:40:25 +01:00
|
|
|
ASSERT_DBL_NEAR(exp, got); \
|
2014-06-08 17:40:59 +01:00
|
|
|
free(datetime);
|
2021-07-01 21:00:59 +01:00
|
|
|
|
|
|
|
#define TEST_UNIXTIME(_unixtime, exp) \
|
|
|
|
got = lxw_unixtime_to_excel_date(_unixtime); \
|
2023-09-25 12:40:25 +01:00
|
|
|
ASSERT_DBL_NEAR(exp, got);
|
2021-07-01 21:00:59 +01:00
|
|
|
|
|
|
|
#define TEST_UNIXTIME_1904(_unixtime, exp) \
|
|
|
|
got = lxw_unixtime_to_excel_date_epoch(_unixtime, 1); \
|
2023-09-25 12:40:25 +01:00
|
|
|
ASSERT_DBL_NEAR(exp, got);
|
2021-07-01 21:00:59 +01:00
|
|
|
|