ifw-ccf  1.0.0
testDcsClientHelper.hpp
Go to the documentation of this file.
1 
5 #ifndef CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
6 #define CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
7 
9 
10 namespace ccf::common::test {
11 
12  const std::string DCS_CLIENT_HELP = "TestApplication [-v] <service URI> <request> <parameters | parameter file>\n -v verbose with debug info.\n <service URI> destination of the request (e.g. zpb.rr://127.0.0.1:12081)\n <request> request to be sent (e.g. Init, Exit, GetStatus, ...)\n <parameters | parameter file> parameters of the request\n";
13 
14  const auto STATE_ON_NOT_OP_NOT_READY = "On::NotOperational::NotReady/On::NotOperational/On/";
15 
16 
18  public:
19  DcsClientTest();
21 
22  std::string SendReqUser(const std::string& request,
23  const ctd::param::ParameterSet& parameters);
24 
25  protected:
26 
27  private:
28 
29  };
30 
31 }
32 
33 #endif // CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
ccf::common::test::DcsClientTest::SendReqUser
std::string SendReqUser(const std::string &request, const ctd::param::ParameterSet &parameters)
Method to actually send the request and receive the response.
Definition: testDcsClientHelper.cpp:20
ccf::common::test::STATE_ON_NOT_OP_NOT_READY
const auto STATE_ON_NOT_OP_NOT_READY
Definition: testDcsClientHelper.hpp:14
ccf::common::test::DCS_CLIENT_HELP
const std::string DCS_CLIENT_HELP
Definition: testDcsClientHelper.hpp:12
ccf::common::test
Definition: testComAdptBaseHelper.cpp:10
ccf::common::test::DcsClientTest::~DcsClientTest
~DcsClientTest()
Definition: testDcsClientHelper.cpp:16
dcsClient.hpp
ccf::common::test::DcsClientTest::DcsClientTest
DcsClientTest()
Definition: testDcsClientHelper.cpp:12
ccf::common::DcsClient
Used to implement CCF Control client applications.
Definition: dcsClient.hpp:30
ccf::common::test::DcsClientTest
Definition: testDcsClientHelper.hpp:17