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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
import Ice, Test, sys, TestI
def test(b):
if not b:
raise RuntimeError('test assertion failed')
def testFacets(com, builtInFacets = True):
if builtInFacets:
test(com.findAdminFacet("Properties") != None)
test(com.findAdminFacet("Process") != None)
test(com.findAdminFacet("Logger") != None)
test(com.findAdminFacet("Metrics") != None)
f1 = TestI.TestFacetI()
f2 = TestI.TestFacetI()
f3 = TestI.TestFacetI()
com.addAdminFacet(f1, "Facet1")
com.addAdminFacet(f2, "Facet2")
com.addAdminFacet(f3, "Facet3")
test(com.findAdminFacet("Facet1") == f1)
test(com.findAdminFacet("Facet2") == f2)
test(com.findAdminFacet("Facet3") == f3)
test(com.findAdminFacet("Bogus") == None)
facetMap = com.findAllAdminFacets()
if builtInFacets:
test(len(facetMap) == 7)
test("Properties" in facetMap)
test(isinstance(facetMap["Properties"], Ice.NativePropertiesAdmin))
test("Process" in facetMap)
test("Logger" in facetMap)
test("Metrics" in facetMap)
test(len(facetMap) >=3)
test("Facet1" in facetMap)
test("Facet2" in facetMap)
test("Facet3" in facetMap)
try:
com.addAdminFacet(f1, "Facet1")
test(False)
except Ice.AlreadyRegisteredException:
pass # Expected
try:
com.removeAdminFacet("Bogus")
test(False)
except Ice.NotRegisteredException:
pass # Expected
com.removeAdminFacet("Facet1")
com.removeAdminFacet("Facet2")
com.removeAdminFacet("Facet3")
try:
com.removeAdminFacet("Facet1")
test(False)
except Ice.NotRegisteredException:
pass # Expected
def allTests(helper, communicator):
sys.stdout.write("testing communicator operations... ")
sys.stdout.flush()
#
# Test: Exercise addAdminFacet, findAdminFacet, removeAdminFacet with a typical configuration.
#
init = Ice.InitializationData()
init.properties = Ice.createProperties()
init.properties.setProperty("Ice.Admin.Endpoints", "tcp -h 127.0.0.1")
init.properties.setProperty("Ice.Admin.InstanceName", "Test")
init.properties.setProperty("Ice.ProgramName", "MyTestProgram")
com = Ice.initialize(init)
testFacets(com)
test(com.getLogger().getPrefix() == "MyTestProgram")
com.destroy()
#
# Test: Verify that the operations work correctly in the presence of facet filters.
#
init = Ice.InitializationData()
init.properties = Ice.createProperties()
init.properties.setProperty("Ice.Admin.Endpoints", "tcp -h 127.0.0.1")
init.properties.setProperty("Ice.Admin.InstanceName", "Test")
init.properties.setProperty("Ice.Admin.Facets", "Properties")
com = Ice.initialize(init)
testFacets(com, False)
com.destroy()
#
# Test: Verify that the operations work correctly with the Admin object disabled.
#
com = Ice.initialize()
testFacets(com, False)
com.destroy()
#
# Test: Verify that the operations work correctly when Ice.Admin is enabled.
#
init = Ice.InitializationData()
init.properties = Ice.createProperties()
init.properties.setProperty("Ice.Admin.Enabled", "1")
com = Ice.initialize(init)
test(com.getAdmin() == None)
identity = Ice.stringToIdentity("test-admin")
try:
com.createAdmin(None, identity)
test(False)
except Ice.InitializationException:
pass
adapter = com.createObjectAdapter("")
test(com.createAdmin(adapter, identity) != None)
test(com.getAdmin() != None)
testFacets(com)
com.destroy()
#
# Test: Verify that the operations work correctly when creation of the Admin object is delayed.
#
init = Ice.InitializationData()
init.properties = Ice.createProperties()
init.properties.setProperty("Ice.Admin.Endpoints", "tcp -h 127.0.0.1")
init.properties.setProperty("Ice.Admin.InstanceName", "Test")
init.properties.setProperty("Ice.Admin.DelayCreation", "1")
com = Ice.initialize(init)
testFacets(com)
com.getAdmin()
testFacets(com)
com.destroy()
print("ok")
ref = "factory:{0} -t 10000".format(helper.getTestEndpoint())
factory = Test.RemoteCommunicatorFactoryPrx.uncheckedCast(communicator.stringToProxy(ref))
sys.stdout.write("testing process facet... ")
sys.stdout.flush()
#
# Test: Verify that Process::shutdown() operation shuts down the communicator.
#
props = {}
props["Ice.Admin.Endpoints"] = "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Test"
com = factory.createCommunicator(props)
obj = com.getAdmin()
proc = Ice.ProcessPrx.checkedCast(obj, "Process")
proc.shutdown()
com.waitForShutdown()
com.destroy()
print("ok")
sys.stdout.write("testing properties facet... ")
sys.stdout.flush()
props = {}
props["Ice.Admin.Endpoints"] = "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Test"
props["Prop1"] = "1"
props["Prop2"] = "2"
props["Prop3"] = "3"
com = factory.createCommunicator(props)
obj = com.getAdmin()
pa = Ice.PropertiesAdminPrx.checkedCast(obj, "Properties")
#
# Test: PropertiesAdmin::getProperty()
#
test(pa.getProperty("Prop2") == "2")
test(pa.getProperty("Bogus") == "")
#
# Test: PropertiesAdmin::getProperties()
#
pd = pa.getPropertiesForPrefix("")
test(len(pd) == 6)
test(pd["Ice.Admin.Endpoints"] == "tcp -h 127.0.0.1")
test(pd["Ice.Admin.InstanceName"] == "Test")
test(pd["Prop1"] == "1")
test(pd["Prop2"] == "2")
test(pd["Prop3"] == "3")
# Ice for Python always sets Ice.AcceptClassCycles
test(pd["Ice.AcceptClassCycles"] == "1")
changes = {}
#
# Test: PropertiesAdmin::setProperties()
#
setProps = {}
setProps["Prop1"] = "10" # Changed
setProps["Prop2"] = "20" # Changed
setProps["Prop3"] = "" # Removed
setProps["Prop4"] = "4" # Added
setProps["Prop5"] = "5" # Added
pa.setProperties(setProps)
test(pa.getProperty("Prop1") == "10")
test(pa.getProperty("Prop2") == "20")
test(pa.getProperty("Prop3") == "")
test(pa.getProperty("Prop4") == "4")
test(pa.getProperty("Prop5") == "5")
changes = com.getChanges()
test(len(changes) == 5)
test(changes["Prop1"] == "10")
test(changes["Prop2"] == "20")
test(changes["Prop3"] == "")
test(changes["Prop4"] == "4")
test(changes["Prop5"] == "5")
pa.setProperties(setProps)
changes = com.getChanges()
test(len(changes) == 0)
com.destroy()
print("ok")
sys.stdout.write("testing custom facet... ")
sys.stdout.flush()
#
# Test: Verify that the custom facet is present.
#
props = {}
props["Ice.Admin.Endpoints"] = "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Test"
com = factory.createCommunicator(props)
obj = com.getAdmin()
tf = Test.TestFacetPrx.checkedCast(obj, "TestFacet")
tf.op()
com.destroy()
print("ok")
sys.stdout.write("testing facet filtering... ")
sys.stdout.flush()
#
# Test: Set Ice.Admin.Facets to expose only the Properties facet,
# meaning no other facet is available.
#
props = {}
props["Ice.Admin.Endpoints"] = "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Test"
props["Ice.Admin.Facets"] = "Properties"
com = factory.createCommunicator(props)
obj = com.getAdmin()
proc = Ice.ProcessPrx.checkedCast(obj, "Process")
test(proc == None)
tf = Test.TestFacetPrx.checkedCast(obj, "TestFacet")
test(tf == None)
com.destroy()
#
# Test: Set Ice.Admin.Facets to expose only the Process facet,
# meaning no other facet is available.
#
props = {}
props["Ice.Admin.Endpoints"] = "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Test"
props["Ice.Admin.Facets"] = "Process"
com = factory.createCommunicator(props)
obj = com.getAdmin()
pa = Ice.PropertiesAdminPrx.checkedCast(obj, "Properties")
test(pa == None)
tf = Test.TestFacetPrx.checkedCast(obj, "TestFacet")
test(tf == None)
com.destroy()
#
# Test: Set Ice.Admin.Facets to expose only the TestFacet facet,
# meaning no other facet is available.
#
props = {}
props["Ice.Admin.Endpoints"] = "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Test"
props["Ice.Admin.Facets"] = "TestFacet"
com = factory.createCommunicator(props)
obj = com.getAdmin()
pa = Ice.PropertiesAdminPrx.checkedCast(obj, "Properties")
test(pa == None)
proc = Ice.ProcessPrx.checkedCast(obj, "Process")
test(proc == None)
com.destroy()
#
# Test: Set Ice.Admin.Facets to expose two facets. Use whitespace to separate the
# facet names.
#
props = {}
props["Ice.Admin.Endpoints"] = "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Test"
props["Ice.Admin.Facets"] = "Properties TestFacet"
com = factory.createCommunicator(props)
obj = com.getAdmin()
pa = Ice.PropertiesAdminPrx.checkedCast(obj, "Properties")
test(pa.getProperty("Ice.Admin.InstanceName") == "Test")
tf = Test.TestFacetPrx.checkedCast(obj, "TestFacet")
tf.op()
proc = Ice.ProcessPrx.checkedCast(obj, "Process")
test(proc == None)
com.destroy()
#
# Test: Set Ice.Admin.Facets to expose two facets. Use a comma to separate the
# facet names.
#
props = {}
props["Ice.Admin.Endpoints"] = "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Test"
props["Ice.Admin.Facets"] = "TestFacet, Process"
com = factory.createCommunicator(props)
obj = com.getAdmin()
pa = Ice.PropertiesAdminPrx.checkedCast(obj, "Properties")
test(pa == None)
tf = Test.TestFacetPrx.checkedCast(obj, "TestFacet")
tf.op()
proc = Ice.ProcessPrx.checkedCast(obj, "Process")
proc.shutdown()
com.waitForShutdown()
com.destroy()
print("ok")
factory.shutdown()
|