diff options
Diffstat (limited to 'tests/ntriples')
32 files changed, 1103 insertions, 0 deletions
diff --git a/tests/ntriples/CMakeLists.txt b/tests/ntriples/CMakeLists.txt new file mode 100644 index 0000000..f22c2e7 --- /dev/null +++ b/tests/ntriples/CMakeLists.txt @@ -0,0 +1,53 @@ +# raptor/tests/ntriples/CMakeLists.txt +# +# Original listfile by Daniel Richard G. <skunk@iSKUNK.ORG> +# This file is in the public domain. +# + +RAPPER_TEST(ntriples.test + "${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/test.nt http://librdf.org/raptor/tests/test.nt" + test.res + ${CMAKE_CURRENT_SOURCE_DIR}/test.out +) + +ADD_TEST(ntriples.bad-00 ${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/bad-00.nt http://librdf.org/raptor/tests/bad-00.nt) # WILL_FAIL +ADD_TEST(ntriples.bad-01 ${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/bad-01.nt http://librdf.org/raptor/tests/bad-01.nt) # WILL_FAIL +ADD_TEST(ntriples.bad-02 ${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/bad-02.nt http://librdf.org/raptor/tests/bad-02.nt) # WILL_FAIL +ADD_TEST(ntriples.bad-03 ${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/bad-03.nt http://librdf.org/raptor/tests/bad-03.nt) # WILL_FAIL +ADD_TEST(ntriples.bad-04 ${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/bad-04.nt http://librdf.org/raptor/tests/bad-04.nt) # WILL_FAIL +ADD_TEST(ntriples.bad-05 ${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/bad-05.nt http://librdf.org/raptor/tests/bad-05.nt) # WILL_FAIL +ADD_TEST(ntriples.bad-06 ${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/bad-06.nt http://librdf.org/raptor/tests/bad-06.nt) # WILL_FAIL +ADD_TEST(ntriples.bad-07 ${RAPPER} -q -i ntriples -o ntriples file:${CMAKE_CURRENT_SOURCE_DIR}/bad-07.nt http://librdf.org/raptor/tests/bad-07.nt) # WILL_FAIL + +SET_TESTS_PROPERTIES( + ntriples.bad-00 + ntriples.bad-01 + ntriples.bad-02 + ntriples.bad-03 + ntriples.bad-04 + ntriples.bad-05 + ntriples.bad-06 + ntriples.bad-07 + PROPERTIES + WILL_FAIL TRUE +) + +RAPPER_TEST(ntriples.testnq-1 + "${RAPPER} -q -i nquads -o nquads file:${CMAKE_CURRENT_SOURCE_DIR}/testnq-1.nq http://librdf.org/raptor/tests/testnq-1.nq" + testnq-1.res + ${CMAKE_CURRENT_SOURCE_DIR}/testnq-1.out +) + +RAPPER_TEST(ntriples.testnq-optional-context + "${RAPPER} -q -i nquads -o nquads file:${CMAKE_CURRENT_SOURCE_DIR}/testnq-optional-context.nq http://librdf.org/raptor/tests/testnq-optional-context.nq" + testnq-optional-context.res + ${CMAKE_CURRENT_SOURCE_DIR}/testnq-optional-context.out +) + +RAPPER_TEST(ntriples.bug-481 + "${RAPPER} -q -i nquads -o nquads file:${CMAKE_CURRENT_SOURCE_DIR}/bug-481.nq http://librdf.org/raptor/tests/bug-481.nq" + bug-481.res + ${CMAKE_CURRENT_SOURCE_DIR}/bug-481.out +) + +# end raptor/tests/ntriples/CMakeLists.txt diff --git a/tests/ntriples/Makefile.am b/tests/ntriples/Makefile.am new file mode 100644 index 0000000..9310865 --- /dev/null +++ b/tests/ntriples/Makefile.am @@ -0,0 +1,164 @@ +# -*- Mode: Makefile -*- +# +# Makefile.am - automake file for Raptor N-Triples tests +# +# Copyright (C) 2000-2009, David Beckett http://www.dajobe.org/ +# Copyright (C) 2000-2004, University of Bristol, UK http://www.bristol.ac.uk/ +# +# This package is Free Software and part of Redland http://librdf.org/ +# +# It is licensed under the following three licenses as alternatives: +# 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version +# 2. GNU General Public License (GPL) V2 or any newer version +# 3. Apache License, V2.0 or any newer version +# +# You may not use this file except in compliance with at least one of +# the above three licenses. +# +# See LICENSE.html or LICENSE.txt at the top of this package for the +# complete terms and further detail along with the license texts for +# the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. +# +# + +NT_TEST_FILES = test.nt \ +nt2013-ex1.nt \ +nt2013-ex2.nt \ +nt2013-ex3.nt \ +nt2013-ex4.nt \ +bug-562.nt \ +bug-574.nt \ +bug-577.nt + +NT_OUT_FILES = test.out \ +nt2013-ex1.out \ +nt2013-ex2.out \ +nt2013-ex3.out \ +nt2013-ex4.out \ +bug-562.out \ +bug-574.out \ +bug-577.out + +NT_BAD_TEST_FILES=bad-00.nt bad-02.nt bad-03.nt bad-04.nt \ +bad-05.nt bad-06.nt bad-07.nt + +NQ_TEST_FILES=testnq-1.nq testnq-optional-context.nq bug-481.nq + +NQ_OUT_FILES=testnq-1.out testnq-optional-context.out bug-481.out + +# Used to make N-triples output consistent +BASE_URI=http://librdf.org/raptor/tests/ + +EXTRA_DIST = \ + CMakeLists.txt \ + $(NT_TEST_FILES) \ + $(NT_OUT_FILES) \ + $(NT_BAD_TEST_FILES) \ + $(NQ_TEST_FILES) \ + $(NQ_OUT_FILES) + +CLEANFILES = CMakeTests.txt CMakeTmp.txt + +RAPPER = $(top_builddir)/utils/rapper + +build-rapper: + @(cd $(top_builddir)/utils ; $(MAKE) rapper$(EXEEXT)) + +check-local: build-rapper \ +check-nt check-bad-nt check-nq + +if MAINTAINER_MODE +check_nt_deps = $(NT_TEST_FILES) +endif + +check-nt: build-rapper $(check_nt_deps) + @set +e; result=0; \ + $(RECHO) "Testing N-Triples"; \ + for test in $(NT_TEST_FILES); do \ + name=`basename $$test .nt` ; \ + $(RECHO) $(RECHO_N) "Checking $$test $(RECHO_C)"; \ + $(RAPPER) -q -i ntriples -o ntriples file:$(srcdir)/$$test $(BASE_URI)$$test > $$name.res 2> $$name.err; \ + status=$$?; \ + if test $$status -ne 0 ; then \ + $(RECHO) "FAILED"; \ + cat $$name.err; \ + elif cmp $(srcdir)/$$name.out $$name.res >/dev/null 2>&1; then \ + $(RECHO) "ok"; \ + else \ + $(RECHO) "FAILED"; \ + diff $(srcdir)/$$name.out $$name.res; result=1; \ + fi; \ + rm -f $$name.res $$name.err ; \ + printf 'RAPPER_TEST(%s\n\t"%s"\n\t%s\n\t%s\n)\n\n' \ + ntriples.$$name \ + "\$${RAPPER} -q -i ntriples -o ntriples file:\$${CMAKE_CURRENT_SOURCE_DIR}/$$test $(BASE_URI)$$test" \ + $$name.res \ + "\$${CMAKE_CURRENT_SOURCE_DIR}/$$name.out" >>CMakeTests.txt; \ + done; \ + set -e; exit $$result + +if MAINTAINER_MODE +check_bad_nt_deps = $(NT_BAD_TEST_FILES) +endif + +check-bad-nt: build-rapper $(check_bad_nt_deps) + @set +e; result=0; \ + $(RECHO) "Testing that bad N-Triples fails"; \ + for test in $(NT_BAD_TEST_FILES); do \ + name=`basename $$test .nt` ; \ + baseuri=$(BASE_URI)$$name.nt; \ + $(RECHO) $(RECHO_N) "Checking $$test $(RECHO_C)"; \ + $(RAPPER) -q -i ntriples -o ntriples file:$(srcdir)/$$test $$baseuri > $$name.res 2> $$name.err; \ + status=$$?; \ + if test $$status -eq 1 ; then \ + $(RECHO) "ok"; \ + elif test $$status -eq 2 ; then \ + $(RECHO) "FAILED - parsing succeeded with a warning"; \ + cat $$name.res; grep Warning $$name.err; result=1; \ + elif test $$status -eq 0 ; then \ + $(RECHO) "FAILED - parsing succeeded but should have failed"; \ + cat $$name.res; result=1; \ + else \ + $(RECHO) "FAILED - parsing failed with unknown status $$status"; \ + cat $$name.res; result=1; \ + fi; \ + rm -f $$name.res $$name.err ; \ + printf 'ADD_TEST(%s %s) # WILL_FAIL\n' \ + ntriples.$$name \ + "\$${RAPPER} -q -i ntriples -o ntriples file:\$${CMAKE_CURRENT_SOURCE_DIR}/$$test $$baseuri" >>CMakeTests.txt; \ + printf '\t%s\n' ntriples.$$name >>CMakeTmp.txt; \ + done; \ + (printf '\nSET_TESTS_PROPERTIES(\n'; \ + cat CMakeTmp.txt; \ + printf '\tPROPERTIES\n\tWILL_FAIL TRUE\n)\n\n') >>CMakeTests.txt; \ + rm -f CMakeTmp.txt; \ + set -e; exit $$result + +if MAINTAINER_MODE +check_nq_deps = $(NQ_TEST_FILES) +endif + +check-nq: build-rapper $(check_nq_deps) + @set +e; result=0; \ + $(RECHO) "Testing N-Quads"; \ + for test in $(NQ_TEST_FILES); do \ + name=`basename $$test .nq` ; \ + $(RECHO) $(RECHO_N) "Checking $$test $(RECHO_C)"; \ + $(RAPPER) -q -i nquads -o nquads file:$(srcdir)/$$test $(BASE_URI)$$test > $$name.res 2>/dev/null; \ + if cmp $(srcdir)/$$name.out $$name.res >/dev/null 2>&1; then \ + $(RECHO) "ok"; \ + else \ + $(RECHO) "FAILED"; \ + diff $(srcdir)/$$name.out $$name.res; result=1; \ + fi; \ + rm -f $$name.res ; \ + printf 'RAPPER_TEST(%s\n\t"%s"\n\t%s\n\t%s\n)\n\n' \ + ntriples.$$name \ + "\$${RAPPER} -q -i nquads -o nquads file:\$${CMAKE_CURRENT_SOURCE_DIR}/$$test $(BASE_URI)$$test" \ + $$name.res \ + "\$${CMAKE_CURRENT_SOURCE_DIR}/$$name.out" >>CMakeTests.txt; \ + done; \ + set -e; exit $$result + +print-nt-test-files: + @echo $(NT_TEST_FILES) | tr ' ' '\012' diff --git a/tests/ntriples/Makefile.in b/tests/ntriples/Makefile.in new file mode 100644 index 0000000..e69105e --- /dev/null +++ b/tests/ntriples/Makefile.in @@ -0,0 +1,646 @@ +# Makefile.in generated by automake 1.16.5 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2021 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# -*- Mode: Makefile -*- +# +# Makefile.am - automake file for Raptor N-Triples tests +# +# Copyright (C) 2000-2009, David Beckett http://www.dajobe.org/ +# Copyright (C) 2000-2004, University of Bristol, UK http://www.bristol.ac.uk/ +# +# This package is Free Software and part of Redland http://librdf.org/ +# +# It is licensed under the following three licenses as alternatives: +# 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version +# 2. GNU General Public License (GPL) V2 or any newer version +# 3. Apache License, V2.0 or any newer version +# +# You may not use this file except in compliance with at least one of +# the above three licenses. +# +# See LICENSE.html or LICENSE.txt at the top of this package for the +# complete terms and further detail along with the license texts for +# the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. +# +# +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = tests/ntriples +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/build/gtk-doc.m4 \ + $(top_srcdir)/build/libtool.m4 \ + $(top_srcdir)/build/ltoptions.m4 \ + $(top_srcdir)/build/ltsugar.m4 \ + $(top_srcdir)/build/ltversion.m4 \ + $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/pkg.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/src/raptor_config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__DIST_COMMON = $(srcdir)/Makefile.in +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BISON = @BISON@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPPFLAGS = @CPPFLAGS@ +CSCOPE = @CSCOPE@ +CTAGS = @CTAGS@ +CURL_CONFIG = @CURL_CONFIG@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ETAGS = @ETAGS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FILECMD = @FILECMD@ +GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ +HTML_DIR = @HTML_DIR@ +ICU_CFLAGS = @ICU_CFLAGS@ +ICU_LIBS = @ICU_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +JING = @JING@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LEX = @LEX@ +LEXLIB = @LEXLIB@ +LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ +LIBCURL_CFLAGS = @LIBCURL_CFLAGS@ +LIBCURL_LIBS = @LIBCURL_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MEM = @MEM@ +MEM_LIBS = @MEM_LIBS@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PKG_CONFIG_REQUIRES = @PKG_CONFIG_REQUIRES@ +RANLIB = @RANLIB@ +RAPTOR_LDFLAGS = @RAPTOR_LDFLAGS@ +RAPTOR_LIBTOOLLIBS = @RAPTOR_LIBTOOLLIBS@ +RAPTOR_LIBTOOL_VERSION = @RAPTOR_LIBTOOL_VERSION@ +RAPTOR_PARSERS = @RAPTOR_PARSERS@ +RAPTOR_SERIALIZERS = @RAPTOR_SERIALIZERS@ +RAPTOR_VERSION = @RAPTOR_VERSION@ +RAPTOR_VERSION_DECIMAL = @RAPTOR_VERSION_DECIMAL@ +RAPTOR_VERSION_MAJOR = @RAPTOR_VERSION_MAJOR@ +RAPTOR_VERSION_MINOR = @RAPTOR_VERSION_MINOR@ +RAPTOR_VERSION_RELEASE = @RAPTOR_VERSION_RELEASE@ +RAPTOR_WWW_LIBRARY = @RAPTOR_WWW_LIBRARY@ +RAPTOR_XML_PARSER = @RAPTOR_XML_PARSER@ +RECHO = @RECHO@ +RECHO_C = @RECHO_C@ +RECHO_N = @RECHO_N@ +RPM_RELEASE = @RPM_RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TAR = @TAR@ +VERSION = @VERSION@ +XML_CONFIG = @XML_CONFIG@ +XSLT_CFLAGS = @XSLT_CFLAGS@ +XSLT_CONFIG = @XSLT_CONFIG@ +XSLT_LIBS = @XSLT_LIBS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +NT_TEST_FILES = test.nt \ +nt2013-ex1.nt \ +nt2013-ex2.nt \ +nt2013-ex3.nt \ +nt2013-ex4.nt \ +bug-562.nt \ +bug-574.nt \ +bug-577.nt + +NT_OUT_FILES = test.out \ +nt2013-ex1.out \ +nt2013-ex2.out \ +nt2013-ex3.out \ +nt2013-ex4.out \ +bug-562.out \ +bug-574.out \ +bug-577.out + +NT_BAD_TEST_FILES = bad-00.nt bad-02.nt bad-03.nt bad-04.nt \ +bad-05.nt bad-06.nt bad-07.nt + +NQ_TEST_FILES = testnq-1.nq testnq-optional-context.nq bug-481.nq +NQ_OUT_FILES = testnq-1.out testnq-optional-context.out bug-481.out + +# Used to make N-triples output consistent +BASE_URI = http://librdf.org/raptor/tests/ +EXTRA_DIST = \ + CMakeLists.txt \ + $(NT_TEST_FILES) \ + $(NT_OUT_FILES) \ + $(NT_BAD_TEST_FILES) \ + $(NQ_TEST_FILES) \ + $(NQ_OUT_FILES) + +CLEANFILES = CMakeTests.txt CMakeTmp.txt +RAPPER = $(top_builddir)/utils/rapper +@MAINTAINER_MODE_TRUE@check_nt_deps = $(NT_TEST_FILES) +@MAINTAINER_MODE_TRUE@check_bad_nt_deps = $(NT_BAD_TEST_FILES) +@MAINTAINER_MODE_TRUE@check_nq_deps = $(NQ_TEST_FILES) +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/ntriples/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu tests/ntriples/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: all all-am check check-am check-local clean clean-generic \ + clean-libtool cscopelist-am ctags-am distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am + +.PRECIOUS: Makefile + + +build-rapper: + @(cd $(top_builddir)/utils ; $(MAKE) rapper$(EXEEXT)) + +check-local: build-rapper \ +check-nt check-bad-nt check-nq + +check-nt: build-rapper $(check_nt_deps) + @set +e; result=0; \ + $(RECHO) "Testing N-Triples"; \ + for test in $(NT_TEST_FILES); do \ + name=`basename $$test .nt` ; \ + $(RECHO) $(RECHO_N) "Checking $$test $(RECHO_C)"; \ + $(RAPPER) -q -i ntriples -o ntriples file:$(srcdir)/$$test $(BASE_URI)$$test > $$name.res 2> $$name.err; \ + status=$$?; \ + if test $$status -ne 0 ; then \ + $(RECHO) "FAILED"; \ + cat $$name.err; \ + elif cmp $(srcdir)/$$name.out $$name.res >/dev/null 2>&1; then \ + $(RECHO) "ok"; \ + else \ + $(RECHO) "FAILED"; \ + diff $(srcdir)/$$name.out $$name.res; result=1; \ + fi; \ + rm -f $$name.res $$name.err ; \ + printf 'RAPPER_TEST(%s\n\t"%s"\n\t%s\n\t%s\n)\n\n' \ + ntriples.$$name \ + "\$${RAPPER} -q -i ntriples -o ntriples file:\$${CMAKE_CURRENT_SOURCE_DIR}/$$test $(BASE_URI)$$test" \ + $$name.res \ + "\$${CMAKE_CURRENT_SOURCE_DIR}/$$name.out" >>CMakeTests.txt; \ + done; \ + set -e; exit $$result + +check-bad-nt: build-rapper $(check_bad_nt_deps) + @set +e; result=0; \ + $(RECHO) "Testing that bad N-Triples fails"; \ + for test in $(NT_BAD_TEST_FILES); do \ + name=`basename $$test .nt` ; \ + baseuri=$(BASE_URI)$$name.nt; \ + $(RECHO) $(RECHO_N) "Checking $$test $(RECHO_C)"; \ + $(RAPPER) -q -i ntriples -o ntriples file:$(srcdir)/$$test $$baseuri > $$name.res 2> $$name.err; \ + status=$$?; \ + if test $$status -eq 1 ; then \ + $(RECHO) "ok"; \ + elif test $$status -eq 2 ; then \ + $(RECHO) "FAILED - parsing succeeded with a warning"; \ + cat $$name.res; grep Warning $$name.err; result=1; \ + elif test $$status -eq 0 ; then \ + $(RECHO) "FAILED - parsing succeeded but should have failed"; \ + cat $$name.res; result=1; \ + else \ + $(RECHO) "FAILED - parsing failed with unknown status $$status"; \ + cat $$name.res; result=1; \ + fi; \ + rm -f $$name.res $$name.err ; \ + printf 'ADD_TEST(%s %s) # WILL_FAIL\n' \ + ntriples.$$name \ + "\$${RAPPER} -q -i ntriples -o ntriples file:\$${CMAKE_CURRENT_SOURCE_DIR}/$$test $$baseuri" >>CMakeTests.txt; \ + printf '\t%s\n' ntriples.$$name >>CMakeTmp.txt; \ + done; \ + (printf '\nSET_TESTS_PROPERTIES(\n'; \ + cat CMakeTmp.txt; \ + printf '\tPROPERTIES\n\tWILL_FAIL TRUE\n)\n\n') >>CMakeTests.txt; \ + rm -f CMakeTmp.txt; \ + set -e; exit $$result + +check-nq: build-rapper $(check_nq_deps) + @set +e; result=0; \ + $(RECHO) "Testing N-Quads"; \ + for test in $(NQ_TEST_FILES); do \ + name=`basename $$test .nq` ; \ + $(RECHO) $(RECHO_N) "Checking $$test $(RECHO_C)"; \ + $(RAPPER) -q -i nquads -o nquads file:$(srcdir)/$$test $(BASE_URI)$$test > $$name.res 2>/dev/null; \ + if cmp $(srcdir)/$$name.out $$name.res >/dev/null 2>&1; then \ + $(RECHO) "ok"; \ + else \ + $(RECHO) "FAILED"; \ + diff $(srcdir)/$$name.out $$name.res; result=1; \ + fi; \ + rm -f $$name.res ; \ + printf 'RAPPER_TEST(%s\n\t"%s"\n\t%s\n\t%s\n)\n\n' \ + ntriples.$$name \ + "\$${RAPPER} -q -i nquads -o nquads file:\$${CMAKE_CURRENT_SOURCE_DIR}/$$test $(BASE_URI)$$test" \ + $$name.res \ + "\$${CMAKE_CURRENT_SOURCE_DIR}/$$name.out" >>CMakeTests.txt; \ + done; \ + set -e; exit $$result + +print-nt-test-files: + @echo $(NT_TEST_FILES) | tr ' ' '\012' + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/tests/ntriples/bad-00.nt b/tests/ntriples/bad-00.nt new file mode 100644 index 0000000..9de91e2 --- /dev/null +++ b/tests/ntriples/bad-00.nt @@ -0,0 +1 @@ +_: <http://foo> "blah" . diff --git a/tests/ntriples/bad-02.nt b/tests/ntriples/bad-02.nt new file mode 100644 index 0000000..64c1dfb --- /dev/null +++ b/tests/ntriples/bad-02.nt @@ -0,0 +1 @@ +_:a <http://foo "blah" . diff --git a/tests/ntriples/bad-03.nt b/tests/ntriples/bad-03.nt new file mode 100644 index 0000000..71f6db5 --- /dev/null +++ b/tests/ntriples/bad-03.nt @@ -0,0 +1 @@ +_:a <http://foo> "blah . diff --git a/tests/ntriples/bad-04.nt b/tests/ntriples/bad-04.nt new file mode 100644 index 0000000..64c1dfb --- /dev/null +++ b/tests/ntriples/bad-04.nt @@ -0,0 +1 @@ +_:a <http://foo "blah" . diff --git a/tests/ntriples/bad-05.nt b/tests/ntriples/bad-05.nt new file mode 100644 index 0000000..6000036 --- /dev/null +++ b/tests/ntriples/bad-05.nt @@ -0,0 +1 @@ +<http://example.org/resource19> <http://example.org/property> "\U00110000" . diff --git a/tests/ntriples/bad-06.nt b/tests/ntriples/bad-06.nt new file mode 100644 index 0000000..ac35f18 --- /dev/null +++ b/tests/ntriples/bad-06.nt @@ -0,0 +1 @@ +<http://example.org/res1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_abc> <http://example.org/res2> . diff --git a/tests/ntriples/bad-07.nt b/tests/ntriples/bad-07.nt new file mode 100644 index 0000000..732f69c --- /dev/null +++ b/tests/ntriples/bad-07.nt @@ -0,0 +1 @@ +<http://example.org/resource34> <http://example.org/property> xml"<foo>bar</foo>" . diff --git a/tests/ntriples/bug-481.nq b/tests/ntriples/bug-481.nq new file mode 100644 index 0000000..be20395 --- /dev/null +++ b/tests/ntriples/bug-481.nq @@ -0,0 +1 @@ +_:httpx3Ax2Fx2Fapix2Ehi5x2Ecomx2Frestx2Fprofilex2Ffoafx2F504083723xxbnode229 <http://xmlns.com/foaf/0.1/nick> "\u0102\uD838\uDF06\u0941\u04EANONGJEE\u04EA\u0941\uD838\uDF06\u0102" <http://api.hi5.com/rest/profile/foaf/504083723> . diff --git a/tests/ntriples/bug-481.out b/tests/ntriples/bug-481.out new file mode 100644 index 0000000..be20395 --- /dev/null +++ b/tests/ntriples/bug-481.out @@ -0,0 +1 @@ +_:httpx3Ax2Fx2Fapix2Ehi5x2Ecomx2Frestx2Fprofilex2Ffoafx2F504083723xxbnode229 <http://xmlns.com/foaf/0.1/nick> "\u0102\uD838\uDF06\u0941\u04EANONGJEE\u04EA\u0941\uD838\uDF06\u0102" <http://api.hi5.com/rest/profile/foaf/504083723> . diff --git a/tests/ntriples/bug-562.nt b/tests/ntriples/bug-562.nt new file mode 100644 index 0000000..422efeb --- /dev/null +++ b/tests/ntriples/bug-562.nt @@ -0,0 +1,2 @@ +_:b <http://eg.org/p> <http://eg.org/Her_Majesty's_Government> . +_:b <http://eg.org/p> _:c . diff --git a/tests/ntriples/bug-562.out b/tests/ntriples/bug-562.out new file mode 100644 index 0000000..422efeb --- /dev/null +++ b/tests/ntriples/bug-562.out @@ -0,0 +1,2 @@ +_:b <http://eg.org/p> <http://eg.org/Her_Majesty's_Government> . +_:b <http://eg.org/p> _:c . diff --git a/tests/ntriples/bug-574.nt b/tests/ntriples/bug-574.nt new file mode 100644 index 0000000..9f20497 --- /dev/null +++ b/tests/ntriples/bug-574.nt @@ -0,0 +1 @@ +<http://example.org/resource> <http://www.w3.org/2000/01/rdf-schema#label> "SOMETHING"@zh_pinyin . diff --git a/tests/ntriples/bug-574.out b/tests/ntriples/bug-574.out new file mode 100644 index 0000000..09aa702 --- /dev/null +++ b/tests/ntriples/bug-574.out @@ -0,0 +1 @@ +<http://example.org/resource> <http://www.w3.org/2000/01/rdf-schema#label> "SOMETHING"@zh-pinyin . diff --git a/tests/ntriples/bug-577.nt b/tests/ntriples/bug-577.nt new file mode 100644 index 0000000..2e5495e --- /dev/null +++ b/tests/ntriples/bug-577.nt @@ -0,0 +1,38 @@ +<http://example.org/test> <http://example.org/escape-\u0001> "escape for 1" . +<http://example.org/test> <http://example.org/escape-\u0002> "escape for 2" . +<http://example.org/test> <http://example.org/escape-\u0003> "escape for 3" . +<http://example.org/test> <http://example.org/escape-\u0004> "escape for 4" . +<http://example.org/test> <http://example.org/escape-\u0005> "escape for 5" . +<http://example.org/test> <http://example.org/escape-\u0006> "escape for 6" . +<http://example.org/test> <http://example.org/escape-\u0007> "escape for 7" . +<http://example.org/test> <http://example.org/escape-\u0008> "escape for 8" . +<http://example.org/test> <http://example.org/escape-\u0009> "escape for 9" . +<http://example.org/test> <http://example.org/escape-\u000A> "escape for 10" . +<http://example.org/test> <http://example.org/escape-\u000B> "escape for 11" . +<http://example.org/test> <http://example.org/escape-\u000C> "escape for 12" . +<http://example.org/test> <http://example.org/escape-\u000D> "escape for 13" . +<http://example.org/test> <http://example.org/escape-\u000E> "escape for 14" . +<http://example.org/test> <http://example.org/escape-\u000F> "escape for 15" . +<http://example.org/test> <http://example.org/escape-\u0010> "escape for 16" . +<http://example.org/test> <http://example.org/escape-\u0011> "escape for 17" . +<http://example.org/test> <http://example.org/escape-\u0012> "escape for 18" . +<http://example.org/test> <http://example.org/escape-\u0013> "escape for 19" . +<http://example.org/test> <http://example.org/escape-\u0014> "escape for 20" . +<http://example.org/test> <http://example.org/escape-\u0015> "escape for 21" . +<http://example.org/test> <http://example.org/escape-\u0016> "escape for 22" . +<http://example.org/test> <http://example.org/escape-\u0017> "escape for 23" . +<http://example.org/test> <http://example.org/escape-\u0018> "escape for 24" . +<http://example.org/test> <http://example.org/escape-\u0019> "escape for 25" . +<http://example.org/test> <http://example.org/escape-\u001A> "escape for 26" . +<http://example.org/test> <http://example.org/escape-\u001B> "escape for 27" . +<http://example.org/test> <http://example.org/escape-\u001C> "escape for 28" . +<http://example.org/test> <http://example.org/escape-\u001D> "escape for 29" . +<http://example.org/test> <http://example.org/escape-\u001E> "escape for 30" . +<http://example.org/test> <http://example.org/escape-\u001F> "escape for 31" . + +<http://example.org/test> <http://example.org/escape-\u007B> "escape for 123" . +<http://example.org/test> <http://example.org/escape-\u007D> "escape for 125" . +<http://example.org/test> <http://example.org/escape-\u007C> "escape for 124" . +<http://example.org/test> <http://example.org/escape-\u005E> "escape for 94" . +<http://example.org/test> <http://example.org/escape-\u0060> "escape for 96" . +<http://example.org/test> <http://example.org/escape-\u005C> "escape for 92" . diff --git a/tests/ntriples/bug-577.out b/tests/ntriples/bug-577.out new file mode 100644 index 0000000..5789e3b --- /dev/null +++ b/tests/ntriples/bug-577.out @@ -0,0 +1,37 @@ +<http://example.org/test> <http://example.org/escape-\u0001> "escape for 1" . +<http://example.org/test> <http://example.org/escape-\u0002> "escape for 2" . +<http://example.org/test> <http://example.org/escape-\u0003> "escape for 3" . +<http://example.org/test> <http://example.org/escape-\u0004> "escape for 4" . +<http://example.org/test> <http://example.org/escape-\u0005> "escape for 5" . +<http://example.org/test> <http://example.org/escape-\u0006> "escape for 6" . +<http://example.org/test> <http://example.org/escape-\u0007> "escape for 7" . +<http://example.org/test> <http://example.org/escape-\u0008> "escape for 8" . +<http://example.org/test> <http://example.org/escape-\u0009> "escape for 9" . +<http://example.org/test> <http://example.org/escape-\u000A> "escape for 10" . +<http://example.org/test> <http://example.org/escape-\u000B> "escape for 11" . +<http://example.org/test> <http://example.org/escape-\u000C> "escape for 12" . +<http://example.org/test> <http://example.org/escape-\u000D> "escape for 13" . +<http://example.org/test> <http://example.org/escape-\u000E> "escape for 14" . +<http://example.org/test> <http://example.org/escape-\u000F> "escape for 15" . +<http://example.org/test> <http://example.org/escape-\u0010> "escape for 16" . +<http://example.org/test> <http://example.org/escape-\u0011> "escape for 17" . +<http://example.org/test> <http://example.org/escape-\u0012> "escape for 18" . +<http://example.org/test> <http://example.org/escape-\u0013> "escape for 19" . +<http://example.org/test> <http://example.org/escape-\u0014> "escape for 20" . +<http://example.org/test> <http://example.org/escape-\u0015> "escape for 21" . +<http://example.org/test> <http://example.org/escape-\u0016> "escape for 22" . +<http://example.org/test> <http://example.org/escape-\u0017> "escape for 23" . +<http://example.org/test> <http://example.org/escape-\u0018> "escape for 24" . +<http://example.org/test> <http://example.org/escape-\u0019> "escape for 25" . +<http://example.org/test> <http://example.org/escape-\u001A> "escape for 26" . +<http://example.org/test> <http://example.org/escape-\u001B> "escape for 27" . +<http://example.org/test> <http://example.org/escape-\u001C> "escape for 28" . +<http://example.org/test> <http://example.org/escape-\u001D> "escape for 29" . +<http://example.org/test> <http://example.org/escape-\u001E> "escape for 30" . +<http://example.org/test> <http://example.org/escape-\u001F> "escape for 31" . +<http://example.org/test> <http://example.org/escape-\u007B> "escape for 123" . +<http://example.org/test> <http://example.org/escape-\u007D> "escape for 125" . +<http://example.org/test> <http://example.org/escape-\u007C> "escape for 124" . +<http://example.org/test> <http://example.org/escape-\u005E> "escape for 94" . +<http://example.org/test> <http://example.org/escape-\u0060> "escape for 96" . +<http://example.org/test> <http://example.org/escape-\\> "escape for 92" . diff --git a/tests/ntriples/nt2013-ex1.nt b/tests/ntriples/nt2013-ex1.nt new file mode 100644 index 0000000..9b004b4 --- /dev/null +++ b/tests/ntriples/nt2013-ex1.nt @@ -0,0 +1,4 @@ +<http://one.example/subject1> <http://one.example/predicate1> <http://one.example/object1> . # comments here +# or on a line by themselves +_:subject1 <http://an.example/predicate1> "object1" . +_:subject2 <http://an.example/predicate2> "object2" . diff --git a/tests/ntriples/nt2013-ex1.out b/tests/ntriples/nt2013-ex1.out new file mode 100644 index 0000000..62d85f9 --- /dev/null +++ b/tests/ntriples/nt2013-ex1.out @@ -0,0 +1,3 @@ +<http://one.example/subject1> <http://one.example/predicate1> <http://one.example/object1> . +_:subject1 <http://an.example/predicate1> "object1" . +_:subject2 <http://an.example/predicate2> "object2" . diff --git a/tests/ntriples/nt2013-ex2.nt b/tests/ntriples/nt2013-ex2.nt new file mode 100644 index 0000000..808d8df --- /dev/null +++ b/tests/ntriples/nt2013-ex2.nt @@ -0,0 +1 @@ +<http://example.org/#spiderman> <http://www.perceive.net/schemas/relationship/enemyOf> <http://example.org/#green-goblin> . diff --git a/tests/ntriples/nt2013-ex2.out b/tests/ntriples/nt2013-ex2.out new file mode 100644 index 0000000..808d8df --- /dev/null +++ b/tests/ntriples/nt2013-ex2.out @@ -0,0 +1 @@ +<http://example.org/#spiderman> <http://www.perceive.net/schemas/relationship/enemyOf> <http://example.org/#green-goblin> . diff --git a/tests/ntriples/nt2013-ex3.nt b/tests/ntriples/nt2013-ex3.nt new file mode 100644 index 0000000..f53611d --- /dev/null +++ b/tests/ntriples/nt2013-ex3.nt @@ -0,0 +1,8 @@ +<http://example.org/show/218> <http://www.w3.org/2000/01/rdf-schema#label> "That Seventies Show"^^<http://www.w3.org/2001/XMLSchema#string> . # literal with XML Schema string datatype +<http://example.org/show/218> <http://www.w3.org/2000/01/rdf-schema#label> "That Seventies Show" . # same as above +<http://example.org/show/218> <http://example.org/show/localName> "That Seventies Show"@en . # literal with a language tag +<http://example.org/show/218> <http://example.org/show/localName> "Cette Série des Années Septante"@fr-be . # literal outside of ASCII range with a region subtag +<http://example.org/#spiderman> <http://example.org/text> "This is a multi-line\nliteral with many quotes (\"\"\"\"\")\nand two apostrophes ('')." . +<http://en.wikipedia.org/wiki/Helium> <http://example.org/elements/atomicNumber> "2"^^<http://www.w3.org/2001/XMLSchema#integer> . # xsd:integer +<http://en.wikipedia.org/wiki/Helium> <http://example.org/elements/specificGravity> "1.663E-4"^^<http://www.w3.org/2001/XMLSchema#double> . # xsd:double + diff --git a/tests/ntriples/nt2013-ex3.out b/tests/ntriples/nt2013-ex3.out new file mode 100644 index 0000000..c057085 --- /dev/null +++ b/tests/ntriples/nt2013-ex3.out @@ -0,0 +1,7 @@ +<http://example.org/show/218> <http://www.w3.org/2000/01/rdf-schema#label> "That Seventies Show"^^<http://www.w3.org/2001/XMLSchema#string> . +<http://example.org/show/218> <http://www.w3.org/2000/01/rdf-schema#label> "That Seventies Show" . +<http://example.org/show/218> <http://example.org/show/localName> "That Seventies Show"@en . +<http://example.org/show/218> <http://example.org/show/localName> "Cette S\u00E9rie des Ann\u00E9es Septante"@fr-be . +<http://example.org/#spiderman> <http://example.org/text> "This is a multi-line\nliteral with many quotes (\"\"\"\"\")\nand two apostrophes ('')." . +<http://en.wikipedia.org/wiki/Helium> <http://example.org/elements/atomicNumber> "2"^^<http://www.w3.org/2001/XMLSchema#integer> . +<http://en.wikipedia.org/wiki/Helium> <http://example.org/elements/specificGravity> "1.663E-4"^^<http://www.w3.org/2001/XMLSchema#double> . diff --git a/tests/ntriples/nt2013-ex4.nt b/tests/ntriples/nt2013-ex4.nt new file mode 100644 index 0000000..4dcbf20 --- /dev/null +++ b/tests/ntriples/nt2013-ex4.nt @@ -0,0 +1,2 @@ +_:alice <http://xmlns.com/foaf/0.1/knows> _:bob . +_:bob <http://xmlns.com/foaf/0.1/knows> _:alice . diff --git a/tests/ntriples/nt2013-ex4.out b/tests/ntriples/nt2013-ex4.out new file mode 100644 index 0000000..4dcbf20 --- /dev/null +++ b/tests/ntriples/nt2013-ex4.out @@ -0,0 +1,2 @@ +_:alice <http://xmlns.com/foaf/0.1/knows> _:bob . +_:bob <http://xmlns.com/foaf/0.1/knows> _:alice . diff --git a/tests/ntriples/test.nt b/tests/ntriples/test.nt new file mode 100644 index 0000000..e74f1ec --- /dev/null +++ b/tests/ntriples/test.nt @@ -0,0 +1,66 @@ +# +# N-Triples Test Cases +# Dave Beckett - http://purl.org/net/dajobe/ +# +# $Id$ +# +# comment lines + # comment line after whitespace +# empty blank line, then one with spaces and tabs + + +<http://example.org/resource1> <http://example.org/property> <http://example.org/resource2> . +_:anon <http://example.org/property> <http://example.org/resource2> . +<http://example.org/resource2> <http://example.org/property> _:anon . +# spaces and tabs throughout: + <http://example.org/resource3> <http://example.org/property> <http://example.org/resource2> . + +# line ending with CR NL (ASCII 13, ASCII 10) +<http://example.org/resource4> <http://example.org/property> <http://example.org/resource2> .
+ +# 2 statement lines separated by single CR (ASCII 10) +<http://example.org/resource5> <http://example.org/property> <http://example.org/resource2> .
<http://example.org/resource6> <http://example.org/property> <http://example.org/resource2> . + + +# All literal escapes +<http://example.org/resource7> <http://example.org/property> "simple literal" . +<http://example.org/resource8> <http://example.org/property> "backslash:\\" . +<http://example.org/resource9> <http://example.org/property> "dquote:\"" . +<http://example.org/resource10> <http://example.org/property> "newline:\n" . +<http://example.org/resource11> <http://example.org/property> "return\r" . +<http://example.org/resource12> <http://example.org/property> "tab:\t" . + +# Space is optional before final . +<http://example.org/resource13> <http://example.org/property> <http://example.org/resource2>. +<http://example.org/resource14> <http://example.org/property> "x". +# space is required after bnode ID before final . +<http://example.org/resource15> <http://example.org/property> _:anon . + +# \u and \U escapes +# latin small letter e with acute symbol \u00E9 - 3 UTF-8 bytes #xC3 #A9 +<http://example.org/resource16> <http://example.org/property> "\u00E9" . +# Euro symbol \u20ac - 3 UTF-8 bytes #xE2 #x82 #xAC +<http://example.org/resource17> <http://example.org/property> "\u20AC" . +# ? symbol \U0010FFFF - 4 UTF-8 bytes #xF4 #x8F #xBF #xBF +<http://example.org/resource18> <http://example.org/property> "\U0010FFFF" . + +# extended literal syntax - parseType="Literal" (XML) +<http://example.org/resource21> <http://example.org/property> ""^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource22> <http://example.org/property> " "^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource23> <http://example.org/property> "x"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource23> <http://example.org/property> "\""^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource24> <http://example.org/property> "<a></a>"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource25> <http://example.org/property> "a <b></b>"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource26> <http://example.org/property> "a <b></b> c"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource26> <http://example.org/property> "a\n<b></b>\nc"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource27> <http://example.org/property> "chat"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +# resource28 removed 2003-08-03 +# resource29 removed 2003-08-03 + +# literals with languages +<http://example.org/resource30> <http://example.org/property> "chat"@fr . +<http://example.org/resource31> <http://example.org/property> "chat"@en . + +# Datatype Literals +<http://example.org/resource32> <http://example.org/property> "abc"^^<http://example.org/datatype1> . +# resource33 removed 2003-08-03 diff --git a/tests/ntriples/test.out b/tests/ntriples/test.out new file mode 100644 index 0000000..266ee3f --- /dev/null +++ b/tests/ntriples/test.out @@ -0,0 +1,31 @@ +<http://example.org/resource1> <http://example.org/property> <http://example.org/resource2> . +_:anon <http://example.org/property> <http://example.org/resource2> . +<http://example.org/resource2> <http://example.org/property> _:anon . +<http://example.org/resource3> <http://example.org/property> <http://example.org/resource2> . +<http://example.org/resource4> <http://example.org/property> <http://example.org/resource2> . +<http://example.org/resource5> <http://example.org/property> <http://example.org/resource2> . +<http://example.org/resource6> <http://example.org/property> <http://example.org/resource2> . +<http://example.org/resource7> <http://example.org/property> "simple literal" . +<http://example.org/resource8> <http://example.org/property> "backslash:\\" . +<http://example.org/resource9> <http://example.org/property> "dquote:\"" . +<http://example.org/resource10> <http://example.org/property> "newline:\n" . +<http://example.org/resource11> <http://example.org/property> "return\r" . +<http://example.org/resource12> <http://example.org/property> "tab:\t" . +<http://example.org/resource13> <http://example.org/property> <http://example.org/resource2> . +<http://example.org/resource14> <http://example.org/property> "x" . +<http://example.org/resource15> <http://example.org/property> _:anon . +<http://example.org/resource16> <http://example.org/property> "\u00E9" . +<http://example.org/resource17> <http://example.org/property> "\u20AC" . +<http://example.org/resource18> <http://example.org/property> "\U0010FFFF" . +<http://example.org/resource21> <http://example.org/property> ""^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource22> <http://example.org/property> " "^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource23> <http://example.org/property> "x"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource23> <http://example.org/property> "\""^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource24> <http://example.org/property> "<a></a>"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource25> <http://example.org/property> "a <b></b>"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource26> <http://example.org/property> "a <b></b> c"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource26> <http://example.org/property> "a\n<b></b>\nc"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource27> <http://example.org/property> "chat"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> . +<http://example.org/resource30> <http://example.org/property> "chat"@fr . +<http://example.org/resource31> <http://example.org/property> "chat"@en . +<http://example.org/resource32> <http://example.org/property> "abc"^^<http://example.org/datatype1> . diff --git a/tests/ntriples/testnq-1.nq b/tests/ntriples/testnq-1.nq new file mode 100644 index 0000000..43a0400 --- /dev/null +++ b/tests/ntriples/testnq-1.nq @@ -0,0 +1,11 @@ +<http://example.org/alice/foaf.rdf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.org/alice/foaf.rdf> . +<http://example.org/alice/foaf.rdf#me> <http://xmlns.com/foaf/0.1/name> "Alice" <http://example.org/alice/foaf.rdf> . +<http://example.org/alice/foaf.rdf#me> <http://xmlns.com/foaf/0.1/knows> _:bnode1 <http://example.org/alice/foaf.rdf> . +_:bnode1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.org/alice/foaf.rdf> . +_:bnode1 <http://xmlns.com/foaf/0.1/name> "Bob" <http://example.org/alice/foaf.rdf> . +_:bnode1 <http://xmlns.com/foaf/0.1/homepage> <http://example.org/bob/> <http://example.org/alice/foaf.rdf> . +_:bnode1 <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://example.org/bob/foaf.rdf> <http://example.org/alice/foaf.rdf> . + +<http://example.org/bob/foaf.rdf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.org/bob/foaf.rdf> . +<http://example.org/bob/foaf.rdf#me> <http://xmlns.com/foaf/0.1/name> "Bob" <http://example.org/bob/foaf.rdf> . +<http://example.org/bob/foaf.rdf#me> <http://xmlns.com/foaf/0.1/homepage> <http://example.org/bob/> <http://example.org/bob/foaf.rdf> . diff --git a/tests/ntriples/testnq-1.out b/tests/ntriples/testnq-1.out new file mode 100644 index 0000000..42b74d1 --- /dev/null +++ b/tests/ntriples/testnq-1.out @@ -0,0 +1,10 @@ +<http://example.org/alice/foaf.rdf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.org/alice/foaf.rdf> . +<http://example.org/alice/foaf.rdf#me> <http://xmlns.com/foaf/0.1/name> "Alice" <http://example.org/alice/foaf.rdf> . +<http://example.org/alice/foaf.rdf#me> <http://xmlns.com/foaf/0.1/knows> _:bnode1 <http://example.org/alice/foaf.rdf> . +_:bnode1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.org/alice/foaf.rdf> . +_:bnode1 <http://xmlns.com/foaf/0.1/name> "Bob" <http://example.org/alice/foaf.rdf> . +_:bnode1 <http://xmlns.com/foaf/0.1/homepage> <http://example.org/bob/> <http://example.org/alice/foaf.rdf> . +_:bnode1 <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://example.org/bob/foaf.rdf> <http://example.org/alice/foaf.rdf> . +<http://example.org/bob/foaf.rdf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.org/bob/foaf.rdf> . +<http://example.org/bob/foaf.rdf#me> <http://xmlns.com/foaf/0.1/name> "Bob" <http://example.org/bob/foaf.rdf> . +<http://example.org/bob/foaf.rdf#me> <http://xmlns.com/foaf/0.1/homepage> <http://example.org/bob/> <http://example.org/bob/foaf.rdf> . diff --git a/tests/ntriples/testnq-optional-context.nq b/tests/ntriples/testnq-optional-context.nq new file mode 100644 index 0000000..7c7bf96 --- /dev/null +++ b/tests/ntriples/testnq-optional-context.nq @@ -0,0 +1,2 @@ +<http://example.org/a> <http://example.org/b> <http://example.org/c> . +<http://example.org/d> <http://example.org/e> <http://example.org/f> <http://example.org/g> . diff --git a/tests/ntriples/testnq-optional-context.out b/tests/ntriples/testnq-optional-context.out new file mode 100644 index 0000000..7c7bf96 --- /dev/null +++ b/tests/ntriples/testnq-optional-context.out @@ -0,0 +1,2 @@ +<http://example.org/a> <http://example.org/b> <http://example.org/c> . +<http://example.org/d> <http://example.org/e> <http://example.org/f> <http://example.org/g> . |