1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 11:10:47 +00:00
falk-werner_webfuse-provider/test/webfuse_provider/json_matcher.hpp
2020-06-16 23:57:41 +02:00

35 lines
707 B
C++

#ifndef WFP_JSON_MATCHER_HPP
#define FW_JSON_MATCHER_HPP
#include <gtest/gtest.h>
#include <jansson.h>
namespace webfuse_test
{
MATCHER_P(JsonMatcher, expected_str, "")
{
std::cout << "--- JsonMatcher ---" << std::endl;
bool matches = false;
json_t * expected = json_loads(expected_str, 0, nullptr);
if (nullptr != expected)
{
matches = (1 == json_equal(expected, arg));
if (!matches)
{
char * actual = json_dumps(arg, 0);
std::cout << actual << std::endl;
*result_listener << "where arg is " << actual;
free(actual);
}
json_decref(expected);
}
return true; //matches;
}
}
#endif