summaryrefslogtreecommitdiff
path: root/expression-test/expression_test_runner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'expression-test/expression_test_runner.cpp')
-rw-r--r--expression-test/expression_test_runner.cpp110
1 files changed, 2 insertions, 108 deletions
diff --git a/expression-test/expression_test_runner.cpp b/expression-test/expression_test_runner.cpp
index e52c9b1186..c8a39f07ce 100644
--- a/expression-test/expression_test_runner.cpp
+++ b/expression-test/expression_test_runner.cpp
@@ -1,7 +1,8 @@
#include "expression_test_runner.hpp"
-#include "expression_test_parser.hpp"
#include "expression_test_logger.hpp"
+#include "expression_test_parser.hpp"
#include "filesystem.hpp"
+#include "test_runner_common.hpp"
#include <mbgl/util/io.hpp>
@@ -16,113 +17,6 @@ using namespace std::literals;
namespace {
-// Strip precision for numbers, so that we can compare evaluated results with fixtures.
-// Copied from JS expression harness.
-Value stripPrecision(const Value& value) {
- const double decimalSigFigs = 6;
- if (auto num = numericValue<double>(value)) {
- if (*num == 0) {
- return *num;
- }
-
- const double multiplier = std::pow(10,
- std::max(0.0, decimalSigFigs - std::ceil(std::log10(std::fabs(*num)))));
-
- // We strip precision twice in a row here to avoid cases where
- // stripping an already stripped number will modify its value
- // due to bad floating point precision luck
- // eg `Math.floor(8.16598 * 100000) / 100000` -> 8.16597
- const double firstStrip = std::floor(*num * multiplier) / multiplier;
- return std::floor(firstStrip * multiplier) / multiplier;
- }
-
- if (value.is<std::vector<Value>>()) {
- std::vector<Value> stripped;
- const auto& vec = value.get<std::vector<Value>>();
- stripped.reserve(vec.size());
- for (const auto& val : vec) {
- stripped.emplace_back(stripPrecision(val));
- }
- return stripped;
- } else if (value.is<std::unordered_map<std::string, Value>>()) {
- std::unordered_map<std::string, Value> stripped;
- const auto& map = value.get<std::unordered_map<std::string, Value>>();
- for (const auto& pair : map) {
- stripped.emplace(pair.first, stripPrecision(pair.second));
- }
- return stripped;
- }
-
- return value;
-}
-
-bool deepEqual(const Value& a, const Value& b) {
- const auto& anum = numericValue<double>(a);
- const auto& bnum = numericValue<double>(b);
- if (anum && bnum) {
- return stripPrecision(*anum) == stripPrecision(*bnum);
- }
-
- if (a.which() != b.which()) {
- return false;
- }
-
- if (a.is<std::vector<Value>>()) {
- const auto& avec = a.get<std::vector<Value>>();
- const auto& bvec = b.get<std::vector<Value>>();
- if (avec.size() != bvec.size()) {
- return false;
- }
- for (std::size_t i = 0; i < avec.size(); ++i) {
- if (!deepEqual(avec[i], bvec[i])) {
- return false;
- }
- }
- return true;
- }
-
- if (a.is<std::unordered_map<std::string, Value>>()) {
- const auto& amap = a.get<std::unordered_map<std::string, Value>>();
- const auto& bmap = b.get<std::unordered_map<std::string, Value>>();
- if (amap.size() != bmap.size()) {
- return false;
- }
- for (const auto& pair : amap) {
- auto it = bmap.find(pair.first);
- if (it == bmap.end()) {
- return false;
- }
- if (!deepEqual(pair.second, it->second)) {
- return false;
- }
- }
- return true;
- }
-
- return a == b;
-}
-
-bool deepEqual(const optional<Value>& a, const optional<Value>& b) {
- if ((a && !b) || (!a && b)) {
- return false;
- }
-
- if (a && b) {
- return deepEqual(*a, *b);
- }
-
- return true;
-}
-
-std::vector<std::string> tokenize(std::string str) {
- std::vector<std::string> tokens;
- std::regex re("\n");
- std::copy(std::regex_token_iterator<std::string::iterator>(str.begin(), str.end(), re, -1),
- std::regex_token_iterator<std::string::iterator>(),
- std::back_inserter(tokens));
- return tokens;
-}
-
std::string simpleDiff(const Value& result, const Value& expected) {
std::vector<std::string> resultTokens {tokenize(toJSON(result, 2, true))};
std::vector<std::string> expectedTokens {tokenize(toJSON(expected, 2, true))};