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 678b9267
authored
Mar 10, 2014
by
Thanasis Polychronakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update tests with new Validation refactoring expectations
1 parent
d7e5d20e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
66 additions
and
24 deletions
test/dao.test.js
test/hooks.test.js
test/promise.test.js
test/sequelize.test.js
test/dao.test.js
View file @
678b926
...
...
@@ -855,7 +855,7 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
expect
(
err
).
to
.
be
.
instanceof
(
Object
)
expect
(
err
.
validateTest
).
to
.
be
.
instanceof
(
Array
)
expect
(
err
.
validateTest
[
0
]).
to
.
exist
expect
(
err
.
validateTest
[
0
]
).
to
.
equal
(
'Validation isInt failed'
)
expect
(
err
.
validateTest
[
0
].
message
).
to
.
equal
(
'Validation isInt failed'
)
done
()
})
})
...
...
@@ -868,7 +868,7 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
expect
(
err
.
validateCustom
).
to
.
exist
expect
(
err
.
validateCustom
).
to
.
be
.
instanceof
(
Array
)
expect
(
err
.
validateCustom
[
0
]).
to
.
exist
expect
(
err
.
validateCustom
[
0
]
).
to
.
equal
(
'Length failed.'
)
expect
(
err
.
validateCustom
[
0
].
message
).
to
.
equal
(
'Length failed.'
)
done
()
})
})
...
...
@@ -881,7 +881,7 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
expect
(
err
.
validateTest
).
to
.
exist
expect
(
err
.
validateTest
).
to
.
be
.
instanceof
(
Array
)
expect
(
err
.
validateTest
[
0
]).
to
.
exist
expect
(
err
.
validateTest
[
0
]
).
to
.
equal
(
'Validation isInt failed'
)
expect
(
err
.
validateTest
[
0
].
message
).
to
.
equal
(
'Validation isInt failed'
)
done
()
})
})
...
...
@@ -1052,6 +1052,44 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
})
})
})
describe
(
'many to many relations'
,
function
()
{
var
udo
;
beforeEach
(
function
(
done
)
{
var
self
=
this
this
.
User
=
this
.
sequelize
.
define
(
'UserWithUsernameAndAgeAndIsAdmin'
,
{
username
:
DataTypes
.
STRING
,
age
:
DataTypes
.
INTEGER
,
isAdmin
:
DataTypes
.
BOOLEAN
},
{
timestamps
:
false
})
this
.
Project
=
this
.
sequelize
.
define
(
'NiceProject'
,
{
title
:
DataTypes
.
STRING
},
{
timestamps
:
false
})
this
.
Project
.
hasMany
(
this
.
User
)
this
.
User
.
hasMany
(
this
.
Project
)
this
.
User
.
sync
({
force
:
true
}).
success
(
function
()
{
self
.
Project
.
sync
({
force
:
true
}).
success
(
function
()
{
self
.
User
.
create
({
username
:
'fnord'
,
age
:
1
,
isAdmin
:
true
})
.
success
(
function
(
user
)
{
udo
=
user
done
()
})
})
})
})
it
.
skip
(
'Should assign a property to the instance'
,
function
(
done
)
{
// @thanpolas rethink this test, it doesn't make sense, a relation has
// to be created first in the beforeEach().
var
self
=
this
;
this
.
User
.
find
({
id
:
udo
.
id
})
.
success
(
function
(
user
)
{
user
.
NiceProjectId
=
1
;
expect
(
user
.
NiceProjectId
).
to
.
equal
(
1
);
done
();
})
})
})
describe
(
'toJSON'
,
function
()
{
beforeEach
(
function
(
done
)
{
...
...
test/hooks.test.js
View file @
678b926
...
...
@@ -464,7 +464,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'should return an error based on user'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
([
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -501,7 +501,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'should return an error based on the hook'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
([
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -552,7 +552,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'should return an error based on user'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
([
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -601,7 +601,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'should return an error based on the hook'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
([
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -698,7 +698,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'should return the user from the callback'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
([
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -720,7 +720,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'should return the error without the user within callback'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
([
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -835,7 +835,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'#create'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'creative'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
(
[
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -859,7 +859,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'#create'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
(
[
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -940,7 +940,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
(
[
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -954,7 +954,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
(
[
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -1061,7 +1061,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'#create'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'creative'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
(
[
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
@@ -1085,7 +1085,7 @@ describe(Support.getTestDialectTeaser("Hooks"), function () {
it
(
'#create'
,
function
(
done
)
{
this
.
User
.
create
({
mood
:
'happy'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
mood
).
to
.
deep
.
equal
(
[
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
]
)
expect
(
err
.
mood
[
0
].
message
).
to
.
equal
(
'Value "ecstatic" for ENUM mood is out of allowed scope. Allowed values: happy, sad, neutral'
)
done
()
})
})
...
...
test/promise.test.js
View file @
678b926
...
...
@@ -277,7 +277,7 @@ describe(Support.getTestDialectTeaser("Promise"), function () {
expect
(
err
).
to
.
be
.
an
(
"object"
)
expect
(
err
.
validateTest
).
to
.
be
.
an
(
"array"
)
expect
(
err
.
validateTest
[
0
]).
to
.
be
.
ok
expect
(
err
.
validateTest
[
0
]
).
to
.
equal
(
'Validation isInt failed'
)
expect
(
err
.
validateTest
[
0
].
message
).
to
.
equal
(
'Validation isInt failed'
)
done
()
});
})
...
...
@@ -290,7 +290,7 @@ describe(Support.getTestDialectTeaser("Promise"), function () {
expect
(
err
.
validateCustom
).
to
.
be
.
ok
expect
(
err
.
validateCustom
).
to
.
be
.
an
(
"array"
)
expect
(
err
.
validateCustom
[
0
]).
to
.
be
.
ok
expect
(
err
.
validateCustom
[
0
]
).
to
.
equal
(
'Length failed.'
)
expect
(
err
.
validateCustom
[
0
].
message
).
to
.
equal
(
'Length failed.'
)
done
()
})
})
...
...
@@ -304,7 +304,7 @@ describe(Support.getTestDialectTeaser("Promise"), function () {
expect
(
err
.
validateTest
).
to
.
be
.
ok
expect
(
err
.
validateTest
).
to
.
be
.
an
(
"array"
)
expect
(
err
.
validateTest
[
0
]).
to
.
be
.
ok
expect
(
err
.
validateTest
[
0
]
).
to
.
equal
(
'Validation isInt failed'
)
expect
(
err
.
validateTest
[
0
].
message
).
to
.
equal
(
'Validation isInt failed'
)
done
()
})
})
...
...
@@ -322,7 +322,7 @@ describe(Support.getTestDialectTeaser("Promise"), function () {
expect
(
user
.
id
).
to
.
equal
(
1
)
expect
(
arguments
.
length
).
to
.
equal
(
1
)
done
()
})
})
})
describe
(
'with spread'
,
function
()
{
...
...
@@ -334,7 +334,7 @@ describe(Support.getTestDialectTeaser("Promise"), function () {
expect
(
created
).
to
.
equal
(
false
)
expect
(
arguments
.
length
).
to
.
equal
(
2
)
done
()
})
})
})
it
(
'user created'
,
function
(
done
)
{
this
.
User
...
...
@@ -344,7 +344,7 @@ describe(Support.getTestDialectTeaser("Promise"), function () {
expect
(
created
).
to
.
equal
(
true
)
expect
(
arguments
.
length
).
to
.
equal
(
2
)
done
()
})
})
})
it
(
'works for functions with only one return value'
,
function
(
done
)
{
this
.
User
...
...
@@ -353,8 +353,8 @@ describe(Support.getTestDialectTeaser("Promise"), function () {
expect
(
user
.
id
).
to
.
equal
(
1
)
expect
(
arguments
.
length
).
to
.
equal
(
1
)
done
()
})
})
})
})
})
})
})
test/sequelize.test.js
View file @
678b926
...
...
@@ -86,6 +86,10 @@ describe(Support.getTestDialectTeaser("Sequelize"), function () {
if
(
dialect
===
'mariadb'
)
{
expect
(
err
.
message
).
to
.
match
(
/Access denied for user/
)
}
else
if
(
dialect
===
'postgres'
)
{
// When the test is run with only it produces:
// Error: Error: Failed to authenticate for PostgresSQL. Please double check your settings.
// When its run with all the other tests it produces:
// Error: invalid port number: "99999"
expect
(
err
.
message
).
to
.
match
(
/invalid port number/
)
}
else
{
expect
(
err
.
message
).
to
.
match
(
/Failed to authenticate/
)
...
...
@@ -713,7 +717,7 @@ describe(Support.getTestDialectTeaser("Sequelize"), function () {
it
(
"doesn't save an instance if value is not in the range of enums"
,
function
(
done
)
{
this
.
Review
.
create
({
status
:
'fnord'
}).
error
(
function
(
err
)
{
expect
(
err
).
to
.
be
.
instanceOf
(
Error
);
expect
(
err
.
status
).
to
.
deep
.
equal
([
'Value "fnord" for ENUM status is out of allowed scope. Allowed values: scheduled, active, finished'
]
)
expect
(
err
.
status
[
0
].
message
).
to
.
equal
(
'Value "fnord" for ENUM status is out of allowed scope. Allowed values: scheduled, active, finished'
)
done
()
})
})
...
...
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