pjsip-pjproject/tests/pjsua
sauwming 58a101c945
Fixed race condition in ACK handling of INVITE message (#3752)
2023-11-03 11:55:21 +08:00
..
logs More pjsua-test work: print full log to help investigating any failed test, and other minor updates. (#2322) 2020-03-04 09:11:37 +07:00
scripts-call Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
scripts-media-playrec Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
scripts-pesq Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
scripts-pres Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
scripts-recvfrom Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
scripts-run Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
scripts-sendto Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
scripts-sipp Fixed race condition in ACK handling of INVITE message (#3752) 2023-11-03 11:55:21 +08:00
tools Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
wavs Ticket #920: New pjsystest application for testing target system/device. Initial work on Win32 and WM 2009-07-16 10:36:48 +00:00
README.TXT Example command line for pjsua testing with sipp. (#2750) 2021-07-01 11:15:42 +08:00
config_site.py Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
inc_cfg.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
inc_const.py Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
inc_sdp.py Expand tab to spaces and remove $Id$ (#3292) 2022-11-22 16:26:54 +07:00
inc_sip.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
inc_util.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
mod_call.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
mod_media_playrec.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
mod_pesq.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
mod_pres.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
mod_recvfrom.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
mod_run.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
mod_sendto.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
mod_sipp.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
run.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00
runall.py Support Python3 for github CI (#3612) 2023-07-06 15:38:04 +07:00

README.TXT

                           PJSUA TEST FRAMEWORK
                        =========================

0. What is this
---------------
This is the automated testing scripts for pjsua. It can do many things (just 
don't ask it to write good documentation :) ).


1. Requirements
---------------
To run the tests you need:
 - Python (tested with Python 2.5.2)
 - pjsua application, built and placed in pjsip-apps/bin directory
 - the pjsua must be built with:
     - SRTP enabled (the default)


2. Using
--------
To run all the tests:
  $ python [OPTIONS] runall.py

To run individual test:
  $ python [OPTIONS] run.py MODULE CONFIG

Where options:
  -e EXE	use EXE as pjsua executable
  -n		use null audio
  -r TEST	(for runall.py only) resume test at TEST

  
For each individual tests, the run.py is the main entry for the test. It 
imports the various inc_xxx.py files, and it will load the MODULE. The MODULE 
contains specific test flows, and we have few of them:

  - mod_run.py: 
  	a simple test which just run pjsua with the configuration from CONFIG 
	file and checks if pjsua can start properly.

  - mod_call.py: 
  	call testing where it spawns two pjsua instances each with configura-
	tions as specified in CONFIG file, makes one pjsua call the other, and 
	checks if the call can be established.

  - mod_pres.py:
  	presence testing

  - mod_sendto.py:
  	Simple UAC to send arbitrary SIP message to pjsua. Good to test
	various incoming INVITE scenarios

  - mod_media_playrec.py:
  	Mainly for resampling quality testing

  - mod_pesq.py
  	Measure call quality of various call settings with PESQ, for people 
	who have PESQ tool and license

Example:
  $ python run.py mod_run.py scripts-run/100_simple.py
  $ python run.py mod_call.py scripts-call/100_simple.py
  $ python run.py mod_sipp.py scripts-sipp/uac-bad-ack.xml