mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
We can now run all test on the server.
99 tests, 220 assertions, 13 failures 2 tests are disabled in file.spec.coffee because they cause a fatal error.
This commit is contained in:
parent
e888c4c305
commit
e20408c248
3 changed files with 33 additions and 11 deletions
|
@ -8,7 +8,27 @@ describe '/file', ->
|
|||
dropGridFS ->
|
||||
done()
|
||||
|
||||
it 'posts good', (done) ->
|
||||
|
||||
it 'no admin users can\'t post files', (done) ->
|
||||
options = {
|
||||
uri:url
|
||||
json: {
|
||||
url: 'http://scotterickson.info/images/where-are-you.jpg'
|
||||
filename: 'where-are-you.jpg'
|
||||
mimetype: 'image/jpeg'
|
||||
description: 'None!'
|
||||
}
|
||||
}
|
||||
|
||||
func = (err, res, body) ->
|
||||
expect(res.statusCode).toBe(403)
|
||||
expect(body.metadata).toBeUndefined()
|
||||
done()
|
||||
|
||||
request.post(options, func)
|
||||
|
||||
# FIXME fatal error
|
||||
xit 'posts good', (done) ->
|
||||
options = {
|
||||
uri:url
|
||||
json: {
|
||||
|
@ -50,7 +70,8 @@ describe '/file', ->
|
|||
expect(res.statusCode).toBe(404)
|
||||
done()
|
||||
|
||||
it 'posts data directly', (done) ->
|
||||
# FIXME fatal error
|
||||
xit 'posts data directly', (done) ->
|
||||
options = {
|
||||
uri:url
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ describe 'LevelSystem', ->
|
|||
|
||||
it 'can make a LevelSystem, without setting official.', (done) ->
|
||||
loginJoe (joe) ->
|
||||
request.post {uri:url, json:system}, (err, res, body) ->
|
||||
request.post {uri:url, json:systems}, (err, res, body) ->
|
||||
expect(res.statusCode).toBe(200)
|
||||
expect(body.official).toBeUndefined()
|
||||
systems[0] = body
|
||||
|
|
|
@ -81,7 +81,8 @@ describe 'PUT /db/user', ->
|
|||
done()
|
||||
form = req.form()
|
||||
form.append('_id', joe.id)
|
||||
form.append('email', "farghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghl")
|
||||
form.append('email', "farghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlar
|
||||
ghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghlfarghlarghl")
|
||||
|
||||
it 'logs in as admin', (done) ->
|
||||
loginAdmin -> done()
|
||||
|
|
Loading…
Reference in a new issue