workbook: add check for blank worksheet name

Issue #442
This commit is contained in:
John McNamara 2024-05-08 19:59:22 +01:00
parent 5bd28dfccf
commit 284b61ba0b
5 changed files with 43 additions and 0 deletions

View File

@ -107,6 +107,9 @@ typedef enum lxw_error {
/** Function parameter validation error. */ /** Function parameter validation error. */
LXW_ERROR_PARAMETER_VALIDATION, LXW_ERROR_PARAMETER_VALIDATION,
/** Worksheet name cannot be blank. */
LXW_ERROR_SHEETNAME_IS_BLANK,
/** Worksheet name exceeds Excel's limit of 31 characters. */ /** Worksheet name exceeds Excel's limit of 31 characters. */
LXW_ERROR_SHEETNAME_LENGTH_EXCEEDED, LXW_ERROR_SHEETNAME_LENGTH_EXCEEDED,

View File

@ -469,6 +469,7 @@ lxw_workbook *workbook_new_opt(const char *filename,
* *
* The worksheet name must be a valid Excel worksheet name, i.e: * The worksheet name must be a valid Excel worksheet name, i.e:
* *
* - The name cannot be blank.
* - The name is less than or equal to 31 UTF-8 characters. * - The name is less than or equal to 31 UTF-8 characters.
* - The name doesn't contain any of the characters: ` [ ] : * ? / \ ` * - The name doesn't contain any of the characters: ` [ ] : * ? / \ `
* - The name doesn't start or end with an apostrophe. * - The name doesn't start or end with an apostrophe.
@ -511,6 +512,7 @@ lxw_worksheet *workbook_add_worksheet(lxw_workbook *workbook,
* *
* The chartsheet name must be a valid Excel worksheet name, i.e.: * The chartsheet name must be a valid Excel worksheet name, i.e.:
* *
* - The name cannot be blank.
* - The name is less than or equal to 31 UTF-8 characters. * - The name is less than or equal to 31 UTF-8 characters.
* - The name doesn't contain any of the characters: ` [ ] : * ? / \ ` * - The name doesn't contain any of the characters: ` [ ] : * ? / \ `
* - The name doesn't start or end with an apostrophe. * - The name doesn't start or end with an apostrophe.
@ -927,6 +929,7 @@ lxw_chartsheet *workbook_get_chartsheet_by_name(lxw_workbook *workbook,
* This function is used to validate a worksheet or chartsheet name according * This function is used to validate a worksheet or chartsheet name according
* to the rules used by Excel: * to the rules used by Excel:
* *
* - The name cannot be blank.
* - The name is less than or equal to 31 UTF-8 characters. * - The name is less than or equal to 31 UTF-8 characters.
* - The name doesn't contain any of the characters: ` [ ] : * ? / \ ` * - The name doesn't contain any of the characters: ` [ ] : * ? / \ `
* - The name doesn't start or end with an apostrophe. * - The name doesn't start or end with an apostrophe.

View File

@ -40,6 +40,7 @@ char *error_strings[LXW_MAX_ERRNO + 1] = {
"Feature is not currently supported in this configuration.", "Feature is not currently supported in this configuration.",
"NULL function parameter ignored.", "NULL function parameter ignored.",
"Function parameter validation error.", "Function parameter validation error.",
"Worksheet name cannot be blank.",
"Worksheet name exceeds Excel's limit of 31 characters.", "Worksheet name exceeds Excel's limit of 31 characters.",
"Worksheet name cannot contain invalid characters: '[ ] : * ? / \\'", "Worksheet name cannot contain invalid characters: '[ ] : * ? / \\'",
"Worksheet name cannot start or end with an apostrophe.", "Worksheet name cannot start or end with an apostrophe.",

View File

@ -2607,6 +2607,13 @@ workbook_unset_default_url_format(lxw_workbook *self)
lxw_error lxw_error
workbook_validate_sheet_name(lxw_workbook *self, const char *sheetname) workbook_validate_sheet_name(lxw_workbook *self, const char *sheetname)
{ {
if (sheetname == NULL)
return LXW_ERROR_NULL_PARAMETER_IGNORED;
/* Check for blank worksheet name. */
if (strlen(sheetname) == 0)
return LXW_ERROR_SHEETNAME_IS_BLANK;
/* Check the UTF-8 length of the worksheet name. */ /* Check the UTF-8 length of the worksheet name. */
if (lxw_utf8_strlen(sheetname) > LXW_SHEETNAME_MAX) if (lxw_utf8_strlen(sheetname) > LXW_SHEETNAME_MAX)
return LXW_ERROR_SHEETNAME_LENGTH_EXCEEDED; return LXW_ERROR_SHEETNAME_LENGTH_EXCEEDED;

View File

@ -12,6 +12,7 @@
#include "../../../include/xlsxwriter/workbook.h" #include "../../../include/xlsxwriter/workbook.h"
#include "../../../include/xlsxwriter/shared_strings.h" #include "../../../include/xlsxwriter/shared_strings.h"
/* Test a valid sheet name. */ /* Test a valid sheet name. */
CTEST(workbook, validate_worksheet_name01) { CTEST(workbook, validate_worksheet_name01) {
@ -145,3 +146,31 @@ CTEST(workbook, validate_worksheet_name09) {
lxw_workbook_free(workbook); lxw_workbook_free(workbook);
} }
/* Test for blank sheet name. */
CTEST(workbook, validate_worksheet_name10) {
const char* sheetname = "";
lxw_workbook *workbook = workbook_new(NULL);
lxw_error exp = LXW_ERROR_SHEETNAME_IS_BLANK;
lxw_error got = workbook_validate_sheet_name(workbook, sheetname);
ASSERT_EQUAL(exp, got);
lxw_workbook_free(workbook);
}
/* Test for NULL sheet name. */
CTEST(workbook, validate_worksheet_name11) {
const char* sheetname = NULL;
lxw_workbook *workbook = workbook_new(NULL);
lxw_error exp = LXW_ERROR_NULL_PARAMETER_IGNORED;
lxw_error got = workbook_validate_sheet_name(workbook, sheetname);
ASSERT_EQUAL(exp, got);
lxw_workbook_free(workbook);
}