loopback/test/asteroid.test.js

34 lines
1.0 KiB
JavaScript
Raw Normal View History

2013-06-07 19:57:51 +00:00
describe('asteroid', function() {
2013-06-08 00:37:30 +00:00
describe('asteroid.createDataSource(options)', function(){
2013-06-11 16:01:44 +00:00
it('Create a data source with a connector.', function() {
var dataSource = asteroid.createDataSource({
connector: asteroid.Memory
});
assert(dataSource.connector());
2013-06-08 00:37:30 +00:00
});
});
2013-06-07 19:57:51 +00:00
describe('asteroid.remoteMethod(Model, fn, [options]);', function() {
2013-06-11 16:01:44 +00:00
it("Setup a remote method.", function() {
var Product = asteroid.createModel('product', {price: Number});
2013-06-07 19:57:51 +00:00
Product.stats = function(fn) {
2013-06-11 16:01:44 +00:00
// ...
2013-06-07 19:57:51 +00:00
}
asteroid.remoteMethod(
Product.stats,
{
returns: {arg: 'stats', type: 'array'},
http: {path: '/info', verb: 'get'}
}
);
2013-06-11 16:01:44 +00:00
assert.equal(Product.stats.returns.arg, 'stats');
assert.equal(Product.stats.returns.type, 'array');
assert.equal(Product.stats.http.path, '/info');
assert.equal(Product.stats.http.verb, 'get');
assert.equal(Product.stats.shared, true);
2013-06-07 19:57:51 +00:00
});
});
});