當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Ice.identityToString方法代碼示例

本文整理匯總了TypeScript中ice.Ice.identityToString方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Ice.identityToString方法的具體用法?TypeScript Ice.identityToString怎麽用?TypeScript Ice.identityToString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ice.Ice的用法示例。


在下文中一共展示了Ice.identityToString方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: allTests


//.........這裏部分代碼省略.........
        test(b1.ice_getEncodingVersion().major === 6 && b1.ice_getEncodingVersion().minor === 5);

        b1 = communicator.stringToProxy("test -p 1.0 -e 1.0");
        test(b1.toString() === "test -t -e 1.0");

        b1 = communicator.stringToProxy("test -p 6.5 -e 1.0");
        test(b1.toString() === "test -t -p 6.5 -e 1.0");

        try
        {
            b1 = communicator.stringToProxy("test:" + defaultProtocol + "@adapterId");
            test(false);
        }
        catch(ex)
        {
            test(ex instanceof Ice.EndpointParseException, ex);
        }

        try
        {
            b1 = communicator.stringToProxy("test::" + defaultProtocol);
            test(false);
        }
        catch(ex)
        {
            test(ex instanceof Ice.EndpointParseException, ex);
        }

        //
        // Test for bug ICE-5543: escaped escapes in stringToIdentity
        //

        let id = new Ice.Identity("test", ",X2QNUAzSBcJ_e$AV;E\\");
        let id2 = Ice.stringToIdentity(Ice.identityToString(id));
        test(id.equals(id2));

        id = new Ice.Identity("test", ",X2QNUAz\\SB\\/cJ_e$AV;E\\\\");
        id2 = Ice.stringToIdentity(Ice.identityToString(id));
        test(id.equals(id2));

        id = new Ice.Identity("/test", "cat/");
        let idStr = Ice.identityToString(id);
        test(idStr === "cat\\//\\/test");
        id2 = Ice.stringToIdentity(idStr);
        test(id.equals(id2));

        // Input string with various pitfalls
        // id = Ice.stringToIdentity("\\342\\x82\\254\\60\\x9\\60\\");
        // test(id.name === "€0\t0\\" && id.category.isEmpty());

        try
        {
            // Illegal character < 32
            id = Ice.stringToIdentity("xx\x01FooBar");
            test(false);
        }
        catch(ex)
        {
            test(ex instanceof Ice.IdentityParseException);
        }

        try
        {
            // Illegal surrogate
            id = Ice.stringToIdentity("xx\\ud911");
            test(false);
開發者ID:zeroc-ice,項目名稱:ice-debian-packaging,代碼行數:67,代碼來源:Client.ts


注:本文中的ice.Ice.identityToString方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。