All files / test/Ice/servantLocator Client.js

75.52% Statements 179/237
12.9% Branches 4/31
100% Functions 3/3
75.52% Lines 179/237

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 2381x 1x 1x 1x 1x 1x 1x 2x 2x     2x 2x 2x 2x 2x 2x       2x 2x 2x     2x 2x 2x 2x       2x 2x 2x     2x 2x 2x 2x       2x 2x 2x     2x 2x 2x 2x       2x 2x 2x     2x 2x 2x 2x 2x 2x 2x     2x 2x 2x 2x       2x 2x 2x     2x 2x 2x 2x 2x 2x     2x 2x 2x 2x       2x 2x 2x     2x 2x 2x 2x 2x     2x 2x 2x 2x 2x     2x 2x 2x 2x 2x     2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
// Copyright (c) ZeroC, Inc.
import { Ice } from "@zeroc/ice";
import { Test } from "./Test.js";
import { TestHelper, test } from "../../Common/TestHelper.js";
export class Client extends TestHelper {
    async allTests() {
        async function testExceptions(obj) {
            try {
                await obj.requestFailedException();
                test(false);
            }
            catch (ex) {
                if (ex instanceof Ice.ObjectNotExistException) {
                    test(ex.id.equals(obj.ice_getIdentity()));
                    test(ex.facet == obj.ice_getFacet());
                    test(ex.operation == "requestFailedException");
                }
                else {
                    test(false, ex);
                }
            }
            try {
                await obj.unknownUserException();
                test(false);
            }
            catch (ex) {
                if (ex instanceof Ice.UnknownUserException) {
                    test(ex.unknown == "reason");
                }
                else {
                    test(false, ex);
                }
            }
            try {
                await obj.unknownLocalException();
                test(false);
            }
            catch (ex) {
                if (ex instanceof Ice.UnknownLocalException) {
                    test(ex.unknown == "reason");
                }
                else {
                    test(false, ex);
                }
            }
            try {
                await obj.unknownException();
                test(false);
            }
            catch (ex) {
                if (ex instanceof Ice.UnknownException) {
                    test(ex.unknown == "reason");
                }
                else {
                    test(false, ex);
                }
            }
            try {
                await obj.userException();
                test(false);
            }
            catch (ex) {
                test(ex instanceof Ice.OperationNotExistException ||
                    (ex instanceof Ice.UnknownUserException &&
                        ex.message.includes("::Test::TestIntfUserException")), ex);
            }
            try {
                await obj.localException();
                test(false);
            }
            catch (ex) {
                if (ex instanceof Ice.UnknownLocalException) {
                    test(ex.message.includes("Ice::SocketException") || ex.message.includes("Ice.SocketException"));
                }
                else {
                    test(false, ex);
                }
            }
            try {
                await obj.jsException();
                test(false);
            }
            catch (ex) {
                test(ex instanceof Ice.OperationNotExistException ||
                    (ex instanceof Ice.UnknownException && ex.unknown.indexOf("") >= 0), ex);
            }
            try {
                await obj.unknownExceptionWithServantException();
                test(false);
            }
            catch (ex) {
                if (ex instanceof Ice.UnknownException) {
                    test(ex.unknown == "reason");
                }
                else {
                    test(false, ex);
                }
            }
            try {
                await obj.impossibleException(false);
                test(false);
            }
            catch (ex) {
                test(ex instanceof Ice.UnknownUserException, ex);
            }
            try {
                await obj.impossibleException(true);
                test(false);
            }
            catch (ex) {
                test(ex instanceof Ice.UnknownUserException, ex);
            }
            try {
                await obj.intfUserException(false);
                test(false);
            }
            catch (ex) {
                test(ex instanceof Test.TestImpossibleException, ex);
            }
            try {
                await obj.intfUserException(true);
                test(false);
            }
            catch (ex) {
                test(ex instanceof Test.TestImpossibleException, ex);
            }
        }
        const out = this.getWriter();
        const communicator = this.communicator();
        let obj = new Test.TestIntfPrx(communicator, `asm:${this.getTestEndpoint()}`);
        out.write("testing ice_ids... ");
        try {
            const o = new Ice.ObjectPrx(communicator, `category/locate:${this.getTestEndpoint()}`);
            await o.ice_ids();
            test(false);
        }
        catch (ex) {
            test(ex instanceof Ice.UnknownUserException && ex.unknown == "::Test::TestIntfUserException", ex);
        }
        try {
            const o = new Ice.ObjectPrx(communicator, `category/finished:${this.getTestEndpoint()}`);
            await o.ice_ids();
            test(false);
        }
        catch (ex) {
            test(ex instanceof Ice.UnknownUserException && ex.unknown == "::Test::TestIntfUserException", ex);
        }
        out.writeLine("ok");
        out.write("testing servant locator... ");
        obj = new Test.TestIntfPrx(communicator, `category/locate:${this.getTestEndpoint()}`);
        await obj.ice_ping();
        try {
            obj = new Test.TestIntfPrx(communicator, `category/unknown:${this.getTestEndpoint()}`);
            await obj.ice_ping();
            test(false);
        }
        catch (ex) {
            test(ex instanceof Ice.ObjectNotExistException, ex);
        }
        out.writeLine("ok");
        out.write("testing default servant locator... ");
        obj = new Test.TestIntfPrx(communicator, `anothercat/locate:${this.getTestEndpoint()}`);
        await obj.ice_ping();
        obj = new Test.TestIntfPrx(communicator, `locate:${this.getTestEndpoint()}`);
        await obj.ice_ping();
        try {
            obj = new Test.TestIntfPrx(communicator, `anothercat/unknown:${this.getTestEndpoint()}`);
            await obj.ice_ping();
            test(false);
        }
        catch (ex) {
            test(ex instanceof Ice.ObjectNotExistException, ex);
        }
        try {
            obj = new Test.TestIntfPrx(communicator, `unknown:${this.getTestEndpoint()}`);
            await obj.ice_ping();
            test(false);
        }
        catch (ex) {
            test(ex instanceof Ice.ObjectNotExistException, ex);
        }
        out.writeLine("ok");
        out.write("testing locate exceptions... ");
        obj = new Test.TestIntfPrx(communicator, `category/locate:${this.getTestEndpoint()}`);
        await testExceptions(obj);
        out.writeLine("ok");
        out.write("testing finished exceptions... ");
        obj = new Test.TestIntfPrx(communicator, `category/finished:${this.getTestEndpoint()}`);
        await testExceptions(obj);
        try {
            //
            // Only call these for category/finished.
            //
            await obj.asyncResponse();
            test(false);
        }
        catch (ex) {
            test(ex instanceof Test.TestImpossibleException, ex); // Called by finished().
        }
        try {
            await obj.asyncException();
            test(false);
        }
        catch (ex) {
            test(ex instanceof Test.TestImpossibleException, ex); // Called by finished().
        }
        out.writeLine("ok");
        out.write("testing servant locator removal... ");
        const activation = new Test.TestActivationPrx(communicator, `test/activation:${this.getTestEndpoint()}`);
        await activation.activateServantLocator(false);
        try {
            await obj.ice_ping();
            test(false);
        }
        catch (ex) {
            test(ex instanceof Ice.ObjectNotExistException, ex);
        }
        out.writeLine("ok");
        out.write("testing servant locator addition... ");
        await activation.activateServantLocator(true);
        await obj.ice_ping();
        out.writeLine("ok");
        await obj.shutdown();
    }
    async run(args) {
        let communicator = null;
        try {
            [communicator] = this.initialize(args);
            await this.allTests();
        }
        finally {
            if (communicator) {
                await communicator.destroy();
            }
        }
    }
}