summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exempi/tests/Makefile.am8
-rw-r--r--exempi/tests/testparse.cpp78
2 files changed, 84 insertions, 2 deletions
diff --git a/exempi/tests/Makefile.am b/exempi/tests/Makefile.am
index ad7092d..9016674 100644
--- a/exempi/tests/Makefile.am
+++ b/exempi/tests/Makefile.am
@@ -42,12 +42,12 @@ TEST_EXTENSIONS = .sh
if WITH_UNIT_TEST
check_PROGRAMS = testexempicore testserialise testwritenewprop \
testtiffleak testxmpfiles testxmpfileswrite \
- test3 testinit testfdo18635 testfdo83313 testcpp testwebp \
+ testparse test3 testinit testfdo18635 testfdo83313 testcpp testwebp \
testadobesdk \
$(NULL)
TESTS = testcore.sh testinit testexempicore testserialise testwritenewprop \
testtiffleak testxmpfiles testxmpfileswrite \
- test3 testfdo18635 testfdo83313 testcpp testwebp \
+ testparse test3 testfdo18635 testfdo83313 testcpp testwebp \
testadobesdk \
$(NULL)
TESTS_ENVIRONMENT = TEST_DIR=$(srcdir) BOOST_TEST_CATCH_SYSTEM_ERRORS=no VALGRIND="$(VALGRIND)"
@@ -94,6 +94,10 @@ testxmpfileswrite_SOURCES = test-xmpfiles-write.cpp utils.cpp
testxmpfileswrite_LDADD = ../libexempi.la @BOOST_UNIT_TEST_FRAMEWORK_LIBS@
testxmpfileswrite_LDFLAGS = -static @BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS@
+testparse_SOURCES = testparse.cpp utils.cpp
+testparse_LDADD = ../libexempi.la @BOOST_UNIT_TEST_FRAMEWORK_LIBS@
+testparse_LDFLAGS = -static @BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS@
+
test3_SOURCES = test3.cpp utils.cpp
test3_LDADD = ../libexempi.la @BOOST_UNIT_TEST_FRAMEWORK_LIBS@
test3_LDFLAGS = -static @BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS@
diff --git a/exempi/tests/testparse.cpp b/exempi/tests/testparse.cpp
new file mode 100644
index 0000000..c979a89
--- /dev/null
+++ b/exempi/tests/testparse.cpp
@@ -0,0 +1,78 @@
+/*
+ * exempi - test3.cpp
+ *
+ * Copyright (C) 2007-2017 Hubert Figuiere
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1 Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * 2 Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the
+ * distribution.
+ *
+ * 3 Neither the name of the Authors, nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software wit hout specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+#include <string>
+#include <iostream>
+
+#include <boost/test/minimal.hpp>
+#include <boost/format.hpp>
+
+#include "utils.h"
+#include "xmp.h"
+#include "xmpconsts.h"
+
+using boost::unit_test::test_suite;
+
+// void test_exempi_iterate()
+int test_main(int argc, char *argv[])
+{
+ char *buffer;
+
+ buffer = strdup("This is not even XML");
+ size_t len = strlen(buffer);
+
+ BOOST_CHECK(len != 0);
+ BOOST_CHECK(xmp_init());
+
+ XmpPtr xmp = xmp_new_empty();
+
+ // TODO current xmp_parse will succeed with invalid XML
+ BOOST_CHECK(xmp_parse(xmp, buffer, len));
+
+ BOOST_CHECK(xmp != NULL);
+
+ BOOST_CHECK(xmp_free(xmp));
+
+ free(buffer);
+ xmp_terminate();
+
+ BOOST_CHECK(!g_lt->check_leaks());
+ BOOST_CHECK(!g_lt->check_errors());
+ return 0;
+}