@@ -7,6 +7,16 @@ var http = require('http')
7
7
var request = require ( 'supertest' )
8
8
var zlib = require ( 'zlib' )
9
9
10
+ var describeHttp2 = describe . skip
11
+ try {
12
+ var http2 = require ( 'http2' )
13
+ describeHttp2 = describe
14
+ } catch ( err ) {
15
+ if ( err ) {
16
+ console . log ( 'http2 tests disabled.' )
17
+ }
18
+ }
19
+
10
20
var compression = require ( '..' )
11
21
12
22
/**
@@ -312,6 +322,41 @@ describe('compression()', function () {
312
322
. expect ( 200 , done )
313
323
} )
314
324
325
+ describeHttp2 ( 'http2' , function ( ) {
326
+ it ( 'should work with http2 server' , function ( done ) {
327
+ var server = createHttp2Server ( { threshold : 0 } , function ( req , res ) {
328
+ res . setHeader ( http2 . constants . HTTP2_HEADER_CONTENT_TYPE , 'text/plain' )
329
+ res . end ( 'hello, world' )
330
+ } )
331
+ server . on ( 'listening' , function ( ) {
332
+ var client = createHttp2Client ( server . address ( ) . port )
333
+ // using ES5 as Node.js <=4.0.0 does not have Computed Property Names
334
+ var reqHeaders = { }
335
+ reqHeaders [ http2 . constants . HTTP2_HEADER_ACCEPT_ENCODING ] = 'gzip'
336
+ var request = client . request ( reqHeaders )
337
+ request . on ( 'response' , function ( headers ) {
338
+ assert . strictEqual ( headers [ http2 . constants . HTTP2_HEADER_STATUS ] , 200 )
339
+ assert . strictEqual ( headers [ http2 . constants . HTTP2_HEADER_CONTENT_TYPE ] , 'text/plain' )
340
+ assert . strictEqual ( headers [ http2 . constants . HTTP2_HEADER_CONTENT_ENCODING ] , 'gzip' )
341
+ } )
342
+ var chunks = [ ]
343
+ request . on ( 'data' , function ( chunk ) {
344
+ chunks . push ( chunk )
345
+ } )
346
+ request . on ( 'end' , function ( ) {
347
+ closeHttp2 ( client , server , function ( ) {
348
+ zlib . gunzip ( Buffer . concat ( chunks ) , function ( err , data ) {
349
+ assert . ok ( ! err )
350
+ assert . strictEqual ( data . toString ( ) , 'hello, world' )
351
+ done ( )
352
+ } )
353
+ } )
354
+ } )
355
+ request . end ( )
356
+ } )
357
+ } )
358
+ } )
359
+
315
360
describe ( 'threshold' , function ( ) {
316
361
it ( 'should not compress responses below the threshold size' , function ( done ) {
317
362
var server = createServer ( { threshold : '1kb' } , function ( req , res ) {
@@ -835,6 +880,86 @@ describe('compression()', function () {
835
880
. end ( )
836
881
} )
837
882
} )
883
+
884
+ describe ( 'enforceEncoding' , function ( ) {
885
+ it ( 'should compress the provided encoding and not the default encoding' , function ( done ) {
886
+ var server = createServer ( { threshold : 0 , enforceEncoding : 'deflate' } , function ( req , res ) {
887
+ res . setHeader ( 'Content-Type' , 'text/plain' )
888
+ res . end ( 'hello, world' )
889
+ } )
890
+
891
+ request ( server )
892
+ . get ( '/' )
893
+ . set ( 'Accept-Encoding' , 'gzip' )
894
+ . expect ( 'Content-Encoding' , 'gzip' )
895
+ . expect ( 200 , 'hello, world' , done )
896
+ } )
897
+
898
+ it ( 'should not compress when enforceEncoding is identity' , function ( done ) {
899
+ var server = createServer ( { threshold : 0 , enforceEncoding : 'identity' } , function ( req , res ) {
900
+ res . setHeader ( 'Content-Type' , 'text/plain' )
901
+ res . end ( 'hello, world' )
902
+ } )
903
+
904
+ request ( server )
905
+ . get ( '/' )
906
+ . set ( 'Accept-Encoding' , '' )
907
+ . expect ( shouldNotHaveHeader ( 'Content-Encoding' ) )
908
+ . expect ( 200 , 'hello, world' , done )
909
+ } )
910
+
911
+ it ( 'should compress when enforceEncoding is gzip' , function ( done ) {
912
+ var server = createServer ( { threshold : 0 , enforceEncoding : 'gzip' } , function ( req , res ) {
913
+ res . setHeader ( 'Content-Type' , 'text/plain' )
914
+ res . end ( 'hello, world' )
915
+ } )
916
+
917
+ request ( server )
918
+ . get ( '/' )
919
+ . set ( 'Accept-Encoding' , '' )
920
+ . expect ( 'Content-Encoding' , 'gzip' )
921
+ . expect ( 200 , 'hello, world' , done )
922
+ } )
923
+
924
+ it ( 'should compress when enforceEncoding is deflate' , function ( done ) {
925
+ var server = createServer ( { threshold : 0 , enforceEncoding : 'deflate' } , function ( req , res ) {
926
+ res . setHeader ( 'Content-Type' , 'text/plain' )
927
+ res . end ( 'hello, world' )
928
+ } )
929
+
930
+ request ( server )
931
+ . get ( '/' )
932
+ . set ( 'Accept-Encoding' , '' )
933
+ . expect ( 'Content-Encoding' , 'deflate' )
934
+ . expect ( 200 , 'hello, world' , done )
935
+ } )
936
+
937
+ it ( 'should not compress when enforceEncoding is unknown' , function ( done ) {
938
+ var server = createServer ( { threshold : 0 , enforceEncoding : 'bogus' } , function ( req , res ) {
939
+ res . setHeader ( 'Content-Type' , 'text/plain' )
940
+ res . end ( 'hello, world' )
941
+ } )
942
+
943
+ request ( server )
944
+ . get ( '/' )
945
+ . set ( 'Accept-Encoding' , '' )
946
+ . expect ( shouldNotHaveHeader ( 'Content-Encoding' ) )
947
+ . expect ( 200 , 'hello, world' , done )
948
+ } )
949
+
950
+ it ( 'should be gzip if no accept-encoding is sent when enforceEncoding is *' , function ( done ) {
951
+ var server = createServer ( { threshold : 0 , enforceEncoding : '*' } , function ( req , res ) {
952
+ res . setHeader ( 'Content-Type' , 'text/plain' )
953
+ res . end ( 'hello, world' )
954
+ } )
955
+
956
+ request ( server )
957
+ . get ( '/' )
958
+ . set ( 'Accept-Encoding' , '' )
959
+ . expect ( 'Content-Encoding' , 'gzip' )
960
+ . expect ( 200 , 'hello, world' , done )
961
+ } )
962
+ } )
838
963
} )
839
964
840
965
function createServer ( opts , fn ) {
@@ -852,6 +977,47 @@ function createServer (opts, fn) {
852
977
} )
853
978
}
854
979
980
+ function createHttp2Server ( opts , fn ) {
981
+ var _compression = compression ( opts )
982
+ var server = http2 . createServer ( function ( req , res ) {
983
+ _compression ( req , res , function ( err ) {
984
+ if ( err ) {
985
+ res . statusCode = err . status || 500
986
+ res . end ( err . message )
987
+ return
988
+ }
989
+
990
+ fn ( req , res )
991
+ } )
992
+ } )
993
+ server . listen ( 0 , '127.0.0.1' )
994
+ return server
995
+ }
996
+
997
+ function createHttp2Client ( port ) {
998
+ return http2 . connect ( 'http://127.0.0.1:' + port )
999
+ }
1000
+
1001
+ function closeHttp2 ( client , server , callback ) {
1002
+ if ( typeof client . shutdown === 'function' ) {
1003
+ // this is the node v8.x way of closing the connections
1004
+ client . shutdown ( { } , function ( ) {
1005
+ server . close ( function ( ) {
1006
+ callback ( )
1007
+ } )
1008
+ } )
1009
+ } else {
1010
+ // this is the node v9.x onwards way of closing the connections
1011
+ client . close ( function ( ) {
1012
+ // force existing connections to time out after 1ms.
1013
+ // this is done to force the server to close in some cases where it wouldn't do it otherwise.
1014
+ server . close ( function ( ) {
1015
+ callback ( )
1016
+ } )
1017
+ } )
1018
+ }
1019
+ }
1020
+
855
1021
function shouldHaveBodyLength ( length ) {
856
1022
return function ( res ) {
857
1023
assert . strictEqual ( res . text . length , length , 'should have body length of ' + length )
0 commit comments