|
19 | 19 |
|
20 | 20 | var compression = require('..')
|
21 | 21 |
|
| 22 | +/** |
| 23 | + * @const |
| 24 | + * whether current node version has brotli support |
| 25 | + */ |
| 26 | +var hasBrotliSupport = 'createBrotliCompress' in zlib |
| 27 | +var brotli = hasBrotliSupport ? it : it.skip |
| 28 | + |
22 | 29 | describe('compression()', function () {
|
23 | 30 | it('should skip HEAD', function (done) {
|
24 | 31 | var server = createServer({ threshold: 0 }, function (req, res) {
|
@@ -510,6 +517,52 @@ describe('compression()', function () {
|
510 | 517 | })
|
511 | 518 | })
|
512 | 519 |
|
| 520 | + describe('when "Accept-Encoding: br"', function () { |
| 521 | + brotli('should respond with br', function (done) { |
| 522 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 523 | + res.setHeader('Content-Type', 'text/plain') |
| 524 | + res.end('hello, world') |
| 525 | + }) |
| 526 | + |
| 527 | + request(server) |
| 528 | + .get('/') |
| 529 | + .set('Accept-Encoding', 'br') |
| 530 | + .expect('Content-Encoding', 'br', done) |
| 531 | + }) |
| 532 | + }) |
| 533 | + |
| 534 | + describe('when "Accept-Encoding: br" and passing compression level', function () { |
| 535 | + brotli('should respond with br', function (done) { |
| 536 | + var params = {} |
| 537 | + params[zlib.constants.BROTLI_PARAM_QUALITY] = 11 |
| 538 | + |
| 539 | + var server = createServer({ threshold: 0, brotli: { params: params } }, function (req, res) { |
| 540 | + res.setHeader('Content-Type', 'text/plain') |
| 541 | + res.end('hello, world') |
| 542 | + }) |
| 543 | + |
| 544 | + request(server) |
| 545 | + .get('/') |
| 546 | + .set('Accept-Encoding', 'br') |
| 547 | + .expect('Content-Encoding', 'br', done) |
| 548 | + }) |
| 549 | + |
| 550 | + brotli('shouldn\'t break compression when gzip is requested', function (done) { |
| 551 | + var params = {} |
| 552 | + params[zlib.constants.BROTLI_PARAM_QUALITY] = 8 |
| 553 | + |
| 554 | + var server = createServer({ threshold: 0, brotli: { params: params } }, function (req, res) { |
| 555 | + res.setHeader('Content-Type', 'text/plain') |
| 556 | + res.end('hello, world') |
| 557 | + }) |
| 558 | + |
| 559 | + request(server) |
| 560 | + .get('/') |
| 561 | + .set('Accept-Encoding', 'gzip') |
| 562 | + .expect('Content-Encoding', 'gzip', done) |
| 563 | + }) |
| 564 | + }) |
| 565 | + |
513 | 566 | describe('when "Accept-Encoding: gzip, deflate"', function () {
|
514 | 567 | it('should respond with gzip', function (done) {
|
515 | 568 | var server = createServer({ threshold: 0 }, function (req, res) {
|
@@ -538,6 +591,105 @@ describe('compression()', function () {
|
538 | 591 | })
|
539 | 592 | })
|
540 | 593 |
|
| 594 | + describe('when "Accept-Encoding: gzip, br"', function () { |
| 595 | + var brotli = hasBrotliSupport ? it : it.skip |
| 596 | + brotli('should respond with br', function (done) { |
| 597 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 598 | + res.setHeader('Content-Type', 'text/plain') |
| 599 | + res.end('hello, world') |
| 600 | + }) |
| 601 | + |
| 602 | + request(server) |
| 603 | + .get('/') |
| 604 | + .set('Accept-Encoding', 'gzip, br') |
| 605 | + .expect('Content-Encoding', 'br', done) |
| 606 | + }) |
| 607 | + |
| 608 | + brotli = hasBrotliSupport ? it.skip : it |
| 609 | + |
| 610 | + brotli('should respond with gzip', function (done) { |
| 611 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 612 | + res.setHeader('Content-Type', 'text/plain') |
| 613 | + res.end('hello, world') |
| 614 | + }) |
| 615 | + |
| 616 | + request(server) |
| 617 | + .get('/') |
| 618 | + .set('Accept-Encoding', 'br, gzip') |
| 619 | + .expect('Content-Encoding', 'gzip', done) |
| 620 | + }) |
| 621 | + }) |
| 622 | + |
| 623 | + describe('when "Accept-Encoding: deflate, gzip, br"', function () { |
| 624 | + brotli('should respond with br', function (done) { |
| 625 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 626 | + res.setHeader('Content-Type', 'text/plain') |
| 627 | + res.end('hello, world') |
| 628 | + }) |
| 629 | + |
| 630 | + request(server) |
| 631 | + .get('/') |
| 632 | + .set('Accept-Encoding', 'deflate, gzip, br') |
| 633 | + .expect('Content-Encoding', 'br', done) |
| 634 | + }) |
| 635 | + }) |
| 636 | + |
| 637 | + describe('when "Accept-Encoding: gzip;q=1, br;q=0.3"', function () { |
| 638 | + brotli('should respond with gzip', function (done) { |
| 639 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 640 | + res.setHeader('Content-Type', 'text/plain') |
| 641 | + res.end('hello, world') |
| 642 | + }) |
| 643 | + |
| 644 | + request(server) |
| 645 | + .get('/') |
| 646 | + .set('Accept-Encoding', 'gzip;q=1, br;q=0.3') |
| 647 | + .expect('Content-Encoding', 'gzip', done) |
| 648 | + }) |
| 649 | + }) |
| 650 | + |
| 651 | + describe('when "Accept-Encoding: gzip, br;q=0.8"', function () { |
| 652 | + brotli('should respond with gzip', function (done) { |
| 653 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 654 | + res.setHeader('Content-Type', 'text/plain') |
| 655 | + res.end('hello, world') |
| 656 | + }) |
| 657 | + |
| 658 | + request(server) |
| 659 | + .get('/') |
| 660 | + .set('Accept-Encoding', 'gzip, br;q=0.8') |
| 661 | + .expect('Content-Encoding', 'gzip', done) |
| 662 | + }) |
| 663 | + }) |
| 664 | + |
| 665 | + describe('when "Accept-Encoding: gzip;q=0.001"', function () { |
| 666 | + brotli('should respond with gzip', function (done) { |
| 667 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 668 | + res.setHeader('Content-Type', 'text/plain') |
| 669 | + res.end('hello, world') |
| 670 | + }) |
| 671 | + |
| 672 | + request(server) |
| 673 | + .get('/') |
| 674 | + .set('Accept-Encoding', 'gzip;q=0.001') |
| 675 | + .expect('Content-Encoding', 'gzip', done) |
| 676 | + }) |
| 677 | + }) |
| 678 | + |
| 679 | + describe('when "Accept-Encoding: deflate, br"', function () { |
| 680 | + brotli('should respond with br', function (done) { |
| 681 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 682 | + res.setHeader('Content-Type', 'text/plain') |
| 683 | + res.end('hello, world') |
| 684 | + }) |
| 685 | + |
| 686 | + request(server) |
| 687 | + .get('/') |
| 688 | + .set('Accept-Encoding', 'deflate, br') |
| 689 | + .expect('Content-Encoding', 'br', done) |
| 690 | + }) |
| 691 | + }) |
| 692 | + |
541 | 693 | describe('when "Cache-Control: no-transform" response header', function () {
|
542 | 694 | it('should not compress response', function (done) {
|
543 | 695 | var server = createServer({ threshold: 0 }, function (req, res) {
|
@@ -676,6 +828,32 @@ describe('compression()', function () {
|
676 | 828 | .end()
|
677 | 829 | })
|
678 | 830 |
|
| 831 | + brotli('should flush small chunks for brotli', function (done) { |
| 832 | + var chunks = 0 |
| 833 | + var next |
| 834 | + var server = createServer({ threshold: 0 }, function (req, res) { |
| 835 | + next = writeAndFlush(res, 2, Buffer.from('..')) |
| 836 | + res.setHeader('Content-Type', 'text/plain') |
| 837 | + next() |
| 838 | + }) |
| 839 | + |
| 840 | + function onchunk (chunk) { |
| 841 | + assert.ok(chunks++ < 20) |
| 842 | + assert.strictEqual(chunk.toString(), '..') |
| 843 | + next() |
| 844 | + } |
| 845 | + |
| 846 | + request(server) |
| 847 | + .get('/') |
| 848 | + .set('Accept-Encoding', 'br') |
| 849 | + .request() |
| 850 | + .on('response', unchunk('br', onchunk, function (err) { |
| 851 | + if (err) return done(err) |
| 852 | + server.close(done) |
| 853 | + })) |
| 854 | + .end() |
| 855 | + }) |
| 856 | + |
679 | 857 | it('should flush small chunks for deflate', function (done) {
|
680 | 858 | var chunks = 0
|
681 | 859 | var next
|
@@ -756,6 +934,19 @@ describe('compression()', function () {
|
756 | 934 | .expect(200, 'hello, world', done)
|
757 | 935 | })
|
758 | 936 |
|
| 937 | + brotli('should compress when enforceEncoding is brotli', function (done) { |
| 938 | + var server = createServer({ threshold: 0, enforceEncoding: 'br' }, 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('Content-Encoding', 'br') |
| 947 | + .expect(200, done) |
| 948 | + }) |
| 949 | + |
759 | 950 | it('should not compress when enforceEncoding is unknown', function (done) {
|
760 | 951 | var server = createServer({ threshold: 0, enforceEncoding: 'bogus' }, function (req, res) {
|
761 | 952 | res.setHeader('Content-Type', 'text/plain')
|
@@ -876,6 +1067,9 @@ function unchunk (encoding, onchunk, onend) {
|
876 | 1067 | case 'gzip':
|
877 | 1068 | stream = res.pipe(zlib.createGunzip())
|
878 | 1069 | break
|
| 1070 | + case 'br': |
| 1071 | + stream = res.pipe(zlib.createBrotliDecompress()) |
| 1072 | + break |
879 | 1073 | }
|
880 | 1074 |
|
881 | 1075 | stream.on('data', onchunk)
|
|
0 commit comments