has-many.spec.js
3.64 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
if(typeof require === 'function') {
const buster = require("buster")
, Sequelize = require("../../index")
, config = require("../config/config")
, sequelize = new Sequelize(config.database, config.username, config.password, {logging: false})
}
buster.spec.expose()
buster.testRunner.timeout = 500
describe('Testing \'has\' function', function() {
before(function(done) {
var self = this
sequelize
.getQueryInterface()
.dropAllTables()
.success(function() {
done()
})
.error(function(err) { console.log(err) })
}),
describe('using Article and Labels', function() {
before(function(done) {
var self = this
this.Article = sequelize.define('Article', {
'title': Sequelize.STRING
})
this.Label = sequelize.define('Label', {
'text': Sequelize.STRING
})
this.Article.hasMany(this.Label);
this.Article.sync({ force: true }).success(function() {
self.Label.sync({ force: true }).success(done).error(function(err) {
console.log(err)
})
}).error(function(err) {
console.log(err)
})
}),
describe('hasSingle', function() {
it('does not have any labels assigned to it initially', function(done) {
var self = this;
this.Article.create({
title: 'Article'
}).success(function(article) {
self.Label.create({
text: 'Awesomeness'
}).success(function(label1) {
self.Label.create({
text: 'Epicness'
}).success(function(label2) {
article.hasLabel(label1).success(function(result) {
expect(result).toBeFalse();
article.hasLabel(label2).success(function(result) {
expect(result).toBeFalse();
done();
});
});
});
});
});
}),
it('only answers true if the label has been assigned', function(done) {
var self = this;
this.Article.create({
title: 'Article'
}).success(function(article) {
self.Label.create({
text: 'Awesomeness'
}).success(function(label1) {
self.Label.create({
text: 'Epicness'
}).success(function(label2) {
article.addLabel(label1).success(function() {
article.hasLabel(label1).success(function(result) {
expect(result).toBeTrue();
article.hasLabel(label2).success(function(result) {
expect(result).toBeFalse();
done();
});
});
})
});
});
});
})
}),
describe('hasAll', function() {
it('answers false if only some labels have been assigned', function(done) {
var self = this;
this.Article.create({
title: 'Article'
}).success(function(article) {
self.Label.create({
text: 'Awesomeness'
}).success(function(label1) {
self.Label.create({
text: 'Epicness'
}).success(function(label2) {
article.addLabel(label1).success(function() {
article.hasLabels([label1, label2]).success(function(result) {
expect(result).toBeFalse();
done();
});
})
});
});
});
}),
it('answers true if all label have been assigned', function(done) {
var self = this;
this.Article.create({
title: 'Article'
}).success(function(article) {
self.Label.create({
text: 'Awesomeness'
}).success(function(label1) {
self.Label.create({
text: 'Epicness'
}).success(function(label2) {
article.setLabels([label1, label2]).success(function() {
article.hasLabels([label1, label2]).success(function(result) {
expect(result).toBeTrue();
done();
});
})
});
});
});
})
});
})
})