Ticket #236 (closed enhancement: fixed)

Opened 5 months ago

Last modified 4 months ago

PTTMonitor Port Number Support in TestScenario

Reported by: fcohen Owned by:
Priority: critical Milestone: verify
Version: 5.2 Keywords:
Cc:

Description

The <monitoring> command in a TestScenario needs a way for the user to define a custom port on which the PTTMonitor listens. This needs to work for the node monitoring and target host monitoring.

Here is the current syntax:

<monitoring enablednodes="false" enabledtarget="true" targethost="192.168.1.112" />

Here is the desired syntax:

<monitoring enablednodes="false" nodeport="8777" enabledtarget="true" targethost="192.168.1.112:8777" />

Note the new nodeport tag and the targethost tag includes the port number.

This is related to http://bugs.pushtotest.com/ticket/208

Change History

Changed 5 months ago by fcohen

  • version set to 5.2

Luis Carlos proposes a different syntax:

    <testnodes>
      <node location="http://localhost:8080/TestNetwork/ws/TestNode" name="node1" />
    </testnodes>

Monitoring in localhost 51111

    <testnodes>
      <node location="http://localhost:8080/TestNetwork/ws/TestNode" name="node1" monitor="http://localhost" />
    </testnodes>

Monitoring in localhost 51111

    <testnodes>
      <node location="http://localhost:8080/TestNetwork/ws/TestNode" name="node1" monitor="http://localhost:51111" />
    </testnodes>

Monitoring in localhost 51111

    <testnodes>
      <node location="http://localhost:8080/TestNetwork/ws/TestNode" name="node1" monitor="http://localhost:60000" />
    </testnodes>

Monitoring in localhost 6000

for the target:

	<monitoring enablednodes="true" enabledtarget="true" targethost="localhost:60000"/>

Changed 5 months ago by fcohen

  • type changed from defect to enhancement
  • milestone set to verify

Received a new build from Luis Carlos. Verifying the new function. -Frank

Changed 4 months ago by fcohen

  • status changed from new to closed
  • resolution set to fixed

Confirmed. Closed. -Frank

Note: See TracTickets for help on using tickets.