Sem_160102_predefined_functions_032.ttcn 1.42 KB
Newer Older
kovacsa's avatar
kovacsa committed
/***************************************************
 ** @author   STF 487
 ** @version  0.0.1
 ** @purpose  1:16.1.2, Ensure that the IUT recognizes predefined functions and correctly evaluates them (as specified by Annex C)
 ** @verdict  pass accept, ttcn3verdict:pass
 ***************************************************/

/*NOTE: 
 * "UTF-16LE","UTF-16BE", "UTF-32LE" and "UTF-32BE" in not working with TestCast v.6.8.2.5 */

/* The following requirements are tested:
 * This function converts an UTF-16 universal charstring value to a Big endian octetstring.*/

module Sem_160102_predefined_functions_032 {
	
    
    type component GeneralComp {
    }


    testcase TC_Sem_160102_predefined_functions_032 () runs on GeneralComp {
       
    // universal charstring:    
        var universal charstring v_0 := "AB";
        
    // predefined function for universal charstring to octetstring conversion:     
        var octetstring v_encoded := unichar2oct(v_0, "UTF-16BE");      //"UTF-16" Big endian, expected value:'42004100'O; 
        var octetstring v_1 := '42004100'O;
  

        if( match(v_encoded,v_1)
        ) {
            setverdict(pass,"Encoded value for: ",v_0, " is ", v_encoded);
        }
        else {
            setverdict(fail,"encoded value is: ", v_encoded, " expected ", v_1);
        }
    }

    control{
        execute(TC_Sem_160102_predefined_functions_032());
    }
}