tree: de394c2d0279a8b94cbaf158abceffd19ec47afb [path history] [tgz]
  1. cert/
  2. .gitignore
  3. basic_test.sh
  4. Dockerfile
  5. frontend.js
  6. mr.py
  7. mrstub-build-start.sh
  8. package.json
  9. README.md
  10. requirements.txt
  11. start.sh
test/mrstub/README.md

mrstub - stub interface to interact with the policy agent over Dmaap

The mrstub is intended for function tests to simulate a message router. The mrstub exposes the read and write urls, used by the agent, as configured in consul. In addition, request messages can be fed to the mrstub and the response messages can be read by polling.

Ports and certificates

The MR normally opens the port 3905 for http. If a certificate and a key are provided the simulator will also open port 3906 for https. The certificate and key shall be placed in the same dir and the dir shall be mounted to /usr/src/app/cert in the container.

PortProtocol
3905http
3906https

The dir cert contains a self-signed cert. Use the script generate_cert_and_key.sh to generate a new certificate and key. The password of the certificate must be set 'test'. The same urls are availables on both the http port 3905 and the https port 3906. If using curl and https, the flag -k shall be given to make curl ignore checking the certificate.

Message Router interface

Messages from the MR can be read using this url using http(s) GET:
events/A1-POLICY-AGENT-READ/users/policy-agent?timeout=<timeout>&limit=<limit>
Both 'timeout' and 'limit' are optional. |Parameter|Description| |---------|--------------------| |limit|Optional parameter to limit the maximum number of messages to return. A value 0 < limit < 4096. If limit is not given, the limit is set to 4096.| |timeout|Optional parameter to control the max length of the poll. A value in milliseconds 0 < timeout < 60000. If timeout is not given, the timeout is 10 seconds. If not messages are available when the poll starts, the poll will end as soon as there is at least one message available|

Messages to the MR can be written using this url http(s) POST/PUT:
/events/A1-POLICY-AGENT-WRITE
One or more messages can be written in the same operation.

Control interface

The control interface can be used by any test script. The following REST operations are available:

Send a message to MR
This method puts a request message in the queue for the agent to pick up. The returned correlationId (auto generated by the mrstub) is used when polling for the reposone message of this particular request.
URI and parameters (GET): /send-request?operation=<GET|PUT|POST|DELETE>&url=<url>

response: <correlation-id> (http 200) or 400 for parameter error or 500 for other errors

Receive a message response for MR for the included correlation id
The method is for polling of messages, returns immediately containing the received response (if any) for the supplied correlationId.
URI and parameter, (GET): /receive-response?correlationId=<correlationid>

response: <json-array of 1 response> 200 or empty 204 or other errors 500

Metrics - counters
There are a number of counters that can be read to monitor the message processing. Do a http GET on any of the current counters and an integer value will be returned with http response code 200. /counter/requests_submitted - The total number of requests sent from the application
/counter/requests_fetched - The total number of requests picked up by the agent
/counter/responses_submitted - The total number of responses written by the agent
/counter/responses_fetched - The total number of responses picked up by the application
/counter/current_requests - The current number of requests waiting to be picked up by the agent
/counter/current_responses - The current number of responses waiting to be picked up by the application

Build and start

Build image
docker build -t mrstub .

Start the image on http only
docker run -it -p 3905:3905 mrstub

Start the image on http and https
docker run -it -p 3905:3905 -p 3906:3906 -v "/PATH_TO_CERT/cert:/usr/src/app/cert" mrstub

The script mrstub-build-start.sh do the build and docker run in one go. This starts the stub container in stand-alone mode for basic test.
If the mrstub should be executed manually with the agent, replace docker run with this command to connect to the docker network with the correct service name (--name shall be the same as configured in consul for the read and write streams). docker run -it -p 3905:3905 --network nonrtric-docker-net --name message-router mrstub

Basic test

Basic test is made with the script basic_test.sh nonsecure|secure which tests all the available urls with a subset of the possible operations. Choose nonsecure for http and secure for https. Use the script mrstub-build-start.sh to start the mrstub in a container first.