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
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
8 deletions
spec/associations/has-many.spec.js
spec/associations/has-many.spec.js
View file @
0066c68
...
...
@@ -3,14 +3,14 @@ if (typeof require === 'function') {
,
Sequelize
=
require
(
"../../index"
)
,
config
=
require
(
"../config/config"
)
,
sequelize
=
new
Sequelize
(
config
.
database
,
config
.
username
,
config
.
password
,
{
logging
:
fals
e
logging
:
tru
e
})
}
buster
.
spec
.
expose
()
buster
.
testRunner
.
timeout
=
500
describe
(
'
Associations
'
,
function
()
{
describe
(
'
HasMany
'
,
function
()
{
before
(
function
(
done
)
{
var
self
=
this
...
...
@@ -18,10 +18,10 @@ describe('Associations', function() {
.
dropAllTables
()
.
success
(
done
)
.
error
(
function
(
err
)
{
console
.
log
(
err
)
})
})
,
})
describe
(
'
hasMany
'
,
function
()
{
describe
(
'has
Association
'
,
function
()
{
describe
(
'
Many To One
'
,
function
()
{
describe
(
'has
Single
'
,
function
()
{
before
(
function
(
done
)
{
var
self
=
this
...
...
@@ -33,7 +33,6 @@ describe('Associations', function() {
sequelize
.
sync
({
force
:
true
}).
success
(
done
)
})
describe
(
'hasLabel'
,
function
()
{
it
(
'does not have any labels assigned to it initially'
,
function
(
done
)
{
var
self
=
this
...
...
@@ -82,7 +81,18 @@ describe('Associations', function() {
})
})
describe
(
'hasLabels'
,
function
()
{
describe
(
'hasAll'
,
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
)
sequelize
.
sync
({
force
:
true
}).
success
(
done
)
})
it
(
'answers false if only some labels have been assigned'
,
function
(
done
)
{
var
self
=
this
...
...
@@ -123,7 +133,7 @@ describe('Associations', function() {
})
})
describe
(
'many to many
'
,
function
()
{
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
})
...
...
@@ -134,6 +144,48 @@ describe('Associations', function() {
Task
.
hasMany
(
User
)
expect
(
Task
.
attributes
.
UserId
).
not
.
toBeDefined
()
})
it
(
"=>clears associations when passing null to the set-method"
,
function
(
done
)
{
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