npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@fonoster/seet

v1.2.1

Published

End to end testing for SIP Signaling

Downloads

13

Readme

SIP End-to-End Testing

publish to docker hub

SEET is a suite for end-to-end testing of SIP deployments. We aim to add useful artifacts to help test and troubleshoot any SIP device or software. SEET is inspired in pysipp.

It lets you run complex scenarios involving multiple UASs and UACs. With SEET, you create your SIPp XML scenarios as usual and the suite creates the necesary User Agents and ensure the scenarios run in the correct sequence.

Scenario configuration

| Property | Description | Required | | --------------------------------------- | ----------------------------------------------------------------- | -------- | | name | The name of the scenario | Yes | | description | The description of the scenario | No | | target | System under test | No | | transportMode | SIPp transport mode. Check here for possible values | Yes | | domain | Needed for registration. Defaults to target | No | | enabled | Enables scenario. Defauls to true | No | | only | Exclude all other scenarios. Defauls to false | No | | userAgents.[].mode | User Agent mode. Possible values are uac and uas | Yes | | userAgents.[].port | Port to bind the User Agent | No | | userAgents.[].scenarioFile | Path to the SIPp XML scenario | Yes | | userAgents.[].authentication | Username and password for SIP authentication | No | | userAgents.[].sendRegister | Used for User Agent registration | No | | userAgents.[].sessionCount | Optional Session Count sent during registration. Defaults to 0 | No | | userAgents.[].expires | Expiration in seconds use in for sendRegister. Defaults to 30 | No | | userAgents.[].timeout | Maximum duration in seconds for the scenario | No | | userAgents.[].variables | Key-value array for SIPp XML scenario | No | | userAgents.[].maxIterations | Maximum number of iterations for the scenario (Experimental) | No | | userAgents.[].maxRate | Maximun rate of calls per second for the scenario (Experimental) | No | | userAgents.[].callLimit | Maximum simultaneous calls for the scenario (Experimental) | No |

Example of scenario file

[
  {
    "name": "Simple SIP Message",
    "description": "UAC sends a simple MESSAGE to UAS and waits for an OK response",
    "target": "192.168.1.3",
    "transportMode": "u1",
    "domain": "sip.local",
    "userAgents": [
      {
        "mode": "uas",
        "scenarioFile": "scenarios/ims_uas.xml",
        "authentication": {
          "username": "1001",
          "secret": "1234"
        },
        "sendRegister": true,
        "expires": 30
      },
      {
        "mode": "uac",
        "scenarioFile": "scenarios/ims_uac.xml",
        "authentication": {
          "username": "1002",
          "secret": "1234"
        },
        "variables": [
          {
            "name": "requestURI",
            "value": "[email protected]"
          },
          {
            "name": "from",
            "value": "[email protected]"
          },
          {
            "name": "to",
            "value": "[email protected]"
          }
        ]
      }
    ],
    "enabled": true
  }
]

Available Versions

You can see all images available to pull from Docker Hub via the Tags page. Docker tag names that begin with a "change type" word, such as task, bug, or feature, are available for testing and may be removed at any time.

Installation

You can clone this repository and manually build it.

git clone https://github.com/fonoster/seet
cd seet
docker build -t fonoster/seet:%%VERSION%% .

Otherwise, you can pull this image from the docker index.

docker pull fonoster/seet:%%VERSION%%

Usage Example

The following is a basic example of using this image. Be sure to add the port of every User Agent Server. If you use an udp mode in your scenario (e.g. u1), you must also bind the port in docker with the corresponding notation.

docker run \
  -v $(pwd)/seet.json:/seet.json \
  -v $(pwd)/scenarios:/scenarios \
  -p 7060:7060/udp \
  -t fonoster/seet 

or with NodeJS

# Requires of sipp 3.6.0-r2 installed in the host
npm i -g @fonoster/seet
SCENARIOS=$(pwd)/seet_example.json seet

Environment Variables

Environment variables are used in the entry point script to render configuration templates. You can specify the values of these variables during docker run, docker-compose up, or in Kubernetes manifests in the env array.

  • SCENARIOS - Changes the default path to the scenario file.

Exposed ports

None

Volumes

  • /scenarios - Location for your SIPp XML files
  • /seet.json - Default location for your scenarios file

Contributing

Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests to us.

Authors

See this project's list of contributors who participated.

License

Copyright (C) 2023 by Fonoster Inc. MIT License (see LICENSE for details).