Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
execution_stats_service [2017/12/19 00:43]
admin
— (current)
Line 1: Line 1:
-===== Web Service / API ===== 
-Web Service / API is provided to control model execution and retrieve model execution stats/details after the execution from external systems. 
  
-Please refer to [[http_stats_service | Stats Services]] for details. 
- 
-==== Execute Model ==== 
-The RESTful web service (url) call is just a simple http request which you can run from any browser or application, for example the following url call will execute Demo_WebStore model to execute on the selected mCase QuickPurchaseScenario: 
- 
-   http://localhost:8888/MbtSvr/app=websvc&action=exec&mbtFile=Demo_WebStore&statDesc=xyz&browser=firefox&mbtMode=OptimalSequencer&async=false 
- 
-You will see the model execution and when it's completed, it will return a JSON document that contains the execution status like [[REST Exec Response | this]] 
- 
-You can run the model in ascync mode by setting parameter ''async=true''. This will return a JSON string containing the ''MBT Session ID'', which can then be used to check model execution status or retrieve execution stats. 
- 
----- 
-==== Execution Parameters ==== 
- 
-Parameters include: 
-  * //mbtFile// or //model//- name of the model 
-  * //async// - true or false, to run model asynchronously (without waiting for the model to finish executing). Default is false. 
-  * //statDesc// - description to be saved with the execution stat, this is used to retrieve the stats later for this execution. This is required in order to return the execution stats.  If not specified, execution stats will be discard after the execution. 
-  * //mbtMode// - sequencer to be used: 
-    * //OptimalSequence// 
-    * //RandomSequence// 
-    * //GreedySequence// 
-    * //MCaseSerial// 
-    * //MCaseOptimal// 
-    * //ConcurrentSequence// 
-    * //PathFinder// 
-    * //PriorityPath// 
-  * Stop Condition Settings: 
-    * //stopMinute// - number of minutes to allow model to execute, default 60 
-    * //stopTraversal// - number of traversals, stop model execute when reached, default 1000 
-    * //stopTransCoveragePct// - required transition coverage in percentage, default 100 
-    * //exception// - number of exceptions detected, default 100 
-  * //iteration// - number of iterations, default 1 
-  * //parallelMode// - used with //thread// set to > 1, default //Shared//: 
-    * //Shared// - multiple threads working to finish the same sequence, use this to achieve model coverage quickly 
-    * //Duplicate// - each thread executes the entire test sequence generated independently, use this to simulate multiple users running similar scenarios 
-  * //thread// - number of threads, default 1 
-  * //browser// - name of the browser to execute the model for web app testing: 
-    * //ie// - Internet Explorer 
-    * //firefox// - Firefox 
-    * //Chrome// - Google Chrome 
-    * //Safari// - Safari 
-    * //HtmUnit// - simulated browser (no graphical rendering, thus faster) 
-    * //Opera// - Opera 
-  * //plugin// - plugin ID(s), separate plugin ids with ",": 
-    * //DATAGEN// - DataGen: Utility to generate test data using patterns 
-    * //ALM// - ALM: Integration with requirements and defect tracking systems 
-    * //BA// - Business Analysis: Build and Animate Prototype from Models 
-    * //SELENIUM// - Selenium: Web application cross-browser testing 
-    * //WINUIA// - WinUIA: Test Windows UI applications 
-    * //SERVICE// - Service: Test database, interfaces and web services 
-    * //REMOTETRIGGER// - RemoteTrigger: Integration with external test automation tools 
-    * //REMOTECOMMAND// - RemoteCommand: Integration with external test automation tools 
-    * //LOAD// - Load - Perform load testing & model orchestration 
-    * //CONCURRENT// - Concurrent - Test concurrent & message-driven systems 
-  * //seed// - random number generator seed, default 123 
-  * //initVar// - initialize user variables at the beginning of the model execution 
-  * //uiMapURI// - UI Map File 
-  * //appURI// - App URI 
-  * //autoClose// - close model when model execution completes 
-  * //mcase// - name of mCase 
-  * //notifyEmail// - email address to send model completion notification, requires javaMail setup 
- 
-Use RESTful web service to integrated with and manage //TestOptimal// from your requirements and bug tracking systems. 
- 
----- 
-==== Retrieve Execution Stats==== 
-There is also a websvc to retrieve the model execution stats which has been saved, see example url call below: 
- 
-   http://localhost:8888/MbtSvr/app=websvc&action=statSvc&cmd=modelExec&statDesc=xyz 
- 
-The above websvc returns the model execution stats in JSON like [[REST Exec Response | this]]. 
- 
-For other REST services, please refer to [[http_stats_service|Stats Web Services (http)]]