Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
public
/
sequelize
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
不要怂,就是干,撸起袖子干!
Commit 0066c68a
authored
Jul 02, 2012
by
sdepold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor refactoring + first tests
1 parent
33a3e331
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
126 additions
and
74 deletions
spec/associations/has-many.spec.js
spec/associations/has-many.spec.js
View file @
0066c68
...
@@ -3,14 +3,14 @@ if (typeof require === 'function') {
...
@@ -3,14 +3,14 @@ if (typeof require === 'function') {
,
Sequelize
=
require
(
"../../index"
)
,
Sequelize
=
require
(
"../../index"
)
,
config
=
require
(
"../config/config"
)
,
config
=
require
(
"../config/config"
)
,
sequelize
=
new
Sequelize
(
config
.
database
,
config
.
username
,
config
.
password
,
{
,
sequelize
=
new
Sequelize
(
config
.
database
,
config
.
username
,
config
.
password
,
{
logging
:
fals
e
logging
:
tru
e
})
})
}
}
buster
.
spec
.
expose
()
buster
.
spec
.
expose
()
buster
.
testRunner
.
timeout
=
500
buster
.
testRunner
.
timeout
=
500
describe
(
'
Associations
'
,
function
()
{
describe
(
'
HasMany
'
,
function
()
{
before
(
function
(
done
)
{
before
(
function
(
done
)
{
var
self
=
this
var
self
=
this
...
@@ -18,10 +18,10 @@ describe('Associations', function() {
...
@@ -18,10 +18,10 @@ describe('Associations', function() {
.
dropAllTables
()
.
dropAllTables
()
.
success
(
done
)
.
success
(
done
)
.
error
(
function
(
err
)
{
console
.
log
(
err
)
})
.
error
(
function
(
err
)
{
console
.
log
(
err
)
})
})
,
})
describe
(
'
hasMany
'
,
function
()
{
describe
(
'
Many To One
'
,
function
()
{
describe
(
'has
Association
'
,
function
()
{
describe
(
'has
Single
'
,
function
()
{
before
(
function
(
done
)
{
before
(
function
(
done
)
{
var
self
=
this
var
self
=
this
...
@@ -33,106 +33,158 @@ describe('Associations', function() {
...
@@ -33,106 +33,158 @@ describe('Associations', function() {
sequelize
.
sync
({
force
:
true
}).
success
(
done
)
sequelize
.
sync
({
force
:
true
}).
success
(
done
)
})
})
describe
(
'hasLabel'
,
function
()
{
it
(
'does not have any labels assigned to it initially'
,
function
(
done
)
{
it
(
'does not have any labels assigned to it initially'
,
function
(
done
)
{
var
self
=
this
var
self
=
this
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
this
.
Article
.
create
({
title
:
'Article'
}),
this
.
Label
.
create
({
text
:
'Awesomeness'
}),
this
.
Label
.
create
({
text
:
'Epicness'
})
])
chainer
.
run
().
success
(
function
(
results
,
article
,
label1
,
label2
)
{
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
this
.
Article
.
create
({
title
:
'Article'
}),
article
.
hasLabel
(
label1
),
this
.
Label
.
create
({
text
:
'Awesomeness'
}),
article
.
hasLabel
(
label2
)
this
.
Label
.
create
({
text
:
'Epicness'
})
])
])
chainer
.
run
().
success
(
function
(
results
,
article
,
label1
,
label2
)
{
chainer
.
run
().
success
(
function
(
_
,
hasLabel1
,
hasLabel2
)
{
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
expect
(
hasLabel1
).
toBeFalse
()
article
.
hasLabel
(
label1
),
expect
(
hasLabel2
).
toBeFalse
()
article
.
hasLabel
(
label2
)
done
()
])
chainer
.
run
().
success
(
function
(
_
,
hasLabel1
,
hasLabel2
)
{
expect
(
hasLabel1
).
toBeFalse
()
expect
(
hasLabel2
).
toBeFalse
()
done
()
})
})
})
})
})
})
it
(
'answers true if the label has been assigned'
,
function
(
done
)
{
var
self
=
this
it
(
'answers true if the label has been assigned'
,
function
(
done
)
{
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
var
self
=
this
this
.
Article
.
create
({
title
:
'Article'
}),
this
.
Label
.
create
({
text
:
'Awesomeness'
}),
this
.
Label
.
create
({
text
:
'Epicness'
})
])
chainer
.
run
().
success
(
function
(
results
,
article
,
label1
,
label2
)
{
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
this
.
Article
.
create
({
title
:
'Article'
})
,
[
article
,
'addLabel'
,
[
label1
]]
,
this
.
Label
.
create
({
text
:
'Awesomeness'
})
,
[
article
,
'hasLabel'
,
[
label1
]]
,
this
.
Label
.
create
({
text
:
'Epicness'
})
[
article
,
'hasLabel'
,
[
label2
]]
])
])
chainer
.
run
().
success
(
function
(
results
,
article
,
label1
,
label2
)
{
chainer
.
runSerially
().
success
(
function
(
_
,
label1
,
hasLabel1
,
hasLabel2
)
{
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
expect
(
hasLabel1
).
toBeTrue
()
[
article
,
'addLabel'
,
[
label1
]],
expect
(
hasLabel2
).
toBeFalse
()
[
article
,
'hasLabel'
,
[
label1
]],
done
()
[
article
,
'hasLabel'
,
[
label2
]]
])
chainer
.
runSerially
().
success
(
function
(
_
,
label1
,
hasLabel1
,
hasLabel2
)
{
expect
(
hasLabel1
).
toBeTrue
()
expect
(
hasLabel2
).
toBeFalse
()
done
()
})
})
})
})
})
})
})
})
describe
(
'hasLabels
'
,
function
()
{
describe
(
'hasAll
'
,
function
()
{
it
(
'answers false if only some labels have been assigned'
,
function
(
done
)
{
before
(
function
(
done
)
{
var
self
=
this
var
self
=
this
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
this
.
Article
=
sequelize
.
define
(
'Article'
,
{
'title'
:
Sequelize
.
STRING
})
this
.
Article
.
create
({
title
:
'Article'
}),
this
.
Label
=
sequelize
.
define
(
'Label'
,
{
'text'
:
Sequelize
.
STRING
})
this
.
Label
.
create
({
text
:
'Awesomeness'
}),
this
.
Label
.
create
({
text
:
'Epicness'
})
])
chainer
.
run
().
success
(
function
(
results
,
article
,
label1
,
label2
)
{
this
.
Article
.
hasMany
(
this
.
Label
)
article
.
addLabel
(
label1
).
success
(
function
()
{
article
.
hasLabels
([
label1
,
label2
]).
success
(
function
(
result
)
{
sequelize
.
sync
({
force
:
true
}).
success
(
done
)
expect
(
result
).
toBeFalse
()
})
done
()
})
it
(
'answers false if only some labels have been assigned'
,
function
(
done
)
{
var
self
=
this
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
this
.
Article
.
create
({
title
:
'Article'
}),
this
.
Label
.
create
({
text
:
'Awesomeness'
}),
this
.
Label
.
create
({
text
:
'Epicness'
})
])
chainer
.
run
().
success
(
function
(
results
,
article
,
label1
,
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
)
{
it
(
'answers true if all label have been assigned'
,
function
(
done
)
{
var
self
=
this
var
self
=
this
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
this
.
Article
.
create
({
title
:
'Article'
}),
this
.
Article
.
create
({
title
:
'Article'
}),
this
.
Label
.
create
({
text
:
'Awesomeness'
}),
this
.
Label
.
create
({
text
:
'Awesomeness'
}),
this
.
Label
.
create
({
text
:
'Epicness'
})
this
.
Label
.
create
({
text
:
'Epicness'
})
])
])
chainer
.
run
().
success
(
function
(
results
,
article
,
label1
,
label2
)
{
chainer
.
run
().
success
(
function
(
results
,
article
,
label1
,
label2
)
{
article
.
setLabels
([
label1
,
label2
]).
success
(
function
()
{
article
.
setLabels
([
label1
,
label2
]).
success
(
function
()
{
article
.
hasLabels
([
label1
,
label2
]).
success
(
function
(
result
)
{
article
.
hasLabels
([
label1
,
label2
]).
success
(
function
(
result
)
{
expect
(
result
).
toBeTrue
()
expect
(
result
).
toBeTrue
()
done
()
done
()
})
})
})
})
})
})
})
})
})
})
})
})
describe
(
'(N:M)'
,
function
()
{
it
(
"removes the reference id, which was added in the first place"
,
function
()
{
var
User
=
sequelize
.
define
(
'User'
,
{
username
:
Sequelize
.
STRING
})
,
Task
=
sequelize
.
define
(
'Task'
,
{
title
:
Sequelize
.
STRING
})
describe
(
'many to many'
,
function
()
{
User
.
hasMany
(
Task
)
it
(
"removes the reference id, which was added in the first place"
,
function
()
{
expect
(
Task
.
attributes
.
UserId
).
toBeDefined
()
var
User
=
sequelize
.
define
(
'User'
,
{
username
:
Sequelize
.
STRING
})
,
Task
=
sequelize
.
define
(
'Task'
,
{
title
:
Sequelize
.
STRING
})
User
.
hasMany
(
Task
)
Task
.
hasMany
(
User
)
expect
(
Task
.
attributes
.
UserId
).
toBeDefined
()
expect
(
Task
.
attributes
.
UserId
).
not
.
toBeDefined
()
})
Task
.
hasMany
(
User
)
it
(
"=>clears associations when passing null to the set-method"
,
function
(
done
)
{
expect
(
Task
.
attributes
.
UserId
).
not
.
toBeDefined
()
var
User
=
sequelize
.
define
(
'User'
,
{
username
:
Sequelize
.
STRING
})
,
Task
=
sequelize
.
define
(
'Task'
,
{
title
:
Sequelize
.
STRING
})
User
.
hasMany
(
Task
)
Task
.
hasMany
(
User
)
sequelize
.
sync
().
success
(
function
()
{
console
.
log
(
'sync ok'
)
User
.
create
({
username
:
'foo'
}).
success
(
function
(
user
)
{
console
.
log
(
'user was created'
)
Task
.
create
({
title
:
'task'
}).
run
().
success
(
function
(
task
)
{
console
.
log
(
'task was created'
)
expect
(
1
).
toEqual
(
1
)
return
done
()
task
.
setUsers
([
user
])
.
success
(
function
()
{
console
.
log
(
'set users done'
)
task
.
getUsers
().
success
(
function
(
_users
)
{
expect
(
_users
.
length
).
toEqual
(
1
)
task
.
setUsers
(
null
).
success
(
function
()
{
task
.
getUsers
().
success
(
function
(
_users
)
{
expect
(
_users
.
length
).
toEqual
(
0
)
done
()
})
}).
error
(
function
(
err
)
{
console
.
log
(
err
)
})
}).
error
(
function
(
err
)
{
console
.
log
(
err
)
})
})
.
error
(
function
(
err
)
{
console
.
log
(
err
)
})
})
})
})
})
})
})
})
})
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment