├── .gitignore ├── AUTHORS ├── LICENSE ├── README ├── README.md ├── bbs ├── __init__.py ├── __main__.py ├── builder.py ├── configfile.py ├── credentials.py ├── junit │ ├── __init__.py │ ├── junit_xml.py │ └── writer.py ├── main.py ├── manager.py ├── pjlib.py ├── scenario.py ├── session.py ├── settings.py └── steps │ ├── __init__.py │ ├── answer.py │ ├── attxfer.py │ ├── blindxfer.py │ ├── busy.py │ ├── call.py │ ├── callid.py │ ├── callidname.py │ ├── diversion.py │ ├── dtmf.py │ ├── hangup.py │ ├── hold.py │ ├── listen.py │ ├── log.py │ ├── redirect.py │ ├── register.py │ ├── ringing.py │ ├── step.py │ ├── unhold.py │ ├── unregister.py │ ├── wait.py │ └── waitfor.py ├── debian ├── changelog ├── compat ├── control └── rules ├── examples ├── attxfer.yaml ├── blindxfer.yaml ├── multiple │ ├── environment.yaml │ └── scenarios.yaml ├── pickup.yaml ├── simple.yaml ├── simple_labeled.yaml └── wait_test.yaml ├── setup.py └── tests └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/README.md -------------------------------------------------------------------------------- /bbs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bbs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/__main__.py -------------------------------------------------------------------------------- /bbs/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/builder.py -------------------------------------------------------------------------------- /bbs/configfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/configfile.py -------------------------------------------------------------------------------- /bbs/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/credentials.py -------------------------------------------------------------------------------- /bbs/junit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bbs/junit/junit_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/junit/junit_xml.py -------------------------------------------------------------------------------- /bbs/junit/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/junit/writer.py -------------------------------------------------------------------------------- /bbs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/main.py -------------------------------------------------------------------------------- /bbs/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/manager.py -------------------------------------------------------------------------------- /bbs/pjlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/pjlib.py -------------------------------------------------------------------------------- /bbs/scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/scenario.py -------------------------------------------------------------------------------- /bbs/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/session.py -------------------------------------------------------------------------------- /bbs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/settings.py -------------------------------------------------------------------------------- /bbs/steps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/__init__.py -------------------------------------------------------------------------------- /bbs/steps/answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/answer.py -------------------------------------------------------------------------------- /bbs/steps/attxfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/attxfer.py -------------------------------------------------------------------------------- /bbs/steps/blindxfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/blindxfer.py -------------------------------------------------------------------------------- /bbs/steps/busy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/busy.py -------------------------------------------------------------------------------- /bbs/steps/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/call.py -------------------------------------------------------------------------------- /bbs/steps/callid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/callid.py -------------------------------------------------------------------------------- /bbs/steps/callidname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/callidname.py -------------------------------------------------------------------------------- /bbs/steps/diversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/diversion.py -------------------------------------------------------------------------------- /bbs/steps/dtmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/dtmf.py -------------------------------------------------------------------------------- /bbs/steps/hangup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/hangup.py -------------------------------------------------------------------------------- /bbs/steps/hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/hold.py -------------------------------------------------------------------------------- /bbs/steps/listen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/listen.py -------------------------------------------------------------------------------- /bbs/steps/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/log.py -------------------------------------------------------------------------------- /bbs/steps/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/redirect.py -------------------------------------------------------------------------------- /bbs/steps/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/register.py -------------------------------------------------------------------------------- /bbs/steps/ringing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/ringing.py -------------------------------------------------------------------------------- /bbs/steps/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/step.py -------------------------------------------------------------------------------- /bbs/steps/unhold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/unhold.py -------------------------------------------------------------------------------- /bbs/steps/unregister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/unregister.py -------------------------------------------------------------------------------- /bbs/steps/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/wait.py -------------------------------------------------------------------------------- /bbs/steps/waitfor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/bbs/steps/waitfor.py -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/debian/control -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | 6 | -------------------------------------------------------------------------------- /examples/attxfer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/examples/attxfer.yaml -------------------------------------------------------------------------------- /examples/blindxfer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/examples/blindxfer.yaml -------------------------------------------------------------------------------- /examples/multiple/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/examples/multiple/environment.yaml -------------------------------------------------------------------------------- /examples/multiple/scenarios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/examples/multiple/scenarios.yaml -------------------------------------------------------------------------------- /examples/pickup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/examples/pickup.yaml -------------------------------------------------------------------------------- /examples/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/examples/simple.yaml -------------------------------------------------------------------------------- /examples/simple_labeled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/examples/simple_labeled.yaml -------------------------------------------------------------------------------- /examples/wait_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/examples/wait_test.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/bbs/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------