Skip to content

Commit

Permalink
ICU-22479 Enahnce the fuzzer for ListFormatter
Browse files Browse the repository at this point in the history
Add the testing for invalid type and width.
Also test formatStringsToValue
  • Loading branch information
FrankYFTang committed Sep 22, 2023
1 parent 501fe1b commit cdcea0c
Showing 1 changed file with 23 additions and 14 deletions.
37 changes: 23 additions & 14 deletions icu4c/source/test/fuzzer/list_format_fuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@
#include "unicode/listformatter.h"
#include "unicode/locid.h"


void TestFormat(icu::ListFormatter* listFormat, const icu::UnicodeString* items) {
for (size_t i = 0; i <= 4; i++) {
icu::UnicodeString appendTo;
UErrorCode status = U_ZERO_ERROR;
listFormat->format(items, i, appendTo, status);
status = U_ZERO_ERROR;
icu::FormattedList formatted = listFormat->formatStringsToValue(items, i, status);
}
}
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
uint16_t rnd;
UListFormatterType type;
Expand All @@ -23,12 +33,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {

std::memcpy(&type, fuzzData.data(), sizeof(type));
fuzzData.remove_prefix(sizeof(type));
type = static_cast<UListFormatterType>(
static_cast<int>(type) % (static_cast<int>(ULISTFMT_TYPE_UNITS) + 1));
std::memcpy(&width, fuzzData.data(), sizeof(width));
fuzzData.remove_prefix(sizeof(width));
width = static_cast<UListFormatterWidth>(
static_cast<int>(width) % (static_cast<int>(ULISTFMT_WIDTH_NARROW) + 1));

size_t len = fuzzData.size() / sizeof(char16_t);
icu::UnicodeString text(false, reinterpret_cast<const char16_t*>(fuzzData.data()), len);
Expand All @@ -37,23 +43,26 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
UErrorCode status = U_ZERO_ERROR;
std::unique_ptr<icu::ListFormatter> listFormat(
icu::ListFormatter::createInstance(locale, status));
if (U_SUCCESS(status)) {
TestFormat(listFormat.get(), items);
}

status = U_ZERO_ERROR;
listFormat.reset(
icu::ListFormatter::createInstance(locale, type, width, status));
if (U_SUCCESS(status)) {
for (size_t i = 0; i <= 4; i++) {
icu::UnicodeString appendTo;
status = U_ZERO_ERROR;
listFormat->format(items, i, appendTo, status);
}
TestFormat(listFormat.get(), items);
}

status = U_ZERO_ERROR;
type = static_cast<UListFormatterType>(
static_cast<int>(type) % (static_cast<int>(ULISTFMT_TYPE_UNITS) + 1));
width = static_cast<UListFormatterWidth>(
static_cast<int>(width) % (static_cast<int>(ULISTFMT_WIDTH_NARROW) + 1));
listFormat.reset(
icu::ListFormatter::createInstance(locale, type, width, status));
if (U_SUCCESS(status)) {
for (size_t i = 0; i <= 4; i++) {
icu::UnicodeString appendTo;
status = U_ZERO_ERROR;
listFormat->format(items, i, appendTo, status);
}
TestFormat(listFormat.get(), items);
}

return EXIT_SUCCESS;
Expand Down

1 comment on commit cdcea0c

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: cdcea0c Previous: 501fe1b Ratio
TestICU_NFD_NFD_Text 39.6264 ns/iter 18.1831 ns/iter 2.18
TestICU_NFD_NFC_Text 39.3354 ns/iter 18.1863 ns/iter 2.16

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.