loopback-datasource-juggler/test/relations.test.js

125 lines
4.2 KiB
JavaScript
Raw Normal View History

2013-03-26 20:48:14 +00:00
var db, Book, Chapter, Author, Reader, should = require('should');
2013-03-26 00:39:47 +00:00
describe('relations', function() {
2013-03-26 20:48:14 +00:00
before(function(done) {
2013-03-26 00:39:47 +00:00
db = getSchema();
Book = db.define('Book', {name: String});
2013-03-26 20:48:14 +00:00
Chapter = db.define('Chapter', {name: {type: String, index: true}});
2013-03-26 00:39:47 +00:00
Author = db.define('Author', {name: String});
Reader = db.define('Reader', {name: String});
2013-03-26 20:48:14 +00:00
db.automigrate(function() {
Book.destroyAll(function() {
Chapter.destroyAll(function() {
Author.destroyAll(function() {
Reader.destroyAll(done);
});
});
});
});
2013-03-26 00:39:47 +00:00
});
after(function() {
db.disconnect();
});
describe('hasMany', function() {
2013-03-26 20:48:14 +00:00
it('can be declared in different ways', function(done) {
2013-03-26 00:39:47 +00:00
Book.hasMany(Chapter);
Book.hasMany(Reader, {as: 'users'});
Book.hasMany(Author, {foreignKey: 'projectId'});
var b = new Book;
b.chapters.should.be.an.instanceOf(Function);
b.users.should.be.an.instanceOf(Function);
b.authors.should.be.an.instanceOf(Function);
Object.keys((new Chapter).toObject()).should.include('bookId');
Object.keys((new Author).toObject()).should.include('projectId');
2013-03-26 20:48:14 +00:00
db.automigrate(done);
2013-03-26 00:39:47 +00:00
});
2013-03-26 20:48:14 +00:00
it('can be declared in short form', function(done) {
2013-03-26 00:39:47 +00:00
Author.hasMany('readers');
(new Author).readers.should.be.an.instanceOf(Function);
Object.keys((new Reader).toObject()).should.include('authorId');
2013-03-26 20:48:14 +00:00
db.automigrate(done);
});
it('should build record on scope', function(done) {
Book.create(function(err, book) {
var c = book.chapters.build();
c.bookId.should.equal(book.id);
c.save(done);
});
});
it('should create record on scope', function(done) {
Book.create(function(err, book) {
book.chapters.create(function(err, c) {
should.not.exist(err);
should.exist(c);
c.bookId.should.equal(book.id);
done();
});
});
});
it('should fetch all scoped instances', function(done) {
Book.create(function(err, book) {
book.chapters.create({name: 'a'}, function() {
book.chapters.create({name: 'z'}, function() {
book.chapters.create({name: 'c'}, function() {
fetch(book);
});
});
});
});
function fetch(book) {
book.chapters(function(err, ch) {
should.not.exist(err);
should.exist(ch);
ch.should.have.lengthOf(3);
book.chapters({order: 'name DESC'}, function(e, c) {
should.not.exist(e);
should.exist(c);
c.shift().name.should.equal('z');
c.pop().name.should.equal('a');
done();
});
});
}
2013-03-26 00:39:47 +00:00
});
});
describe('belongsTo', function() {
2013-03-26 20:48:14 +00:00
var List, Item, Fear, Mind;
it('can be declared in different ways', function() {
List = db.define('List', {name: String});
Item = db.define('Item', {name: String});
Fear = db.define('Fear');
Mind = db.define('Mind');
// syntax 1 (old)
Item.belongsTo(List);
Object.keys((new Item).toObject()).should.include('listId');
(new Item).list.should.be.an.instanceOf(Function);
// syntax 2 (new)
Fear.belongsTo('mind');
Object.keys((new Fear).toObject()).should.include('mindId');
(new Fear).mind.should.be.an.instanceOf(Function);
// (new Fear).mind.build().should.be.an.instanceOf(Mind);
});
2013-03-26 00:39:47 +00:00
it('can be declared in short form');
});
describe('hasAndBelongsToMany', function() {
it('can be declared');
});
});