txedge-js
Version:
Edge.js: run .NET and Node.js in-process on Windows, Mac OS, and Linux
41 lines (32 loc) • 1.52 kB
JavaScript
var edge = require('../lib/edge.js'), assert = require('assert'), path = require('path');
var prefix = process.env.EDGE_USE_CORECLR ? '[CoreCLR]' : process.platform === 'win32' ? '[.NET]' : '[Mono]';
describe('serialization', function () {
if (!process.env.EDGE_USE_CORECLR) {
it(prefix + ' complex exception serialization', function (done) {
var func = edge.func({
source: function () {/*
#r "System.Data.dll"
using System.Data;
using System.Data.SqlClient;
async (input) =>
{
using (SqlConnection connection = new SqlConnection("Data Source=my_localhost;Initial Catalog=catalog;Integrated Security=True;Connection Timeout=1"))
{
connection.Open();
}
return input.ToString();
}
*/
}
});
func("JavaScript", function (error, result) {
var exception = error.toString();
var contains = exception.indexOf('A network-related or instance-specific error occurred while establishing a connection to SQL Server') !== -1
|| exception.indexOf('Server does not exist or connection refused') !== -1
|| exception.indexOf('System.Data.SqlClient.SqlException') !== -1;
assert.ok(contains);
done();
});
});
}
});