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 6af88d03
authored
Jul 01, 2012
by
sdepold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactored tests
1 parent
8ef72688
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
107 additions
and
130 deletions
spec/associations/has-many.spec.js
spec/associations/has-many.spec.js
View file @
6af88d0
if
(
typeof
require
===
'function'
)
{
if
(
typeof
require
===
'function'
)
{
const
buster
=
require
(
"buster"
)
const
buster
=
require
(
"buster"
)
,
Sequelize
=
require
(
"../../index"
)
,
Sequelize
=
require
(
"../../index"
)
,
config
=
require
(
"../config/config"
)
,
config
=
require
(
"../config/config"
)
,
sequelize
=
new
Sequelize
(
config
.
database
,
config
.
username
,
config
.
password
,
{
logging
:
false
})
,
sequelize
=
new
Sequelize
(
config
.
database
,
config
.
username
,
config
.
password
,
{
logging
:
false
})
}
}
buster
.
spec
.
expose
()
buster
.
spec
.
expose
()
buster
.
testRunner
.
timeout
=
500
buster
.
testRunner
.
timeout
=
500
describe
(
'
Testing \'has\' function
'
,
function
()
{
describe
(
'
Associations
'
,
function
()
{
before
(
function
(
done
)
{
before
(
function
(
done
)
{
var
self
=
this
var
self
=
this
sequelize
sequelize
.
getQueryInterface
()
.
getQueryInterface
()
.
dropAllTables
()
.
dropAllTables
()
.
success
(
function
()
{
.
success
(
done
)
done
()
})
.
error
(
function
(
err
)
{
console
.
log
(
err
)
})
.
error
(
function
(
err
)
{
console
.
log
(
err
)
})
}),
}),
describe
(
'using Article and Labels'
,
function
()
{
describe
(
'hasMany'
,
function
()
{
before
(
function
(
done
)
{
describe
(
'hasAssociation'
,
function
()
{
var
self
=
this
before
(
function
(
done
)
{
var
self
=
this
this
.
Article
=
sequelize
.
define
(
'Article'
,
{
'title'
:
Sequelize
.
STRING
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
)
})
})
this
.
Label
=
sequelize
.
define
(
'Label'
,
{
'text'
:
Sequelize
.
STRING
describe
(
'hasLabel'
,
function
()
{
it
(
'does not have any labels assigned to it initially'
,
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
)
{
var
chainer
=
new
Sequelize
.
Utils
.
QueryChainer
([
article
.
hasLabel
(
label1
),
article
.
hasLabel
(
label2
)
])
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
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
([
[
article
,
'addLabel'
,
[
label1
]],
[
article
,
'hasLabel'
,
[
label1
]],
[
article
,
'hasLabel'
,
[
label2
]]
])
chainer
.
runSerially
().
success
(
function
(
_
,
label1
,
hasLabel1
,
hasLabel2
)
{
expect
(
hasLabel1
).
toBeTrue
()
expect
(
hasLabel2
).
toBeFalse
()
done
()
})
})
})
})
})
this
.
Article
.
hasMany
(
this
.
Label
);
describe
(
'hasLabels'
,
function
()
{
it
(
'answers false if only some labels have been assigned'
,
function
(
done
)
{
this
.
Article
.
sync
({
force
:
true
}).
success
(
function
()
{
var
self
=
this
self
.
Label
.
sync
({
force
:
true
}).
success
(
done
).
error
(
function
(
err
)
{
console
.
log
(
err
)
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
)
{
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
.
setLabels
([
label1
,
label2
]).
success
(
function
()
{
article
.
hasLabels
([
label1
,
label2
]).
success
(
function
(
result
)
{
expect
(
result
).
toBeTrue
()
done
()
})
})
})
})
})
}).
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
();
});
})
});
});
});
})
});
})
})
})
})
\ No newline at end of file
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