Commit 98691e24 authored by Yann Garcia's avatar Yann Garcia
Browse files

Validation Subscription for Vessel

parent 3680f765
Loading
Loading
Loading
Loading
+33 −12
Original line number Diff line number Diff line
@@ -2,9 +2,30 @@
# This section shall contain the values of all parameters that are defined in your TTCN-3 modules.

# IUT roles
LibCise_Pics.PICS_IUT_CDM_NODE := true
LibCise_Pics.PICS_IUT_CDM_NODE_EI_NA := true
LibCise_Pics.PICS_IUT_CDM_NODE_EI_NN := false
LibCise_Pics.PICS_IUT_CDM_ADAPTOR    := true

# Communication messages
LibCise_Pics.PICS_CDM_PULL            := true
LibCise_Pics.PICS_CDM_PUSH            := true
LibCise_Pics.PICS_CDM_SUBSCRIBE       := true
LibCise_Pics.PICS_CDM_ACKNOWLEDGEMENT := true
LibCise_Pics.PICS_CDM_FEEDBACK        := true

# Services
LibCise_Pics.PICS_CDM_VESSEL_SERVICE                       := true
LibCise_Pics.PICS_CDM_ACTION_SERVICE                       := true
LibCise_Pics.PICS_CDM_ANOMALY_SERVICE                      := true
LibCise_Pics.PICS_CDM_CERTIFICATE_DOCUMENT_SERVICE         := true
LibCise_Pics.PICS_CDM_INCIDENT_SERVICE                     := true
LibCise_Pics.PICS_CDM_IRREGULAR_MIGRATION_INCIDENT_SERVICE := true
LibCise_Pics.PICS_CDM_LAW_INFRINGEMENT_INCIDENT_SERVICE    := true
LibCise_Pics.PICS_CDM_METEO_SERVICE                        := true
LibCise_Pics.PICS_CDM_ORGANIZATION_SERVICE                 := true
LibCise_Pics.PICS_CDM_RISK_SERVICE                         := true
LibCise_Pics.PICS_CDM_CARGO_SERVICE                        := true

# LibCise
LibCise_Pics.PICS_CISE_CERTIFICATES_DB_PATH           := "/home/y.garcia/dev/cise-data-model/keystore"
LibCise_Pics.PICS_CISE_TS_CERTIFICATE                 := "ciseadaptor5.crt" #"sim1_node01.node01.eucise.fr.pem"
@@ -64,10 +85,10 @@ LibCise_Pixits.PX_MESSAGE_PROCESSING_INTERVAL := 2.0
# you want to log into the file or display on console (standard error).

LogFile := "../logs/AtsCise/%e.%h-%r.%s"
#FileMask := LOG_ALL | USER | DEBUG | MATCHING
#ConsoleMask := LOG_ALL | USER | DEBUG | MATCHING
FileMask := ERROR | WARNING | USER | MATCHING | EXECUTOR_RUNTIME | VERDICTOP | PORTEVENT | TIMEROP | TESTCASE
ConsoleMask := ERROR | WARNING | USER | MATCHING | EXECUTOR_RUNTIME | VERDICTOP | PORTEVENT | TIMEROP | TESTCASE
FileMask := LOG_ALL | USER | DEBUG | MATCHING
ConsoleMask := LOG_ALL | USER | DEBUG | MATCHING
#FileMask := ERROR | WARNING | USER | MATCHING | EXECUTOR_RUNTIME | VERDICTOP | PORTEVENT | TIMEROP | TESTCASE
#ConsoleMask := ERROR | WARNING | USER | MATCHING | EXECUTOR_RUNTIME | VERDICTOP | PORTEVENT | TIMEROP | TESTCASE
LogSourceInfo := Stack
LogEntityName:= Yes
LogEventTypes:= Yes
@@ -123,7 +144,7 @@ system.utPort.params := "HTTP(codecs=xml:xml_codec;json:json_codec)/TCP(debug=1,

## cise_node_ei_na
# Check that the IUT responds with an HTTP 200 OK Acknowledgment response when receiving a PullRequest for Vessel service - no Acknowledgment required
AtsCise_TestCases.TC_CDM_NODE_EI_NA_PULL_REQUEST_BV_01_01
#AtsCise_TestCases.TC_CDM_NODE_EI_NA_PULL_REQUEST_BV_01_01
# Check that the IUT sends a PullResponse before reponse timout expiry when receiving a PullRequest with timeout on response - no Acknowledgment required
#AtsCise_TestCases.TC_CDM_NODE_EI_NA_PULL_REQUEST_BV_01_02
# Check that the IUT responds with an HTTP 200 OK Acknowledgment response when receiving a PullRequest for a unknown vessel - no Acknowledgment required
@@ -220,7 +241,7 @@ AtsCise_TestCases.TC_CDM_NODE_EI_NA_PULL_REQUEST_BV_01_01
# Check that the IUT responds with an HTTP 200 OK Acknowledgment response when receiving a subscription for VesselService
#AtsCise_TestCases.TC_CDM_NODE_EI_NA_SUB_BV_01
# Check that the IUT responds with an HTTP 200 OK Acknowledgment response and an error code when receiving a subscription ending in past
#AtsCise_TestCases.TC_CDM_NODE_EI_NA_SUB_BO_01
AtsCise_TestCases.TC_CDM_NODE_EI_NA_SUB_BO_01

# Check that the IUT sends a request of subcribers list for ActionService when triggered
#AtsCise_TestCases.TC_CDM_NODE_EI_NA_SUB_BV_02
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# This section shall contain the values of all parameters that are defined in your TTCN-3 modules.

# IUT roles
LibCise_Pics.PICS_IUT_CDM_NODE := true
LibCise_Pics.PICS_IUT_CDM_NODE_EI_NA := true
LibCise_Pics.PICS_IUT_CDM_ADAPTOR  := true

# LibCise
Original line number Diff line number Diff line
Subproject commit c38a2f267cb659c8180548bc82721d34dc71ef85
Subproject commit 6901c1c381950f308d2b1643e90757248ae99eab
Loading