changed.test.js
4.55 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
'use strict';
const chai = require('chai'),
expect = chai.expect,
Support = require(__dirname + '/../support'),
DataTypes = require(__dirname + '/../../../lib/data-types'),
current = Support.sequelize;
describe(Support.getTestDialectTeaser('Instance'), () => {
describe('changed', () => {
beforeEach(function() {
this.User = current.define('User', {
name: DataTypes.STRING,
birthday: DataTypes.DATE,
yoj: DataTypes.DATEONLY,
meta: DataTypes.JSON
});
});
it('should return true for changed primitive', function() {
const user = this.User.build({
name: 'a'
}, {
isNewRecord: false,
raw: true
});
expect(user.changed('meta')).to.equal(false);
user.set('name', 'b');
user.set('meta', null);
expect(user.changed('name')).to.equal(true);
expect(user.changed('meta')).to.equal(true);
});
it('should return falsy for unchanged primitive', function() {
const user = this.User.build({
name: 'a',
meta: null
}, {
isNewRecord: false,
raw: true
});
user.set('name', 'a');
user.set('meta', null);
expect(user.changed('name')).to.equal(false);
expect(user.changed('meta')).to.equal(false);
});
it('should return true for multiple changed values', function() {
const user = this.User.build({
name: 'a',
birthday: new Date(new Date() - 10)
}, {
isNewRecord: false,
raw: true
});
user.set('name', 'b');
user.set('birthday', new Date());
expect(user.changed('name')).to.equal(true);
expect(user.changed('birthday')).to.equal(true);
});
it('should return false for two instances with same value', function() {
const milliseconds = 1436921941088;
const firstDate = new Date(milliseconds);
const secondDate = new Date(milliseconds);
const user = this.User.build({
birthday: firstDate
}, {
isNewRecord: false,
raw: true
});
user.set('birthday', secondDate);
expect(user.changed('birthday')).to.equal(false);
});
it('should return true for changed JSON with same object', function() {
const user = this.User.build({
meta: {
city: 'Copenhagen'
}
}, {
isNewRecord: false,
raw: true
});
const meta = user.get('meta');
meta.city = 'Stockholm';
user.set('meta', meta);
expect(user.changed('meta')).to.equal(true);
});
it('should return true for JSON dot.separated key with changed values', function() {
const user = this.User.build({
meta: {
city: 'Stockholm'
}
}, {
isNewRecord: false,
raw: true
});
user.set('meta.city', 'Gothenburg');
expect(user.changed('meta')).to.equal(true);
});
it('should return false for JSON dot.separated key with same value', function() {
const user = this.User.build({
meta: {
city: 'Gothenburg'
}
}, {
isNewRecord: false,
raw: true
});
user.set('meta.city', 'Gothenburg');
expect(user.changed('meta')).to.equal(false);
});
it('should return true for JSON dot.separated key with object', function() {
const user = this.User.build({
meta: {
address: { street: 'Main street', number: '40' }
}
}, {
isNewRecord: false,
raw: true
});
user.set('meta.address', { street: 'Second street', number: '1' } );
expect(user.changed('meta')).to.equal(true);
});
it('should return false for JSON dot.separated key with same object', function() {
const user = this.User.build({
meta: {
address: { street: 'Main street', number: '40' }
}
}, {
isNewRecord: false,
raw: true
});
user.set('meta.address', { street: 'Main street', number: '40' } );
expect(user.changed('meta')).to.equal(false);
});
it('should return false when changed from null to null', function() {
const attributes = {};
for (const attr in this.User.rawAttributes) {
attributes[attr] = null;
}
const user = this.User.build(attributes, {
isNewRecord: false,
raw: true
});
for (const attr in this.User.rawAttributes) {
user.set(attr, null);
}
for (const attr in this.User.rawAttributes) {
expect(user.changed(attr), `${attr} is not changed`).to.equal(false);
}
});
});
});