Uses of Class
org.apache.qpid.test.framework.TestClientDetails

Packages that use TestClientDetails
org.apache.qpid.test.framework

A framework for testing Qpid, built around a standard 'test circuit' design. 

org.apache.qpid.test.framework.distributedcircuit   
org.apache.qpid.test.framework.distributedtesting   
org.apache.qpid.test.framework.sequencers   
 

Uses of TestClientDetails in org.apache.qpid.test.framework
 

Methods in org.apache.qpid.test.framework that return TestClientDetails
 TestClientDetails LocalCircuitFactory.getSender()
          Supplies the sending test client.
 

Methods in org.apache.qpid.test.framework that return types with arguments of type TestClientDetails
 List<TestClientDetails> LocalCircuitFactory.getReceivers()
          Supplies the receiving test client.
 

Methods in org.apache.qpid.test.framework with parameters of type TestClientDetails
 void LocalCircuitFactory.setReceiver(TestClientDetails receiver)
          Sets the receiving test client to coordinate the test with.
 void LocalCircuitFactory.setSender(TestClientDetails sender)
          Sets the sender test client to coordinate the test with.
 

Uses of TestClientDetails in org.apache.qpid.test.framework.distributedcircuit
 

Fields in org.apache.qpid.test.framework.distributedcircuit with type parameters of type TestClientDetails
protected  List<TestClientDetails> DistributedCircuitImpl.receivers
          Holds the receiver nodes in the test circuit.
protected  List<TestClientDetails> DistributedCircuitImpl.senders
          Holds the sender nodes in the test circuit.
 

Method parameters in org.apache.qpid.test.framework.distributedcircuit with type arguments of type TestClientDetails
static Circuit DistributedCircuitImpl.createCircuit(org.apache.qpid.junit.extensions.util.ParsedProperties testProps, List<TestClientDetails> senders, List<TestClientDetails> receivers, ConversationFactory conversationFactory)
          Creates a distributed test circuit from the specified test parameters, on the senders and receivers given.
static Circuit DistributedCircuitImpl.createCircuit(org.apache.qpid.junit.extensions.util.ParsedProperties testProps, List<TestClientDetails> senders, List<TestClientDetails> receivers, ConversationFactory conversationFactory)
          Creates a distributed test circuit from the specified test parameters, on the senders and receivers given.
 

Constructor parameters in org.apache.qpid.test.framework.distributedcircuit with type arguments of type TestClientDetails
DistributedCircuitImpl(Session session, List<TestClientDetails> senders, List<TestClientDetails> receivers, ConversationFactory.Conversation[] senderConversation, ConversationFactory.Conversation[] receiverConversation, Destination[] senderControlTopic, Destination[] receiverControlTopic)
          Creates a distributed test circuit on the specified senders and receivers.
DistributedCircuitImpl(Session session, List<TestClientDetails> senders, List<TestClientDetails> receivers, ConversationFactory.Conversation[] senderConversation, ConversationFactory.Conversation[] receiverConversation, Destination[] senderControlTopic, Destination[] receiverControlTopic)
          Creates a distributed test circuit on the specified senders and receivers.
 

Uses of TestClientDetails in org.apache.qpid.test.framework.distributedtesting
 

Fields in org.apache.qpid.test.framework.distributedtesting with type parameters of type TestClientDetails
(package private)  Set<TestClientDetails> DistributedTestDecorator.allClients
          Holds the contact information for all test clients that are available and that may take part in the test.
protected  Set<TestClientDetails> Coordinator.enlistedClients
          Holds the list of all clients that enlisted, when the compulsory invite was issued.
 

Methods in org.apache.qpid.test.framework.distributedtesting that return types with arguments of type TestClientDetails
static Set<TestClientDetails> Coordinator.extractEnlists(Collection<Message> enlists)
          For a collection of enlist messages, this method pulls out of the client details for the enlisting clients.
protected  Set<TestClientDetails> DistributedTestDecorator.signupClients(FrameworkBaseCase coordTest)
          Broadcasts an invitation to participate in a coordinating test case to find out what clients are available to run the test case.
 

Method parameters in org.apache.qpid.test.framework.distributedtesting with type arguments of type TestClientDetails
protected  DistributedTestDecorator Coordinator.newTestDecorator(org.apache.qpid.junit.extensions.WrappedSuiteTestDecorator targetTest, Set<TestClientDetails> enlistedClients, ConversationFactory conversationFactory, Connection connection)
          Creates a wrapped test decorator, that is capable of inviting enlisted clients to participate in a specified test.
 

Constructor parameters in org.apache.qpid.test.framework.distributedtesting with type arguments of type TestClientDetails
DistributedTestDecorator(org.apache.qpid.junit.extensions.WrappedSuiteTestDecorator suite, Set<TestClientDetails> availableClients, ConversationFactory controlConversation, Connection controlConnection)
          Creates a wrapped suite test decorator from another one.
FanOutTestDecorator(org.apache.qpid.junit.extensions.WrappedSuiteTestDecorator suite, Set<TestClientDetails> availableClients, ConversationFactory controlConversation, Connection controlConnection)
          Creates a wrapped suite test decorator from another one.
InteropTestDecorator(org.apache.qpid.junit.extensions.WrappedSuiteTestDecorator suite, Set<TestClientDetails> availableClients, ConversationFactory controlConversation, Connection controlConnection)
          Creates a wrapped suite test decorator from another one.
 

Uses of TestClientDetails in org.apache.qpid.test.framework.sequencers
 

Fields in org.apache.qpid.test.framework.sequencers declared as TestClientDetails
protected  TestClientDetails BaseCircuitFactory.sender
          Holds the contact details for the sending test client.
 

Fields in org.apache.qpid.test.framework.sequencers with type parameters of type TestClientDetails
protected  List<TestClientDetails> BaseCircuitFactory.receivers
          Holds the contact details for the receving test client.
 

Methods in org.apache.qpid.test.framework.sequencers that return TestClientDetails
 TestClientDetails CircuitFactory.getSender()
          Supplies the sending test client.
 TestClientDetails BaseCircuitFactory.getSender()
          Supplies the sending test client.
 

Methods in org.apache.qpid.test.framework.sequencers that return types with arguments of type TestClientDetails
 List<TestClientDetails> CircuitFactory.getReceivers()
          Supplies the receiving test client.
 List<TestClientDetails> BaseCircuitFactory.getReceivers()
          Supplies the receiving test client.
 

Methods in org.apache.qpid.test.framework.sequencers with parameters of type TestClientDetails
protected  void FanOutCircuitFactory.assignReceiverRole(TestClientDetails receiver, Properties testProperties, boolean confirm)
          Deprecated. Scheduled for removal once existing tests converted over to use test circuits.
 void CircuitFactory.setReceiver(TestClientDetails receiver)
          Sets the receiving test client to coordinate the test with.
 void BaseCircuitFactory.setReceiver(TestClientDetails receiver)
          Sets the receiving test client to coordinate the test with.
 void CircuitFactory.setSender(TestClientDetails sender)
          Sets the sender test client to coordinate the test with.
 void BaseCircuitFactory.setSender(TestClientDetails sender)
          Sets the sender test client to coordinate the test with.
 



Licensed to the Apache Software Foundation