Welcome to mirror list, hosted at ThFree Co, Russian Federation.

request-gzip-content.js « test « npm-registry-client « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79c2e8dc02eef2d4192f60198274ad3bb7b2a653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
var zlib = require("zlib")
var tap = require("tap")

var server = require("./lib/server.js")
var common = require("./lib/common.js")
var client = common.freshClient({
  "fetch-retries"          : 1,
  "fetch-retry-mintimeout" : 10,
  "fetch-retry-maxtimeout" : 100
})

var TEST_URL = "http://localhost:1337/some-package-gzip/1.2.3"

var pkg = {
  _id: "some-package-gzip@1.2.3",
  name: "some-package-gzip",
  version: "1.2.3"
}

zlib.gzip(JSON.stringify(pkg), function (err, pkgGzip) {
  tap.test("request gzip package content", function (t) {
    server.expect("GET", "/some-package-gzip/1.2.3", function (req, res) {
      res.statusCode = 200
      res.setHeader("Content-Encoding", "gzip");
      res.setHeader("Content-Type", "application/json");
      res.end(pkgGzip)
    })

    client.get(TEST_URL, null, function (er, data) {
      if (er) throw er
      t.deepEqual(data, pkg)
      t.end()
    })
  })

  tap.test("request wrong gzip package content", function (t) {
    server.expect("GET", "/some-package-gzip-error/1.2.3", function (req, res) {
      res.statusCode = 200
      res.setHeader("Content-Encoding", "gzip")
      res.setHeader("Content-Type", "application/json")
      res.end(new Buffer("wrong gzip content"))
    })

    client.get(TEST_URL, null, function (er) {
      t.ok(er)
      t.end()
    })
  })
});