Sem_060210_ReuseofComponentTypes_002.ttcn 2.55 KB
Newer Older
kovacsa's avatar
kovacsa committed
/*****************************************************************
 ** @author   STF 487
 ** @version  0.0.1
 ** @purpose  1:6.2.10, Ensure that extending a component with several other component works properly
 ** @verdict  pass accept, ttcn3verdict:pass
 *****************************************************************/

/* The following requirements are tested:
 * When defining component types by extending more than one parent type,
 * there shall be no name clash between the definitions of the different parent types,
 * i.e. there shall not be a port, variable, constant or timer identifier that is declared
 * in any two of the parent types (directly or by means of extension). 
 */

module Sem_060210_ReuseofComponentTypes_002 {
 
  //MyCompA has a port pt_myPortA
  type component MyCompA {
    port loopbackPort pt_myPortA;
  }
kovacsa's avatar
kovacsa committed
    
  //MyComp has a port pt_myPortB
  type component MyCompB {
    port loopbackPort pt_myPortB;
  }
kovacsa's avatar
kovacsa committed
    
//Component GeneralComp has a timer and inherit two ports from MyCompA and MyCompB   
  type component GeneralComp extends MyCompA, MyCompB {
    timer t;
  }
kovacsa's avatar
kovacsa committed
    
  type port loopbackPort message {
    inout integer;
    inout float;
  }
kovacsa's avatar
kovacsa committed
  
  function loopback() runs on GeneralComp system GeneralComp {
    var integer v_i;
    var float v_f;
    while (true) {
      alt {
        [] pt_myPortA.receive(integer:?) -> value v_i { pt_myPortA.send(v_i); }
        [] pt_myPortA.receive(float:?) -> value v_f { pt_myPortA.send(v_f); }
        [] pt_myPortB.receive(integer:?) -> value v_i { pt_myPortB.send(v_i); }
        [] pt_myPortB.receive(float:?) -> value v_f { pt_myPortB.send(v_f); }
      }
    }
  }
kovacsa's avatar
kovacsa committed

  testcase TC_Sem_060210_ReuseofComponentTypes_002() runs on GeneralComp {
kovacsa's avatar
kovacsa committed
   
    var GeneralComp v_server := GeneralComp.create;
    
    connect(mtc:pt_myPortA, v_server:pt_myPortA);
    connect(mtc:pt_myPortB, v_server:pt_myPortB);
    
    v_server.start(loopback());
   
    //Send an integer from pt_myPortA:
    pt_myPortA.send(2);
kovacsa's avatar
kovacsa committed
    alt {
kovacsa's avatar
kovacsa committed
        setverdict(pass,"Receive successful");
kovacsa's avatar
kovacsa committed
        setverdict(fail,"Unexpected result");
kovacsa's avatar
kovacsa committed
    }
        
    //Send an integer from pt_myPortB:
    pt_myPortB.send(1.0);
kovacsa's avatar
kovacsa committed
    alt {
kovacsa's avatar
kovacsa committed
        setverdict(pass,"Receive successful");
kovacsa's avatar
kovacsa committed
        setverdict(fail,"Unexpected result");
kovacsa's avatar
kovacsa committed
    }

  }

  control{
    execute(TC_Sem_060210_ReuseofComponentTypes_002());
  }
kovacsa's avatar
kovacsa committed
}