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

satisfytest.js « test « http-cache-semantics « node_modules « make-fetch-happen « node_modules « npm-profile « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3131ee73d05c391dde0d84c404b55723e5453971 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
'use strict';

const assert = require('assert');
const CachePolicy = require('..');

describe('Satisfies', function() {
    it('when URLs match', function() {
        const policy = new CachePolicy({url:'/',headers:{}}, {status:200,headers:{'cache-control':'max-age=2'}});
        assert(policy.satisfiesWithoutRevalidation({url:'/',headers:{}}));
    });

    it('when expires is present', function() {
        const policy = new CachePolicy({headers:{}}, {status:302,headers:{'expires':new Date(Date.now()+2000).toGMTString()}});
        assert(policy.satisfiesWithoutRevalidation({headers:{}}));
    });

    it('not when URLs mismatch', function() {
        const policy = new CachePolicy({url:'/foo',headers:{}}, {status:200,headers:{'cache-control':'max-age=2'}});
        assert(!policy.satisfiesWithoutRevalidation({url:'/foo?bar',headers:{}}));
    });

    it('when methods match', function() {
        const policy = new CachePolicy({method:'GET',headers:{}}, {status:200,headers:{'cache-control':'max-age=2'}});
        assert(policy.satisfiesWithoutRevalidation({method:'GET',headers:{}}));
    });

    it('not when hosts mismatch', function() {
        const policy = new CachePolicy({headers:{'host':'foo'}}, {status:200,headers:{'cache-control':'max-age=2'}});
        assert(policy.satisfiesWithoutRevalidation({headers:{'host':'foo'}}));
        assert(!policy.satisfiesWithoutRevalidation({headers:{'host':'foofoo'}}));
    });

    it('when methods match HEAD', function() {
        const policy = new CachePolicy({method:'HEAD',headers:{}}, {status:200,headers:{'cache-control':'max-age=2'}});
        assert(policy.satisfiesWithoutRevalidation({method:'HEAD',headers:{}}));
    });

    it('not when methods mismatch', function() {
        const policy = new CachePolicy({method:'POST',headers:{}}, {status:200,headers:{'cache-control':'max-age=2'}});
        assert(!policy.satisfiesWithoutRevalidation({method:'GET',headers:{}}));
    });

    it('not when methods mismatch HEAD', function() {
        const policy = new CachePolicy({method:'HEAD',headers:{}}, {status:200,headers:{'cache-control':'max-age=2'}});
        assert(!policy.satisfiesWithoutRevalidation({method:'GET',headers:{}}));
    });

    it('not when proxy revalidating', function() {
        const policy = new CachePolicy({headers:{}}, {status:200,headers:{'cache-control':'max-age=2, proxy-revalidate '}});
        assert(!policy.satisfiesWithoutRevalidation({headers:{}}));
    });

    it('when not a proxy revalidating', function() {
        const policy = new CachePolicy({headers:{}}, {status:200,headers:{'cache-control':'max-age=2, proxy-revalidate '}}, {shared:false});
        assert(policy.satisfiesWithoutRevalidation({headers:{}}));
    });

    it('not when no-cache requesting', function() {
        const policy = new CachePolicy({headers:{}}, {headers:{'cache-control':'max-age=2'}});
        assert(policy.satisfiesWithoutRevalidation({headers:{'cache-control':'fine'}}));
        assert(!policy.satisfiesWithoutRevalidation({headers:{'cache-control':'no-cache'}}));
        assert(!policy.satisfiesWithoutRevalidation({headers:{'pragma':'no-cache'}}));
    });
});