summaryrefslogtreecommitdiff
path: root/swift/test/Slice/escape/Client.swift
blob: 32cc6cae0ecc4b80e58f2098b713cb6a10647ca3 (plain)
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
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

import Ice
import PromiseKit
import TestCommon

class breakI: `break` {
    func caseAsync(catch _: Int32, current _: Current) -> Promise<Int32> {
        return Promise.value(0)
    }
}

class funcI: `func` {
    func `public`(current _: Current) throws {}
}

class doI: `do` {
    func `public`(current _: Current) throws {}

    func caseAsync(catch _: Int32, current _: Current) -> Promise<Int32> {
        return Promise.value(0)
    }
}

public class Client: TestHelperI {
    public override func run(args: [String]) throws {
        let communicator = try initialize(args)
        defer {
            communicator.destroy()
        }
        communicator.getProperties().setProperty(key: "TestAdapter.Endpoints", value: getTestEndpoint(num: 0))
        let adapter = try communicator.createObjectAdapter("TestAdapter")
        try adapter.add(servant: breakDisp(breakI()), id: Ice.stringToIdentity("test"))
        try adapter.add(servant: funcDisp(funcI()), id: Ice.stringToIdentity("test1"))
        try adapter.add(servant: doDisp(doI()), id: Ice.stringToIdentity("test2"))
        try adapter.activate()

        let out = getWriter()
        out.write("testing operation name... ")
        let p = try checkedCast(prx: adapter.createProxy(Ice.stringToIdentity("test")), type: breakPrx.self)!
        _ = try p.case(0)
        out.writeLine("ok")

        out.write("testing types... ")
        let e: `continue` = .let

        var g: `guard` = `guard`()
        g.default = 0

        var d: `defer` = `defer`()
        d.else = "else"

        let c: `switch` = `switch`()
        c.if = 0
        c.export = nil
        c.volatile = 0
        try test(c.if == 0)

        let ss: `fileprivate` = `fileprivate`(repeating: g, count: 1)
        let dd: `for` = ["g": g]
        try test(dd.count == ss.count)

        do {
            if e == .let {
                throw `return`(Int32: 0)
            }
        } catch {
            // Expected
        }

        try test(`is` == 0)
        //try test(`self` == 0)
        try test(`throw` == 0)
        try test(`typealias` == 0)
        try test(`internal` == 0)
        try test(`while` == 0)
        try test(`import` == 0)

        out.writeLine("ok")
    }
}