codecombat/test/server/functional/file.spec.coffee

177 lines
5.9 KiB
CoffeeScript
Raw Normal View History

2014-02-03 15:55:09 -05:00
require '../common'
2014-01-03 13:32:13 -05:00
# Doesn't work on Travis. Need to figure out why, probably by having the
# url not depend on some external resource.
xdescribe '/file', ->
2014-01-03 13:32:13 -05:00
url = getURL('/file')
files = []
options = {
2014-06-30 22:16:26 -04:00
uri: url
json: {
# url: 'http://scotterickson.info/images/where-are-you.jpg'
url: 'http://fc07.deviantart.net/fs37/f/2008/283/5/1/Chu_Chu_Pikachu_by_angelishi.gif'
filename: 'where-are-you.jpg'
mimetype: 'image/jpeg'
description: 'None!'
}
}
filepath = 'tmp/file' # TODO Warning hard coded path !!!
jsonOptions= {
path: 'my_path'
postName: 'my_buffer'
filename: 'ittybitty.data'
mimetype: 'application/octet-stream'
description: 'rando-info'
# my_buffer_url: 'http://scotterickson.info/images/where-are-you.jpg'
my_buffer_url: 'http://fc07.deviantart.net/fs37/f/2008/283/5/1/Chu_Chu_Pikachu_by_angelishi.gif'
}
allowHeader = 'GET, POST'
it 'preparing test : deletes all the files first', (done) ->
2014-01-03 13:32:13 -05:00
dropGridFS ->
done()
it 'can\'t be created if invalid (property path is required)', (done) ->
func = (err, res, body) ->
expect(res.statusCode).toBe(422)
done()
2014-01-15 14:36:59 -05:00
loginAdmin ->
request.post(options, func)
it 'can be created by an admin', (done) ->
2014-01-03 13:32:13 -05:00
func = (err, res, body) ->
expect(res.statusCode).toBe(200)
expect(body._id).toBeDefined()
expect(body.filename).toBe(options.json.filename)
expect(body.contentType).toBe(options.json.mimetype)
expect(body.length).toBeDefined()
expect(body.uploadDate).toBeDefined()
expect(body.metadata).toBeDefined()
expect(body.metadata.name).toBeDefined()
expect(body.metadata.path).toBe(options.json.path)
expect(body.metadata.creator).toBeDefined()
expect(body.metadata.description).toBe(options.json.description)
expect(body.md5).toBeDefined()
2014-01-03 13:32:13 -05:00
files.push(body)
done()
options.json.path = filepath
2014-01-03 13:32:13 -05:00
request.post(options, func)
it 'can be read by an admin.', (done) ->
2014-06-30 22:16:26 -04:00
request.get {uri: url+'/'+files[0]._id}, (err, res) ->
2014-01-03 13:32:13 -05:00
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toBe(files[0].contentType)
2014-01-03 13:32:13 -05:00
done()
2014-01-03 13:32:13 -05:00
it 'returns 404 for missing files', (done) ->
id = '000000000000000000000000'
2014-06-30 22:16:26 -04:00
request.get {uri: url+'/'+id}, (err, res) ->
2014-01-03 13:32:13 -05:00
expect(res.statusCode).toBe(404)
done()
2014-01-03 13:32:13 -05:00
it 'returns 404 for invalid ids', (done) ->
2014-06-30 22:16:26 -04:00
request.get {uri: url+'/thiswillnotwork'}, (err, res) ->
2014-01-03 13:32:13 -05:00
expect(res.statusCode).toBe(404)
done()
it 'can be created directly with form parameters', (done) ->
options2 = {
2014-06-30 22:16:26 -04:00
uri: url
2014-01-03 13:32:13 -05:00
}
func = (err, res, body) ->
expect(res.statusCode).toBe(200)
body = JSON.parse(body)
expect(body._id).toBeDefined()
expect(body.filename).toBe(jsonOptions.filename)
expect(body.contentType).toBe(jsonOptions.mimetype)
expect(body.length).toBeDefined()
expect(body.uploadDate).toBeDefined()
expect(body.metadata).toBeDefined()
expect(body.metadata.name).toBeDefined()
expect(body.metadata.path).toBe(jsonOptions.path)
expect(body.metadata.creator).toBeDefined()
expect(body.metadata.description).toBe(jsonOptions.description)
expect(body.md5).toBeDefined()
2014-01-03 13:32:13 -05:00
files.push(body)
done()
2014-01-03 13:32:13 -05:00
# the only way I could figure out how to get request to do what I wanted...
r = request.post(options2, func)
2014-01-03 13:32:13 -05:00
form = r.form()
form.append('path', jsonOptions.path)
form.append('postName', jsonOptions.postName)
form.append('filename', jsonOptions.filename)
form.append('mimetype', jsonOptions.mimetype)
form.append('description', jsonOptions.description)
form.append('my_buffer', request(jsonOptions.my_buffer_url))
it 'created directly, can be read', (done) ->
2014-06-30 22:16:26 -04:00
request.get {uri: url+'/'+files[1]._id}, (err, res) ->
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toBe(files[1].contentType)
done()
2014-01-03 13:32:13 -05:00
it 'does not overwrite existing files', (done) ->
options.json.description = 'Face'
2014-01-03 13:32:13 -05:00
func = (err, res, body) ->
expect(res.statusCode).toBe(409)
collection = mongoose.connection.db.collection('media.files')
collection.find({}).toArray (err, results) ->
# ittybitty.data, and just one Where are you.jpg
expect(results.length).toBe(2)
for f in results
expect(f.metadata.description).not.toBe('Face')
done()
request.post(options, func)
it 'does overwrite existing files if force is true', (done) ->
2014-06-30 22:16:26 -04:00
options.json.force = 'true' # TODO ask why it's a string and not a boolean ?
2014-01-03 13:32:13 -05:00
func = (err, res, body) ->
expect(res.statusCode).toBe(200)
collection = mongoose.connection.db.collection('media.files')
collection.find({}).toArray (err, results) ->
# ittybitty.data, and just one Where are you.jpg
expect(results.length).toBe(2)
hit = false
for f in results
hit = true if f.metadata.description is 'Face'
expect(hit).toBe(true)
done()
request.post(options, func)
it ' can\'t be requested with HTTP PATCH method', (done) ->
2014-06-30 22:16:26 -04:00
request {method: 'patch', uri: url}, (err, res) ->
expect(res.statusCode).toBe(405)
expect(res.headers.allow).toBe(allowHeader)
done()
it ' can\'t be requested with HTTP PUT method', (done) ->
2014-06-30 22:16:26 -04:00
request.put {uri: url}, (err, res) ->
expect(res.statusCode).toBe(405)
expect(res.headers.allow).toBe(allowHeader)
done()
it ' can\'t be requested with HTTP HEAD method', (done) ->
2014-06-30 22:16:26 -04:00
request.head {uri: url}, (err, res) ->
expect(res.statusCode).toBe(405)
expect(res.headers.allow).toBe(allowHeader)
done()
it ' can\'t be requested with HTTP DEL method', (done) ->
2014-06-30 22:16:26 -04:00
request.del {uri: url}, (err, res) ->
expect(res.statusCode).toBe(405)
expect(res.headers.allow).toBe(allowHeader)
done()
# TODO: test server errors, see what they do