Commit f049efb6 authored by pintar's avatar pintar
Browse files

New tests for clause 7.6.2.1

parent e0ad8700
Loading
Loading
Loading
Loading
+119 −0
Original line number Diff line number Diff line
/***************************************************
 ** @author   STF 475
 ** @version  0.0.1
 ** @purpose  9:7.6.2.1, Verify mapping of complex type where both the base and the 
 **           extending types have the compositor sequence.
 ** @verdict  pass accept, ttcn3verdict:pass
 ***************************************************/
module Pos_07060201_complex_content_derived_by_extension_001 {

    import from schema_Pos_07060201_complex_content_derived_by_extension_001 language "XSD" all;
    //template for EXAMPLE1 and following type system shall be generated from xsd file:
    /*type record E1
    {
        // fields corresponding to attributes of the base and the extending type
        // (in alphabetical order)
        XSD.String birthDateAttrGroup optional,
        XSD.String birthPlaceAttrGroup optional,
        XSD.Integer genderAttrBase optional,
        XSD.String jobPositionAttrGroup optional,
        XSD.String unitOfAge optional,
        // followed by fields corresponding to elements of the base type
        XSD.String titleElemBase,
        XSD.String forenameElemBase,
        XSD.String surnameElemBase,
        // finally fields corresponding to the extending element and group reference
        XSD.Integer ageElemExt,
        G25seq g25seq
    }
    with {
    variant "name as uncapitalized ";
    variant (birthDateAttrGroup, birthPlaceAttrGroup, genderAttrBase, jobPositionAttrGroup,unitOfAge) "attribute";
    };

    type record G25seq {
        XSD.String familyStatusElemInGroup,
        XSD.String spouseElemInGroup optional
    }
    with {
    variant "untagged"
    }*/
    
    template E1 m_msg := {
      birthDateAttrGroup := omit,
      birthPlaceAttrGroup  := omit,
      genderAttrBase := omit,
      jobPositionAttrGroup  := omit,
      unitOfAge := omit,
      titleElemBase := "titleElemBase",
      forenameElemBase := "forenameElemBase",
      surnameElemBase := "surnameElemBase",
      g25seq :={
          familyStatusElemInGroup :="familyStatusElemInGroup",
          spouseElemInGroup := omit
      },
      ageElemExt := 1
    }


    type universal charstring Raw;

    type universal charstring File;
    type record of File FileList;

    type port P message {
        inout all;
    }
    type component C {
        port P p;
    }

	/**
	 * @desc lexical compare the charstring p_textToMatch with the contents of the reference XML file and returns true if they represent the same XML structure
	 * @param p_textToMatch text to be compared with the UTF-8 contents of the XML file
	 * @param p_referenceXmlFile the XML file
	 * @param p_xsdFileList the list of XSD files
	 * @param p_matchError the error result in case it did not match
	 * @param p_referenceTTCN3File the file of the TTCN-3 test module. This path is used to find the reference XML file relative to this path, by keeping the TTCN-3 code file system independent.
	 * @return true if p_textToMatch and the contents of p_referenceXmlFile represent the same XML structure
	 */
 	external function matchFile(Raw p_textToMatch, File p_referenceXmlFile, FileList p_xsdFileList, out universal charstring p_matchError, File p_referenceTTCN3File := __FILE__) return boolean;

    testcase TC_Pos_07060201_complex_content_derived_by_extension_001() runs on C system C {
        var Raw v_rcv;
        var universal charstring v_matchError;

        map(self:p, system:p);

		// encode the message
        p.send(m_msg);

        alt {
        	// compare the encoded message with the reference XML file
            []	p.check(receive(Raw:?) -> value v_rcv) {
            	log("XML message ", v_rcv);
                if (matchFile(v_rcv, "Pos_07060201_complex_content_derived_by_extension_001.xml", { "Pos_07060201_complex_content_derived_by_extension_001.xsd" }, v_matchError)) {
                    alt {
                    	// match decoded value to pass test
                        [] p.receive(m_msg) {
                        	setverdict(pass, "Decoded value matches encoded template and reference XML");
                        }
                        [] p.receive {
                            setverdict(fail, "XML decoding failure");
                        }
                    }
                } else {
                    setverdict(fail, v_matchError);
                }
            }
            [] p.receive {
                setverdict(fail, "Raw decoding failure");
            }
        }
    }

    control {
        execute(TC_Pos_07060201_complex_content_derived_by_extension_001(), 5.0);
    }

}
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<e1
  xmlns="schema:Pos_07060201_complex_content_derived_by_extension_001">
  <titleElemBase>titleElemBase</titleElemBase>
  <forenameElemBase>forenameElemBase</forenameElemBase>
  <surnameElemBase>surnameElemBase</surnameElemBase>
  <familyStatusElemInGroup>familyStatusElemInGroup</familyStatusElemInGroup>
  <ageElemExt>1</ageElemExt>
</e1>
+41 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="schema:Pos_07060201_complex_content_derived_by_extension_001"
    xmlns:ns="schema:Pos_07060201_complex_content_derived_by_extension_001">
    <complexType name="e25seq">
      <sequence>
        <element name="titleElemBase" type="string"/>
        <element name="forenameElemBase" type="string"/>
        <element name="surnameElemBase" type="string"/>
      </sequence>
      <attribute name="genderAttrBase" type="integer"/>
      <attributeGroup ref="ns:g25attr2"/>
    </complexType>
    <group name="g25seq">
      <sequence>
        <element name="familyStatusElemInGroup" type="string"/>
        <element name="spouseElemInGroup" type="string" minOccurs="0"/>
      </sequence>
    </group>
    <attributeGroup name="g25attr1">
      <attribute name="birthPlaceAttrGroup" type="string"/>
      <attribute name="birthDateAttrGroup" type="string"/>
    </attributeGroup>
    <attributeGroup name="g25attr2">
      <attribute name="jobPositionAttrGroup" type="string"/>
    </attributeGroup>
    <!-- Now a type is defined that extends e25seq by adding a new element, group and attributes: -->
    <complexType name="c1">
      <complexContent>
        <extension base="ns:e25seq">
          <sequence>
            <element name="ageElemExt" type="integer"/>
            <group ref="ns:g25seq"/>
          </sequence>
          <attribute name="unitOfAge" type="string"/>
          <attributeGroup ref="ns:g25attr1"/>
        </extension>
      </complexContent>
    </complexType>
    <element name="e1" type="ns:c1"/>
</schema>
 No newline at end of file
+114 −0
Original line number Diff line number Diff line
/***************************************************
 ** @author   STF 475
 ** @version  0.0.1
 ** @purpose  9:7.6.2.1, Verify mapping of complex type where both the base and the 
 **           extending types have the compositor sequence and multiple occurrences 
 **           are allowed.
 ** @verdict  pass accept, ttcn3verdict:pass
 ***************************************************/
module Pos_07060201_complex_content_derived_by_extension_002 {

    import from schema_Pos_07060201_complex_content_derived_by_extension_002 language "XSD" all;
    //  template for EXAMPLE 2: type element e26seqReccurrence and one value of sequence_list
    // and following type system shall be generated from xsd file:
    /*
    type record E1 {
        // fields corresponding to attributes of the base and the extending type
        // (in alphabetical order)
        XSD.Integer genderAttrBase optional,
        XSD.String jobPositionAttrGroup optional,
        XSD.String unitOfAge optional,
        // followed by a "simple" field list corresponding to elements of the base type
        XSD.String titleElemBase,
        XSD.String forenameElemBase,
        XSD.String surnameElemBase,
        // the extending sequence is recurring (see clause 7.6.6.6 for the mapping)
        record of record {
            G25seq g25seq
            XSD.Integer ageElemExt,
        } sequence_list
    }
    with {
        variant "name as uncapitalized";
        variant(sequence_list) "untagged";
        variant (genderAttrBase, jobPositionAttrGroup, unitOfAge) "attribute"
    
      */
    template E1 m_msg := {
      genderAttrBase := omit,
      jobPositionAttrGroup  := omit,
      unitOfAge := omit,
      titleElemBase := "titleElemBase",
      forenameElemBase := "forenameElemBase",
      surnameElemBase := "surnameElemBase",
      sequence_list := {{
          g25seq :={
              familyStatusElemInGroup :="familyStatusElemInGroup",
              spouseElemInGroup := omit
          },
          ageElemExt := 1
      }}
    }


    type universal charstring Raw;

    type universal charstring File;
    type record of File FileList;

    type port P message {
        inout all;
    }
    type component C {
        port P p;
    }

	/**
	 * @desc lexical compare the charstring p_textToMatch with the contents of the reference XML file and returns true if they represent the same XML structure
	 * @param p_textToMatch text to be compared with the UTF-8 contents of the XML file
	 * @param p_referenceXmlFile the XML file
	 * @param p_xsdFileList the list of XSD files
	 * @param p_matchError the error result in case it did not match
	 * @param p_referenceTTCN3File the file of the TTCN-3 test module. This path is used to find the reference XML file relative to this path, by keeping the TTCN-3 code file system independent.
	 * @return true if p_textToMatch and the contents of p_referenceXmlFile represent the same XML structure
	 */
 	external function matchFile(Raw p_textToMatch, File p_referenceXmlFile, FileList p_xsdFileList, out universal charstring p_matchError, File p_referenceTTCN3File := __FILE__) return boolean;

    testcase TC_Pos_07060201_complex_content_derived_by_extension_002() runs on C system C {
        var Raw v_rcv;
        var universal charstring v_matchError;

        map(self:p, system:p);

		// encode the message
        p.send(m_msg);

        alt {
        	// compare the encoded message with the reference XML file
            []	p.check(receive(Raw:?) -> value v_rcv) {
            	log("XML message ", v_rcv);
                if (matchFile(v_rcv, "Pos_07060201_complex_content_derived_by_extension_002.xml", { "Pos_07060201_complex_content_derived_by_extension_002.xsd" }, v_matchError)) {
                    alt {
                    	// match decoded value to pass test
                        [] p.receive(m_msg) {
                        	setverdict(pass, "Decoded value matches encoded template and reference XML");
                        }
                        [] p.receive {
                            setverdict(fail, "XML decoding failure");
                        }
                    }
                } else {
                    setverdict(fail, v_matchError);
                }
            }
            [] p.receive {
                setverdict(fail, "Raw decoding failure");
            }
        }
    }

    control {
        execute(TC_Pos_07060201_complex_content_derived_by_extension_002(), 5.0);
    }

}
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<e1
  xmlns="schema:Pos_07060201_complex_content_derived_by_extension_002">
  <titleElemBase>titleElemBase</titleElemBase>
  <forenameElemBase>forenameElemBase</forenameElemBase>
  <surnameElemBase>surnameElemBase</surnameElemBase>
  <familyStatusElemInGroup>familyStatusElemInGroup</familyStatusElemInGroup>
  <ageElemExt>1</ageElemExt>
</e1>
 No newline at end of file
Loading