summaryrefslogtreecommitdiff
path: root/js/test/Common/Common.js
blob: 3738c86b6b444fc8d06998e10adb9f080eaf3a51 (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
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

/* globals -Ice*/
var Ice = require("ice").Ice;

var write = function(msg)
{
    process.stdout.write(msg);
};

var writeLine = function(msg)
{
    this.write(msg + "\n");
};

var run = function(m)
{
    var id = new Ice.InitializationData();
    id.properties = Ice.createProperties(process.argv);
    var test = m.require("./Client").__test__;
    test({write: write, writeLine: writeLine}, id).exception(
        function(ex, r)
        {
            console.log(ex.toString());
            if(r instanceof Ice.AsyncResult)
            {
                console.log("\nexception occurred in call to " + r.operation);
            }
            if(ex.stack)
            {
                console.log(ex.stack);
            }
            process.exit(1);
        });
};

exports.run = run;