Просмотр исходного кода

Add an acceptance test to check the preview endpoint doesn't time out.

This endpoint needs a lot more testing.
Shane Kilkelly 11 лет назад
Родитель
Сommit
297ad78b1e
1 измененных файлов с 11 добавлено и 0 удалено
  1. 11 0
      services/filestore/test/acceptence/coffee/SendingFileTest.coffee

+ 11 - 0
services/filestore/test/acceptence/coffee/SendingFileTest.coffee

@@ -112,3 +112,14 @@ describe "Filestore", ->
 					request.get newFileUrl, (err, response, body)=>
 						body.should.equal @constantFileContent
 						done()
+
+		describe "getting the preview image", ->
+
+			beforeEach ->
+				@fileUrl = @fileUrl + '?style=preview&cacheWarm=true'
+
+			it "should not time out", (done) ->
+				@timeout(1000 * 20)
+				request.get @fileUrl, (err, response, body) =>
+					expect(response).to.not.equal null
+					done()