valijson/tests/test_validator.cpp
2014-03-01 09:03:39 +11:00

326 lines
9.0 KiB
C++

#include <iostream>
#include <boost/foreach.hpp>
#include <boost/lexical_cast.hpp>
#include <gtest/gtest.h>
#include <valijson/adapters/jsoncpp_adapter.hpp>
#include <valijson/adapters/rapidjson_adapter.hpp>
#include <valijson/utils/jsoncpp_utils.hpp>
#include <valijson/utils/rapidjson_utils.hpp>
#include <valijson/schema.hpp>
#include <valijson/schema_parser.hpp>
#include <valijson/validation_results.hpp>
#include <valijson/validator.hpp>
#define TEST_SUITE_DIR "../thirdparty/JSON-Schema-Test-Suite/tests/"
using valijson::adapters::AdapterTraits;
using valijson::adapters::RapidJsonAdapter;
using valijson::Schema;
using valijson::SchemaParser;
using valijson::Validator;
class TestValidator : public ::testing::TestWithParam<const char *>
{
protected:
template<typename AdapterType>
static void processTestFile(const std::string &testFile,
const SchemaParser::Version version)
{
std::string currentTestCase;
std::string currentTest;
try {
// Load test document
typename AdapterTraits<AdapterType>::DocumentType document;
ASSERT_TRUE( valijson::utils::loadDocument(testFile, document) );
AdapterType testCases(document);
ASSERT_TRUE( testCases.isArray() );
// Process each test case in the file
BOOST_FOREACH( const AdapterType testCase, testCases.getArray() ) {
currentTestCase.clear();
currentTest.clear();
// Ensure that testCase is an object
ASSERT_TRUE( testCase.isObject() );
const typename AdapterType::Object object = testCase.getObject();
// Get test case description
typename AdapterType::Object::const_iterator itr = object.find("description");
ASSERT_NE( object.end(), itr );
currentTestCase = itr->second.getString();
// Ensure that 'schema' property is present
itr = object.find("schema");
ASSERT_NE( object.end(), itr );
// Parse schema
Schema schema;
SchemaParser parser(version);
parser.populateSchema(itr->second, schema);
// For each test in the 'tests' array
itr = object.find("tests");
ASSERT_NE( object.end(), itr );
ASSERT_TRUE( itr->second.isArray() );
BOOST_FOREACH( const AdapterType test, itr->second.getArray() ) {
const bool strict = itr->second.hasStrictTypes();
ASSERT_TRUE( test.isObject() );
const typename AdapterType::Object testObject = test.getObject();
typename AdapterType::Object::const_iterator testItr = testObject.find("valid");
ASSERT_NE( testObject.end(), testItr );
ASSERT_TRUE( testItr->second.maybeBool() );
const bool shouldValidate = testItr->second.getBool();
testItr = testObject.find("description");
ASSERT_NE( testObject.end(), testItr );
currentTest = testItr->second.getString();
testItr = testObject.find("data");
ASSERT_NE( testObject.end(), testItr );
Validator validator(schema);
validator.setStrict(strict);
EXPECT_EQ( shouldValidate, validator.validate(testItr->second, NULL) )
<< "Failed while testing validate() function in '"
<< currentTest << "' of test case '"
<< currentTestCase << "' with adapter '"
<< AdapterTraits<AdapterType>::adapterName() << "'";
}
}
} catch (const std::exception &e) {
FAIL() << "Exception thrown with message '" << e.what()
<< "' in '" << currentTest << "' of test case '"
<< currentTestCase << "' with adapter '"
<< AdapterTraits<AdapterType>::adapterName() << "'";
}
}
void processTestFile(const std::string &testFile,
const SchemaParser::Version version)
{
processTestFile<valijson::adapters::JsonCppAdapter>(testFile, version);
processTestFile<valijson::adapters::RapidJsonAdapter>(testFile, version);
}
void processDraft3TestFile(const std::string &testFile)
{
return processTestFile(testFile, SchemaParser::kDraft3);
}
void processDraft4TestFile(const std::string &testFile)
{
return processTestFile(testFile, SchemaParser::kDraft4);
}
};
TEST_F(TestValidator, Draft3_AdditionalItems)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/additionalItems.json");
}
TEST_F(TestValidator, Draft3_AdditionalProperties)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/additionalProperties.json");
}
TEST_F(TestValidator, Draft3_Dependencies)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/dependencies.json");
}
TEST_F(TestValidator, Draft3_Enum)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/enum.json");
}
TEST_F(TestValidator, Draft3_Items)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/items.json");
}
TEST_F(TestValidator, Draft3_Maximum)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/maximum.json");
}
TEST_F(TestValidator, Draft3_MaxItems)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/maxItems.json");
}
TEST_F(TestValidator, Draft3_MaxLength)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/maxLength.json");
}
TEST_F(TestValidator, Draft3_Minimum)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/minimum.json");
}
TEST_F(TestValidator, Draft3_MinItems)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/minItems.json");
}
TEST_F(TestValidator, Draft3_MinLength)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/minLength.json");
}
TEST_F(TestValidator, Draft3_Pattern)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/pattern.json");
}
TEST_F(TestValidator, Draft3_PatternProperties)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/patternProperties.json");
}
TEST_F(TestValidator, Draft3_Properties)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/properties.json");
}
TEST_F(TestValidator, Draft3_Required)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/required.json");
}
TEST_F(TestValidator, Draft3_Type)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/type.json");
}
TEST_F(TestValidator, Draft3_UniqueItems)
{
processDraft3TestFile(TEST_SUITE_DIR "draft3/uniqueItems.json");
}
TEST_F(TestValidator, Draft4_AdditionalItems)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/additionalItems.json");
}
TEST_F(TestValidator, Draft4_AdditionalProperties)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/additionalProperties.json");
}
TEST_F(TestValidator, Draft4_AllOf)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/allOf.json");
}
TEST_F(TestValidator, Draft4_AnyOf)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/anyOf.json");
}
TEST_F(TestValidator, Draft4_Dependencies)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/dependencies.json");
}
TEST_F(TestValidator, Draft4_Enum)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/enum.json");
}
TEST_F(TestValidator, Draft4_Items)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/items.json");
}
TEST_F(TestValidator, Draft4_Maximum)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/maximum.json");
}
TEST_F(TestValidator, Draft4_MaxItems)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/maxItems.json");
}
TEST_F(TestValidator, Draft4_MaxLength)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/maxLength.json");
}
TEST_F(TestValidator, Draft4_MaxProperties)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/maxProperties.json");
}
TEST_F(TestValidator, Draft4_Minimum)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/minimum.json");
}
TEST_F(TestValidator, Draft4_MinItems)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/minItems.json");
}
TEST_F(TestValidator, Draft4_MinLength)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/minLength.json");
}
TEST_F(TestValidator, Draft4_MinProperties)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/minProperties.json");
}
TEST_F(TestValidator, Draft4_Not)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/not.json");
}
TEST_F(TestValidator, Draft4_OneOf)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/oneOf.json");
}
TEST_F(TestValidator, Draft4_Pattern)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/pattern.json");
}
TEST_F(TestValidator, Draft4_PatternProperties)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/patternProperties.json");
}
TEST_F(TestValidator, Draft4_Properties)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/properties.json");
}
TEST_F(TestValidator, Draft4_Required)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/required.json");
}
TEST_F(TestValidator, Draft4_Type)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/type.json");
}
TEST_F(TestValidator, Draft4_UniqueItems)
{
processDraft4TestFile(TEST_SUITE_DIR "draft4/uniqueItems.json");
}