2013-03-26 02:27:41 +01:00
|
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
#include <iostream>
|
|
|
|
#include <mapnik/image_reader.hpp>
|
|
|
|
#include <mapnik/image_util.hpp>
|
2013-06-03 04:28:24 +02:00
|
|
|
#include <mapnik/util/fs.hpp>
|
2013-05-25 02:21:55 +02:00
|
|
|
#include <vector>
|
2013-05-26 01:04:40 +02:00
|
|
|
#include <algorithm>
|
2013-03-26 02:27:41 +01:00
|
|
|
|
2013-05-26 02:55:41 +02:00
|
|
|
#include "utils.hpp"
|
|
|
|
|
2013-05-25 02:21:55 +02:00
|
|
|
int main(int argc, char** argv)
|
2013-03-26 02:27:41 +01:00
|
|
|
{
|
2013-05-25 02:21:55 +02:00
|
|
|
std::vector<std::string> args;
|
|
|
|
for (int i=1;i<argc;++i)
|
|
|
|
{
|
|
|
|
args.push_back(argv[i]);
|
|
|
|
}
|
|
|
|
bool quiet = std::find(args.begin(), args.end(), "-q")!=args.end();
|
|
|
|
|
2013-04-08 08:43:34 +02:00
|
|
|
std::string should_throw;
|
2013-03-26 02:27:41 +01:00
|
|
|
boost::optional<std::string> type;
|
|
|
|
try
|
|
|
|
{
|
2014-06-12 01:58:58 +02:00
|
|
|
mapnik::image_data_32 im(256,256);
|
|
|
|
unsigned char* bytes = im.getBytes();
|
|
|
|
mapnik::image_data_32 * im_ptr = new mapnik::image_data_32(256,256,(unsigned int *)bytes);
|
|
|
|
unsigned char* same_bytes = im_ptr->getBytes();
|
|
|
|
BOOST_TEST(bytes == same_bytes);
|
|
|
|
delete im_ptr;
|
|
|
|
BOOST_TEST(bytes == same_bytes);
|
|
|
|
|
2013-05-26 02:55:41 +02:00
|
|
|
BOOST_TEST(set_working_dir(args));
|
|
|
|
|
2013-08-24 00:07:45 +02:00
|
|
|
#if defined(HAVE_JPEG)
|
2013-04-08 08:43:34 +02:00
|
|
|
should_throw = "./tests/cpp_tests/data/blank.jpg";
|
2013-06-03 04:28:24 +02:00
|
|
|
BOOST_TEST( mapnik::util::exists( should_throw ) );
|
2013-04-08 08:43:34 +02:00
|
|
|
type = mapnik::type_from_filename(should_throw);
|
2013-03-26 02:27:41 +01:00
|
|
|
BOOST_TEST( type );
|
|
|
|
try
|
|
|
|
{
|
2013-09-20 05:19:01 +02:00
|
|
|
std::unique_ptr<mapnik::image_reader> reader(mapnik::get_image_reader(should_throw,*type));
|
|
|
|
BOOST_TEST( false );
|
2013-03-26 02:27:41 +01:00
|
|
|
}
|
|
|
|
catch (std::exception const&)
|
|
|
|
{
|
|
|
|
BOOST_TEST( true );
|
|
|
|
}
|
2013-08-24 00:07:45 +02:00
|
|
|
#endif
|
2013-03-26 02:27:41 +01:00
|
|
|
|
2013-08-24 00:07:45 +02:00
|
|
|
#if defined(HAVE_PNG)
|
2013-04-08 08:43:34 +02:00
|
|
|
should_throw = "./tests/cpp_tests/data/blank.png";
|
2013-06-03 04:28:24 +02:00
|
|
|
BOOST_TEST( mapnik::util::exists( should_throw ) );
|
2013-04-08 08:43:34 +02:00
|
|
|
type = mapnik::type_from_filename(should_throw);
|
2013-03-26 02:27:41 +01:00
|
|
|
BOOST_TEST( type );
|
|
|
|
try
|
|
|
|
{
|
2013-09-20 05:19:01 +02:00
|
|
|
std::unique_ptr<mapnik::image_reader> reader(mapnik::get_image_reader(should_throw,*type));
|
|
|
|
BOOST_TEST( false );
|
2013-03-26 02:27:41 +01:00
|
|
|
}
|
|
|
|
catch (std::exception const&)
|
|
|
|
{
|
|
|
|
BOOST_TEST( true );
|
|
|
|
}
|
2013-09-20 05:19:01 +02:00
|
|
|
|
2013-08-24 00:07:45 +02:00
|
|
|
should_throw = "./tests/data/images/xcode-CgBI.png";
|
2013-06-03 04:28:24 +02:00
|
|
|
BOOST_TEST( mapnik::util::exists( should_throw ) );
|
2013-04-08 08:43:34 +02:00
|
|
|
type = mapnik::type_from_filename(should_throw);
|
2013-03-26 02:27:41 +01:00
|
|
|
BOOST_TEST( type );
|
|
|
|
try
|
|
|
|
{
|
2013-09-20 05:19:01 +02:00
|
|
|
std::unique_ptr<mapnik::image_reader> reader(mapnik::get_image_reader(should_throw,*type));
|
|
|
|
BOOST_TEST( false );
|
2013-03-26 02:27:41 +01:00
|
|
|
}
|
|
|
|
catch (std::exception const&)
|
|
|
|
{
|
|
|
|
BOOST_TEST( true );
|
2013-07-19 07:09:17 +02:00
|
|
|
}
|
2013-08-24 00:07:45 +02:00
|
|
|
#endif
|
2013-07-19 07:09:17 +02:00
|
|
|
|
2013-08-24 00:07:45 +02:00
|
|
|
#if defined(HAVE_TIFF)
|
|
|
|
should_throw = "./tests/cpp_tests/data/blank.tiff";
|
2013-07-19 07:09:17 +02:00
|
|
|
BOOST_TEST( mapnik::util::exists( should_throw ) );
|
|
|
|
type = mapnik::type_from_filename(should_throw);
|
|
|
|
BOOST_TEST( type );
|
|
|
|
try
|
|
|
|
{
|
2013-09-20 05:19:01 +02:00
|
|
|
std::unique_ptr<mapnik::image_reader> reader(mapnik::get_image_reader(should_throw,*type));
|
|
|
|
BOOST_TEST( false );
|
2013-07-19 07:09:17 +02:00
|
|
|
}
|
|
|
|
catch (std::exception const&)
|
|
|
|
{
|
|
|
|
BOOST_TEST( true );
|
2013-03-26 02:27:41 +01:00
|
|
|
}
|
2013-08-24 00:07:45 +02:00
|
|
|
#endif
|
2013-04-08 08:43:34 +02:00
|
|
|
|
2013-08-24 00:07:45 +02:00
|
|
|
#if defined(HAVE_WEBP)
|
|
|
|
should_throw = "./tests/cpp_tests/data/blank.webp";
|
2013-06-03 04:28:24 +02:00
|
|
|
BOOST_TEST( mapnik::util::exists( should_throw ) );
|
2013-04-08 08:43:34 +02:00
|
|
|
type = mapnik::type_from_filename(should_throw);
|
|
|
|
BOOST_TEST( type );
|
|
|
|
try
|
|
|
|
{
|
2013-09-20 05:19:01 +02:00
|
|
|
std::unique_ptr<mapnik::image_reader> reader(mapnik::get_image_reader(should_throw,*type));
|
2013-08-24 00:07:45 +02:00
|
|
|
BOOST_TEST( false );
|
2013-04-08 08:43:34 +02:00
|
|
|
}
|
|
|
|
catch (std::exception const&)
|
|
|
|
{
|
|
|
|
BOOST_TEST( true );
|
|
|
|
}
|
2013-08-24 00:07:45 +02:00
|
|
|
#endif
|
2013-03-26 02:27:41 +01:00
|
|
|
}
|
|
|
|
catch (std::exception const & ex)
|
|
|
|
{
|
|
|
|
std::clog << "C++ image i/o problem: " << ex.what() << "\n";
|
|
|
|
BOOST_TEST(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!::boost::detail::test_errors()) {
|
2013-05-25 02:21:55 +02:00
|
|
|
if (quiet) std::clog << "\x1b[1;32m.\x1b[0m";
|
|
|
|
else std::clog << "C++ image i/o: \x1b[1;32m✓ \x1b[0m\n";
|
2013-03-26 02:27:41 +01:00
|
|
|
::boost::detail::report_errors_remind().called_report_errors_function = true;
|
|
|
|
} else {
|
|
|
|
return ::boost::report_errors();
|
|
|
|
}
|
|
|
|
}
|