Mike Beckerle created DAFFODIL-2217: ---------------------------------------
Summary: trailingEmptyStrict not being strict in this case Key: DAFFODIL-2217 URL: https://issues.apache.org/jira/browse/DAFFODIL-2217 Project: Daffodil Issue Type: Bug Components: Back End Affects Versions: 2.4.0 Reporter: Mike Beckerle Fix For: 2.5.0 This TDML test parse-test-6 should cause an error, but does not. The trailingEmptyStrict seems not to be checking in this case. {code:java} <?xml version="1.0" encoding="UTF-8"?> <tdml:testSuite suiteName="Bug Report test-6.dfdl.xsd" description="Bug in everything-you-ever-wanted-to-know-about/separator/test-6.dfdl.xsd" xmlns:tdml="http://www.ibm.com/xmlns/dfdl/testData" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:dfdl="http://www.ogf.org/dfdl/dfdl-1.0/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:gpf="http://www.ibm.com/dfdl/GeneralPurposeFormat" xmlns:daf="urn:ogf:dfdl:2013:imp:daffodil.apache.org:2018:ext" xmlns:ex="http://example.com" xsi:schemaLocation="http://www.ibm.com/xmlns/dfdl/testData tdml.xsd" defaultRoundTrip="none"> <!-- This example TDML file is for a self-contained bug report. It shows the definition of an inline schema and parse test and unparse test that use that schema. --> <!-- A DFDL schema is defined inside the tdml:defineSchema element. The contents are similar to a normal DFDL schema, allowing for imports, defining a global format via dfdl:defineFormat and dfdl:format, and defining schema xs:elements/groups/types/etc. --> <tdml:defineSchema name="test-6-Schema" elementFormDefault="unqualified"> <dfdl:defineFormat name="default-dfdl-properties"> <dfdl:format alignment="1" alignmentUnits="bytes" binaryFloatRep="ieee" binaryNumberRep="binary" bitOrder="mostSignificantBitFirst" byteOrder="bigEndian" calendarPatternKind="implicit" choiceLengthKind="implicit" documentFinalTerminatorCanBeMissing="yes" emptyValueDelimiterPolicy="none" encoding="ISO-8859-1" encodingErrorPolicy="error" escapeSchemeRef="" fillByte="f" floating="no" ignoreCase="no" initiator="" initiatedContent="no" leadingSkip="0" lengthKind="delimited" lengthUnits="characters" nilKind="literalValue" nilValueDelimiterPolicy="none" occursCountKind="implicit" outputNewLine="%CR;%LF;" representation="text" separator="" separatorPosition="infix" separatorSuppressionPolicy="anyEmpty" sequenceKind="ordered" terminator="" textBidi="no" textNumberCheckPolicy="strict" textNumberPattern="#,##0.###;-#,##0.###" textNumberRep="standard" textNumberRounding="explicit" textNumberRoundingIncrement="0" textNumberRoundingMode="roundUnnecessary" textOutputMinLength="0" textPadKind="none" textStandardBase="10" textStandardDecimalSeparator="." textStandardExponentRep="E" textStandardInfinityRep="Inf" textStandardNaNRep="NaN" textStandardZeroRep="0" textStandardGroupingSeparator="," textTrimKind="none" trailingSkip="0" truncateSpecifiedLengthString="no" utf16Width="fixed" /> </dfdl:defineFormat> <dfdl:format ref="ex:default-dfdl-properties" /> <xs:element name="input"> <xs:complexType> <xs:sequence dfdl:sequenceKind="ordered" dfdl:separator="%NL;" dfdl:separatorPosition="infix" dfdl:separatorSuppressionPolicy="trailingEmptyStrict"> <xs:element name="A" type="xs:string" minOccurs="0" dfdl:occursCountKind="implicit" /> <xs:element name="B" type="xs:string" minOccurs="0" dfdl:occursCountKind="implicit" /> <xs:element name="C" type="xs:string" minOccurs="0" dfdl:occursCountKind="implicit" /> </xs:sequence> </xs:complexType> </xs:element> </tdml:defineSchema> <!-- Define a parse test case, using the above schema and root element. Input data is defined along with the expected infoset. --> <tdml:parserTestCase name="parse-test-6" root="input" model="test-6-Schema" description="Test test-6.dfdl.xsd, in the parsing direction"> <tdml:document> <tdml:documentPart type="text" replaceDFDLEntities="true"><![CDATA[Hello world ]]></tdml:documentPart> </tdml:document> <tdml:errors> <tdml:error>Expected an error on parsing</tdml:error> </tdml:errors> <!-- <tdml:infoset><tdml:dfdlInfoset> <ex:input><A>Hello</A><B>world</B></ex:input> </tdml:dfdlInfoset></tdml:infoset> --> </tdml:parserTestCase> </tdml:testSuite> {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)