2009-12-08 23:44:45 +03:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2016-09-01 21:04:35 +03:00
|
|
|
#include "cmXMLSafe.h"
|
2009-12-08 23:44:45 +03:00
|
|
|
|
2016-09-01 21:04:35 +03:00
|
|
|
#include <sstream>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string>
|
2009-12-08 23:44:45 +03:00
|
|
|
|
|
|
|
struct test_pair
|
|
|
|
{
|
|
|
|
const char* in;
|
|
|
|
const char* out;
|
|
|
|
};
|
|
|
|
|
|
|
|
static test_pair const pairs[] = {
|
2016-05-16 17:34:04 +03:00
|
|
|
{ "copyright \xC2\xA9", "copyright \xC2\xA9" },
|
|
|
|
{ "form-feed \f", "form-feed [NON-XML-CHAR-0xC]" },
|
|
|
|
{ "angles <>", "angles <>" },
|
|
|
|
{ "ampersand &", "ampersand &" },
|
|
|
|
{ "bad-byte \x80", "bad-byte [NON-UTF-8-BYTE-0x80]" },
|
2016-09-06 00:18:05 +03:00
|
|
|
{ CM_NULLPTR, CM_NULLPTR }
|
2009-12-08 23:44:45 +03:00
|
|
|
};
|
|
|
|
|
2016-08-17 02:49:57 +03:00
|
|
|
int testXMLSafe(int /*unused*/, char* /*unused*/ [])
|
2009-12-08 23:44:45 +03:00
|
|
|
{
|
|
|
|
int result = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (test_pair const* p = pairs; p->in; ++p) {
|
2009-12-08 23:44:45 +03:00
|
|
|
cmXMLSafe xs(p->in);
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream oss;
|
2009-12-08 23:44:45 +03:00
|
|
|
oss << xs;
|
|
|
|
std::string out = oss.str();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (out != p->out) {
|
2009-12-08 23:44:45 +03:00
|
|
|
printf("expected [%s], got [%s]\n", p->out, out.c_str());
|
|
|
|
result = 1;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-08 23:44:45 +03:00
|
|
|
return result;
|
|
|
|
}
|