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 6ae3b957
authored
Nov 14, 2011
by
Sascha Depold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scoped validation tests
1 parent
99481ee5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
200 additions
and
200 deletions
spec/model.spec.js
spec/model.spec.js
View file @
6ae3b95
...
@@ -72,217 +72,217 @@ describe('Model', function() {
...
@@ -72,217 +72,217 @@ describe('Model', function() {
})
})
})
})
describe
(
'Model'
,
function
()
{
describe
(
'Validations'
,
function
()
{
var
checks
=
{
is
:
{
spec
:
{
args
:
[
/
[
a-z
]
/
,
'i'
]
},
fail
:
"0"
,
pass
:
"a"
}
,
not
:
{
spec
:
{
args
:
[
/
[
a-z
]
/
,
'i'
]
},
fail
:
"a"
,
pass
:
"0"
}
,
isEmail
:
{
fail
:
"a"
,
pass
:
"abc@abc.com"
}
,
isUrl
:
{
fail
:
"abc"
,
pass
:
"http://abc.com"
}
,
isIP
:
{
fail
:
"abc"
,
pass
:
"129.89.23.1"
}
,
isAlpha
:
{
fail
:
"012"
,
pass
:
"abc"
}
,
isAlphanumeric
:
{
fail
:
"_abc019"
,
pass
:
"abc019"
}
,
isNumeric
:
{
fail
:
"abc"
,
pass
:
"019"
}
,
isInt
:
{
fail
:
"9.2"
,
pass
:
"-9"
}
,
isLowercase
:
{
fail
:
"AB"
,
pass
:
"ab"
}
,
isUppercase
:
{
fail
:
"ab"
,
pass
:
"AB"
}
,
isDecimal
:
{
fail
:
"a"
,
pass
:
"0.2"
}
,
isFloat
:
{
fail
:
"a"
,
pass
:
"9.2"
}
,
notNull
:
{
fail
:
null
,
pass
:
0
}
,
isNull
:
{
fail
:
0
,
pass
:
null
}
,
notEmpty
:
{
fail
:
" "
,
pass
:
"a"
}
,
equals
:
{
spec
:
{
args
:
"bla bla bla"
},
fail
:
"bla"
,
pass
:
"bla bla bla"
}
,
contains
:
{
spec
:
{
args
:
"bla"
},
fail
:
"la"
,
pass
:
"0bla23"
}
,
notContains
:
{
spec
:
{
args
:
"bla"
},
fail
:
"0bla23"
,
pass
:
"la"
}
,
regex
:
{
spec
:
{
args
:
[
/
[
a-z
]
/
,
'i'
]
},
fail
:
"0"
,
pass
:
"a"
}
,
notRegex
:
{
spec
:
{
args
:
[
/
[
a-z
]
/
,
'i'
]
},
fail
:
"a"
,
pass
:
"0"
}
,
len
:
{
spec
:
{
args
:
[
2
,
4
]
},
fail
:
[
"1"
,
"12345"
],
pass
:
[
"12"
,
"123"
,
"1234"
],
raw
:
true
}
,
isUUID
:
{
spec
:
{
args
:
4
},
fail
:
"f47ac10b-58cc-3372-a567-0e02b2c3d479"
,
pass
:
"f47ac10b-58cc-4372-a567-0e02b2c3d479"
}
,
isDate
:
{
fail
:
"not a date"
,
pass
:
"2011-02-04"
}
,
isAfter
:
{
spec
:
{
args
:
"2011-11-05"
},
fail
:
"2011-11-04"
,
pass
:
"2011-11-05"
}
,
isBefore
:
{
spec
:
{
args
:
"2011-11-05"
},
fail
:
"2011-11-06"
,
pass
:
"2011-11-05"
}
,
isIn
:
{
spec
:
{
args
:
"abcdefghijk"
},
fail
:
"ghik"
,
pass
:
"ghij"
}
,
notIn
:
{
spec
:
{
args
:
"abcdefghijk"
},
fail
:
"ghij"
,
pass
:
"ghik"
}
,
max
:
{
spec
:
{
args
:
23
},
fail
:
"24"
,
pass
:
"23"
}
,
min
:
{
spec
:
{
args
:
23
},
fail
:
"22"
,
pass
:
"23"
}
,
isArray
:
{
fail
:
22
,
pass
:
[
22
]
}
,
isCreditCard
:
{
fail
:
"401288888888188f"
,
pass
:
"4012888888881881"
}
};
var
User
,
i
;
describe
(
'Model Validation'
,
function
()
{
it
(
'should correctly validate according to supplied rules'
,
function
()
{
var
checks
=
{
Helpers
.
async
(
function
(
done
)
{
is
:
{
for
(
var
validator
in
checks
)
{
spec
:
{
args
:
[
/
[
a-z
]
/
,
'i'
]
},
if
(
checks
.
hasOwnProperty
(
validator
))
{
fail
:
"0"
,
// build spec
pass
:
"a"
var
v
=
{};
}
v
[
validator
]
=
checks
[
validator
].
hasOwnProperty
(
"spec"
)
?
checks
[
validator
].
spec
:
{};
,
not
:
{
spec
:
{
args
:
[
/
[
a-z
]
/
,
'i'
]
},
fail
:
"a"
,
pass
:
"0"
}
,
isEmail
:
{
fail
:
"a"
,
pass
:
"abc@abc.com"
}
,
isUrl
:
{
fail
:
"abc"
,
pass
:
"http://abc.com"
}
,
isIP
:
{
fail
:
"abc"
,
pass
:
"129.89.23.1"
}
,
isAlpha
:
{
fail
:
"012"
,
pass
:
"abc"
}
,
isAlphanumeric
:
{
fail
:
"_abc019"
,
pass
:
"abc019"
}
,
isNumeric
:
{
fail
:
"abc"
,
pass
:
"019"
}
,
isInt
:
{
fail
:
"9.2"
,
pass
:
"-9"
}
,
isLowercase
:
{
fail
:
"AB"
,
pass
:
"ab"
}
,
isUppercase
:
{
fail
:
"ab"
,
pass
:
"AB"
}
,
isDecimal
:
{
fail
:
"a"
,
pass
:
"0.2"
}
,
isFloat
:
{
fail
:
"a"
,
pass
:
"9.2"
}
,
notNull
:
{
fail
:
null
,
pass
:
0
}
,
isNull
:
{
fail
:
0
,
pass
:
null
}
,
notEmpty
:
{
fail
:
" "
,
pass
:
"a"
}
,
equals
:
{
spec
:
{
args
:
"bla bla bla"
},
fail
:
"bla"
,
pass
:
"bla bla bla"
}
,
contains
:
{
spec
:
{
args
:
"bla"
},
fail
:
"la"
,
pass
:
"0bla23"
}
,
notContains
:
{
spec
:
{
args
:
"bla"
},
fail
:
"0bla23"
,
pass
:
"la"
}
,
regex
:
{
spec
:
{
args
:
[
/
[
a-z
]
/
,
'i'
]
},
fail
:
"0"
,
pass
:
"a"
}
,
notRegex
:
{
spec
:
{
args
:
[
/
[
a-z
]
/
,
'i'
]
},
fail
:
"a"
,
pass
:
"0"
}
,
len
:
{
spec
:
{
args
:
[
2
,
4
]
},
fail
:
[
"1"
,
"12345"
],
pass
:
[
"12"
,
"123"
,
"1234"
],
raw
:
true
}
,
isUUID
:
{
spec
:
{
args
:
4
},
fail
:
"f47ac10b-58cc-3372-a567-0e02b2c3d479"
,
pass
:
"f47ac10b-58cc-4372-a567-0e02b2c3d479"
}
,
isDate
:
{
fail
:
"not a date"
,
pass
:
"2011-02-04"
}
,
isAfter
:
{
spec
:
{
args
:
"2011-11-05"
},
fail
:
"2011-11-04"
,
pass
:
"2011-11-05"
}
,
isBefore
:
{
spec
:
{
args
:
"2011-11-05"
},
fail
:
"2011-11-06"
,
pass
:
"2011-11-05"
}
,
isIn
:
{
spec
:
{
args
:
"abcdefghijk"
},
fail
:
"ghik"
,
pass
:
"ghij"
}
,
notIn
:
{
spec
:
{
args
:
"abcdefghijk"
},
fail
:
"ghij"
,
pass
:
"ghik"
}
,
max
:
{
spec
:
{
args
:
23
},
fail
:
"24"
,
pass
:
"23"
}
,
min
:
{
spec
:
{
args
:
23
},
fail
:
"22"
,
pass
:
"23"
}
,
isArray
:
{
fail
:
22
,
pass
:
[
22
]
}
,
isCreditCard
:
{
fail
:
"401288888888188f"
,
pass
:
"4012888888881881"
}
};
var
User
,
i
;
it
(
'should correctly validate according to supplied rules'
,
function
()
{
Helpers
.
async
(
function
(
done
)
{
for
(
var
validator
in
checks
)
{
if
(
checks
.
hasOwnProperty
(
validator
))
{
// build spec
var
v
=
{};
v
[
validator
]
=
checks
[
validator
].
hasOwnProperty
(
"spec"
)
?
checks
[
validator
].
spec
:
{};
var
check
=
checks
[
validator
];
var
check
=
checks
[
validator
];
// test for failure
// test for failure
if
(
!
check
.
hasOwnProperty
(
"raw"
))
if
(
!
check
.
hasOwnProperty
(
"raw"
))
check
.
fail
=
new
Array
(
check
.
fail
);
check
.
fail
=
new
Array
(
check
.
fail
);
for
(
i
=
0
;
i
<
check
.
fail
.
length
;
++
i
)
{
for
(
i
=
0
;
i
<
check
.
fail
.
length
;
++
i
)
{
v
[
validator
].
msg
=
validator
+
"("
+
check
.
fail
[
i
]
+
")"
;
v
[
validator
].
msg
=
validator
+
"("
+
check
.
fail
[
i
]
+
")"
;
// define user
// define user
User
=
sequelize
.
define
(
'User'
+
Math
.
random
(),
{
User
=
sequelize
.
define
(
'User'
+
Math
.
random
(),
{
name
:
{
name
:
{
type
:
Sequelize
.
STRING
,
type
:
Sequelize
.
STRING
,
validate
:
v
validate
:
v
}
}
});
});
var
u_fail
=
User
.
build
({
var
u_fail
=
User
.
build
({
name
:
check
.
fail
[
i
]
name
:
check
.
fail
[
i
]
});
});
var
errors
=
u_fail
.
validate
();
var
errors
=
u_fail
.
validate
();
expect
(
errors
).
toNotBe
(
null
);
expect
(
errors
).
toNotBe
(
null
);
expect
(
errors
).
toEqual
({
expect
(
errors
).
toEqual
({
name
:
[
v
[
validator
].
msg
]
name
:
[
v
[
validator
].
msg
]
});
});
}
}
// test for success
// test for success
if
(
!
check
.
hasOwnProperty
(
"raw"
))
if
(
!
check
.
hasOwnProperty
(
"raw"
))
check
.
pass
=
new
Array
(
check
.
pass
);
check
.
pass
=
new
Array
(
check
.
pass
);
for
(
i
=
0
;
i
<
check
.
pass
.
length
;
++
i
)
{
for
(
i
=
0
;
i
<
check
.
pass
.
length
;
++
i
)
{
v
[
validator
].
msg
=
validator
+
"("
+
check
.
pass
[
i
]
+
")"
;
v
[
validator
].
msg
=
validator
+
"("
+
check
.
pass
[
i
]
+
")"
;
// define user
// define user
User
=
sequelize
.
define
(
'User'
+
Math
.
random
(),
{
User
=
sequelize
.
define
(
'User'
+
Math
.
random
(),
{
name
:
{
name
:
{
type
:
Sequelize
.
STRING
,
type
:
Sequelize
.
STRING
,
validate
:
v
validate
:
v
}
}
});
});
var
u_success
=
User
.
build
({
var
u_success
=
User
.
build
({
name
:
check
.
pass
[
i
]
name
:
check
.
pass
[
i
]
});
});
expect
(
u_success
.
validate
()).
toBe
(
null
);
expect
(
u_success
.
validate
()).
toBe
(
null
);
}
}
}
}
}
// for each check
}
// for each check
done
();
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