Skip to content
This repository was archived by the owner on Feb 27, 2020. It is now read-only.

Latest commit

 

History

History
61 lines (48 loc) · 2.45 KB

File metadata and controls

61 lines (48 loc) · 2.45 KB

The live tests allow you to test BGCF routing function, although this relies on specific configuration on your deployment (whereas the other live tests should all run successfully against any Project Clearwater deployment, and can take care of the necessary configuration themselves.)

This document explains how to run these tests against a BGCF, and what configuration needs to be done in advance.

Overview

The "Off-net" tests (in offnet.rb) do the following:

  • listen on port 5072
  • register a subscriber (as normal - i.e. one automatically provisioned on Ellis)
  • send a request out from that subscriber to a user-provided number (given through the OFF_NET_TEL command-line option)
  • checks that this request comes back in on port 5072

This allows it to test any BGCF rule that routes back to port 5072 on your test machine.

To use these tests you need to:

  • Choose a number (<number>)
  • Get the IP address of your test machine (<IP address>)
  • Set up your Clearwater deployment's ENUM and BGCF settings so that a call to your <number> will be routed back to sip:<IP address>:5072;transport=tcp
  • Make sure that the box you're running the live tests on will accept calls to port 5072.
  • Run rake test[<your home domain>] TESTS="Off-net*" OFF_NET_TEL=<number> to run the off-net calling tests

Example: testing standard BGCF routing

This example uses 1000000001 as the Off-net number, and 10.0.0.1 as the IP address of the test machine.

  • Set the following route in bgcf.json:
                {   "name" : "Test 1",
                    "domain" : "otherdomain",
                    "route" : ["sip:10.0.0.1:5072;transport=tcp"]
                }
  • Set up the following ENUM entry: 1.0.0.0.0.0.0.0.0.1.e164.arpa. 3600 IN NAPTR 1 1 "u" "E2U+sip" "!(^.*$)!sip:\\1@otherdomain!"
  • Run rake test[<DEPLOYMENT>] TESTS="Off-net*" OFF_NET_TEL=1000000001

Example: testing NP

This example uses 2000000001 as the Off-net number, and 10.0.0.1 as the IP address of the test machine.

  • Set the following route in bgcf.json:
                {   "name" : "Test 2",
                    "routing number" : "1234-567-890",
                    "route" : ["sip:10.0.0.1:5072;transport=tcp"]
                }
  • Set up the following ENUM entry: 1.0.0.0.0.0.0.0.0.2.e164.arpa. 3600 IN NAPTR 1 1 "u" "E2U+pstn:tel" "!(^.*$)!tel:\\1;npdi;rn=1234567890!"
  • Run rake test[<DEPLOYMENT>] TESTS="Off-net*" OFF_NET_TEL=2000000001