communicator(); { $base = $communicator->stringToProxy(sprintf("i1:%s", $helper->getTestEndpoint())); $i = $base->ice_checkedCast("::Test::I"); $s1 = $NS ? eval("return new Test\\S(0);") : eval("return new Test_S(0);"); $s2 = null; $s3 = $i->opS($s1, $s2); test($s1 == $s3); test($s2 == $s3); $sseq1 = array($s1); $sseq2 = null; $sseq3 = $i->opSSeq($sseq1, $sseq2); test($sseq2[0] == $s1); test($sseq3[0] == $s1); $smap1 = array("a" => $s1); $smap2 = null; $smap3 = $i->opSMap($smap1, $smap2); test($smap2["a"] == $s1); test($smap3["a"] == $s1); $v1 = $NS ? constant("Test\\E1::v1") : constant("Test_E1::v1"); $e = $i->opE1($v1); test($e == $v1); $s = $i->opS1($NS ? eval("return new Test\\S1(\"S1\");") : eval("return new Test_S1(\"S1\");")); test($s->s == "S1"); $c = $i->opC1($NS ? eval("return new Test\\C1(\"C1\");") : eval("return new Test_C1(\"C1\");")); test($c->s == "C1"); } { $base = $communicator->stringToProxy(sprintf("i2:%s", $helper->getTestEndpoint())); $i = $base->ice_checkedCast("::Test::Inner::Inner2::I"); $s1 = $NS ? eval("return new Test\\Inner\\Inner2\\S(0);") : eval("return new Test_Inner_Inner2_S(0);"); $s2 = null; $s3 = $i->opS($s1, $s2); test($s1 == $s3); test($s2 == $s3); $sseq1 = array($s1); $sseq2 = null; $sseq3 = $i->opSSeq($sseq1, $sseq2); test($sseq2[0] == $s1); test($sseq3[0] == $s1); $smap1 = array("a" => $s1); $smap2 = null; $smap3 = $i->opSMap($smap1, $smap2); test($smap2["a"] == $s1); test($smap3["a"] == $s1); } { $base = $communicator->stringToProxy(sprintf("i3:%s", $helper->getTestEndpoint())); $i = $base->ice_checkedCast("::Test::Inner::I"); $s1 = $NS ? eval("return new Test\\Inner\\Inner2\\S(0);") : eval("return new Test_Inner_Inner2_S(0);"); $s2 = null; $s3 = $i->opS($s1, $s2); test($s1 == $s3); test($s2 == $s3); $sseq1 = array($s1); $sseq2 = null; $sseq3 = $i->opSSeq($sseq1, $sseq2); test($sseq2[0] == $s1); test($sseq3[0] == $s1); $smap1 = array("a" => $s1); $smap2 = null; $smap3 = $i->opSMap($smap1, $smap2); test($smap2["a"] == $s1); test($smap3["a"] == $s1); } { $base = $communicator->stringToProxy(sprintf("i4:%s", $helper->getTestEndpoint())); $i = $base->ice_checkedCast("::Inner::Test::Inner2::I"); $s1 = $NS ? eval("return new Test\\S(0);") : eval("return new Test_S(0);"); $s2 = null; $s3 = $i->opS($s1, $s2); test($s1 == $s3); test($s2 == $s3); $sseq1 = array($s1); $sseq2 = null; $sseq3 = $i->opSSeq($sseq1, $sseq2); test($sseq2[0] == $s1); test($sseq3[0] == $s1); $smap1 = array("a" => $s1); $smap2 = null; $smap3 = $i->opSMap($smap1, $smap2); test($smap2["a"] == $s1); test($smap3["a"] == $s1); } { $base = $communicator->stringToProxy(sprintf("i1:%s", $helper->getTestEndpoint())); $i = $base->ice_checkedCast("::Test::I"); $i->shutdown(); } } class Client extends TestHelper { function run($args) { try { echo "test using same type name in different Slice modules... "; flush(); $communicator = $this->initialize($args); allTests($this); echo "ok\n"; $communicator->destroy(); } catch(Exception $ex) { $communicator->destroy(); throw $ex; } } } ?>