1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// $Id$
#include "ace/Auto_Ptr.h"
#include "ace/Get_Opt.h"
#include "tao/Utils/ORB_Manager.h"
#include "Offer_Exporter.h"
#include "Offer_Importer.h"
#include "Service_Type_Exporter.h"
#include "orbsvcs/Trader/Trader.h"
#include "orbsvcs/Trader/Service_Type_Repository.h"
ACE_RCSID (Trading,
colocated_test,
"$Id$")
void
parse_args (int argc, char *argv[],
CORBA::Boolean& verbose)
{
int opt;
ACE_Get_Opt get_opt (argc, argv, "fq");
verbose = 1;
while ((opt = get_opt ()) != EOF)
{
if (opt == 'q')
verbose = 0;
}
}
int
main (int argc, char** argv)
{
ACE_TRY_NEW_ENV
{
TAO_ORB_Manager orb_manager;
orb_manager.init (argc, argv ACE_ENV_ARG_PARAMETER);
// Command line argument interpretation.
CORBA::Boolean verbose = 0;
::parse_args (argc, argv, verbose);
// Initialize ORB.
CORBA::ORB_var orb = orb_manager.orb ();
// Create a Service Type Repository and a Trader Object.
TAO_Service_Type_Repository type_repos;
auto_ptr<TAO_Trader_Factory::TAO_TRADER> trader (TAO_Trader_Factory::create_trader (argc, argv));
TAO_Support_Attributes_i& sup_attr = trader->support_attributes ();
TAO_Trading_Components_i& trd_comp = trader->trading_components ();
// Set the service type repository
sup_attr.type_repos (type_repos._this ());
// Run the Service Type Exporter tests
ACE_DEBUG ((LM_DEBUG, "*** Running the Service Type Exporter tests.\n"));
TAO_Service_Type_Exporter type_exporter
(CosTrading::Lookup::_duplicate (trd_comp.lookup_if ()),
verbose
ACE_ENV_ARG_PARAMETER);
type_exporter.remove_all_types ();
type_exporter.add_all_types ();
type_exporter.list_all_types ();
type_exporter.describe_all_types ();
type_exporter.fully_describe_all_types ();
// Run the Offer Exporter tests
ACE_DEBUG ((LM_DEBUG, "*** Running the Offer Exporter tests.\n"));
TAO_Offer_Exporter offer_exporter
(CosTrading::Lookup::_duplicate (trd_comp.lookup_if ()),
verbose
ACE_ENV_ARG_PARAMETER);
offer_exporter.withdraw_offers ();
offer_exporter.export_offers ();
offer_exporter.describe_offers ();
offer_exporter.modify_offers ();
offer_exporter.describe_offers ();
offer_exporter.withdraw_offers_using_constraints ();
offer_exporter.describe_offers ();
offer_exporter.withdraw_offers ();
offer_exporter.export_offers ();
offer_exporter.describe_offers ();
// Run the Offer Importer tests
ACE_DEBUG ((LM_DEBUG, "*** Running the Offer Importer tests.\n"));
TAO_Offer_Importer offer_importer
(CosTrading::Lookup::_duplicate (trd_comp.lookup_if ()), verbose);
offer_importer.perform_queries ();
}
ACE_CATCHANY
{
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "Trader Export Tests Failed"), -1);
}
ACE_ENDTRY;
return 0;
}
|