Skip to content

Commit

Permalink
chore(iast): cformat test file (#10898)
Browse files Browse the repository at this point in the history
## Checklist
- [x] PR author has checked that all the criteria below are met
- The PR description includes an overview of the change
- The PR description articulates the motivation for the change
- The change includes tests OR the PR description describes a testing
strategy
- The PR description notes risks associated with the change, if any
- Newly-added code is easy to change
- The change follows the [library release note
guidelines](https://ddtrace.readthedocs.io/en/stable/releasenotes.html)
- The change includes or references documentation updates if necessary
- Backport labels are set (if
[applicable](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting))

## Reviewer Checklist
- [x] Reviewer has checked that all the criteria below are met 
- Title is accurate
- All changes are related to the pull request's stated goal
- Avoids breaking
[API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces)
changes
- Testing strategy adequately addresses listed risks
- Newly-added code is easy to change
- Release note makes sense to a user of the library
- If necessary, author has acknowledged and discussed the performance
implications of this PR as reported in the benchmarks PR comment
- Backport labels are set in a manner that is consistent with the
[release branch maintenance
policy](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)
  • Loading branch information
gnufede authored Oct 2, 2024
1 parent 85e18cb commit b0e1d82
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ddtrace/appsec/_iast/_taint_tracking/tests/test_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,8 @@ TEST_F(AsFormattedEvidenceCheck, DefaultTagMappingModeIsMapper)
TaintRangeRefs taint_ranges = { std::make_shared<TaintRange>(5, 2, source) };

auto taint_range_1_hash = taint_ranges[0]->get_hash();
const std::string expected_result = "This :+-<" + std::to_string(taint_range_1_hash) + ">is<" + std::to_string(taint_range_1_hash) + ">-+: a test string.";
const std::string expected_result = "This :+-<" + std::to_string(taint_range_1_hash) + ">is<" +
std::to_string(taint_range_1_hash) + ">-+: a test string.";
const std::string result = as_formatted_evidence(text, taint_ranges);
EXPECT_STREQ(result.c_str(), expected_result.c_str());
}
Expand All @@ -335,7 +336,8 @@ TEST_F(AsFormattedEvidenceCheck, MultipleRangesWithMapper)
auto taint_range_1_hash = taint_ranges[0]->get_hash();
auto taint_range_2_hash = taint_ranges[1]->get_hash();
const std::string expected_result =
"This :+-<" + std::to_string(taint_range_1_hash) + ">is<" + std::to_string(taint_range_1_hash) + ">-+: a :+-<" + std::to_string(taint_range_2_hash) + ">test<" + std::to_string(taint_range_2_hash) + ">-+: string.";
"This :+-<" + std::to_string(taint_range_1_hash) + ">is<" + std::to_string(taint_range_1_hash) + ">-+: a :+-<" +
std::to_string(taint_range_2_hash) + ">test<" + std::to_string(taint_range_2_hash) + ">-+: string.";
const std::string result = as_formatted_evidence(text, taint_ranges);
EXPECT_STREQ(result.c_str(), expected_result.c_str());
}
Expand Down Expand Up @@ -404,7 +406,8 @@ TEST_F(AllAsFormattedEvidenceCheck, SingleTaintRangeWithMapper)
api_set_ranges(text, taint_ranges);

auto taint_range_1_hash = taint_ranges[0]->get_hash();
const py::str expected_result("This :+-<" + std::to_string(taint_range_1_hash) + ">is<" + std::to_string(taint_range_1_hash) + ">-+: a test string.");
const py::str expected_result("This :+-<" + std::to_string(taint_range_1_hash) + ">is<" +
std::to_string(taint_range_1_hash) + ">-+: a test string.");
const py::str result = all_as_formatted_evidence(text, TagMappingMode::Mapper);

EXPECT_STREQ(AnyTextObjectToString(result).c_str(), AnyTextObjectToString(expected_result).c_str());
Expand Down

0 comments on commit b0e1d82

Please sign in to comment.