/****************************************************************************** * Copyright (c) 2000-2016 Ericsson Telecom AB * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Adrien Kirjak – initial implementation * ** @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 ***************************************************/ /* The following requirements are tested: * This function converts an UTF-32 universal charstring value to a Little endian octetstring.*/ module Sem_160102_predefined_functions_031 { type component GeneralComp { } testcase TC_Sem_160102_predefined_functions_031 () runs on GeneralComp { // universal charstring: var universal charstring v_0 := "ABC"; // predefined function for universal charstring to octetstring conversion: var octetstring v_encoded := unichar2oct(v_0, "UTF-32LE"); //"UTF-32" little endian, expected value:'4100 0000 4200 0000 4300 0000'O var octetstring v_1 := '410000004200000043000000'O; v_encoded := remove_bom(v_encoded); // extra bom octet is present at the beginning 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_031()); } }