91 lines
2.5 KiB
JavaScript
91 lines
2.5 KiB
JavaScript
// META: global=window,worker
|
|
// META: title=NoVarySearch HTTP Cache
|
|
// META: timeout=long
|
|
// META: script=/common/utils.js
|
|
// META: script=/common/get-host-info.sub.js
|
|
// META: script=http-cache.js
|
|
/*
|
|
NOTE for testing No-Vary-Search-Header:
|
|
- If `params` is set to true, `expect=("dispatch" "uuid")` must be specified.
|
|
Otherwise:
|
|
- The same HTTP Cache will be used by other tests, which are supposed
|
|
to be distinguished by uuid.
|
|
- The test utility cannot get the server's states because UA will use the HTTP
|
|
Cache instead of sending a new request to server to ask for the latest state.
|
|
- Do not test not_cached cases and cached cases within one test. Test infra
|
|
checks the number of requests and responses without considering if the
|
|
previous responses should be served from cache or not.
|
|
*/
|
|
var tests = [
|
|
{
|
|
name: "When params is set to true, URL differs only by their parameters (other than `dispatch` and `uuid`) should not be cached as different entries.",
|
|
requests: [
|
|
{
|
|
url_params: "a=1&b=2",
|
|
response_headers: [
|
|
["Cache-Control", "max-age=10000"],
|
|
["No-Vary-Search", "params, except=(\"dispatch\" \"uuid\")"],
|
|
],
|
|
},
|
|
{
|
|
expected_type: "cached"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: "Ground truth: When key-order is not set, URLs should be compared in an order-sensitive way.",
|
|
requests: [
|
|
{
|
|
url_params: "a=1&b=2",
|
|
response_headers: [
|
|
["Cache-Control", "max-age=10000"],
|
|
],
|
|
},
|
|
{
|
|
url_params: "b=2&a=1",
|
|
expected_type: "not_cached"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: "When key-order is set , URLs should be compared in an order-insensitive way. Matched cases:",
|
|
requests: [
|
|
{
|
|
url_params: "a=1&b=2",
|
|
response_headers: [
|
|
["Cache-Control", "max-age=10000"],
|
|
["No-Vary-Search", "key-order"],
|
|
],
|
|
},
|
|
{
|
|
url_params: "b=2&a=1",
|
|
expected_type: "cached"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: "When key-order is set , URLs should be compared in an order-insensitive way. Not matched cases",
|
|
requests: [
|
|
{
|
|
url_params: "a=1&b=2",
|
|
response_headers: [
|
|
["Cache-Control", "max-age=10000"],
|
|
["No-Vary-Search", "key-order"],
|
|
],
|
|
},
|
|
{
|
|
url_params: "b=2",
|
|
expected_type: "not_cached"
|
|
},
|
|
{
|
|
url_params: "a=2&b=2",
|
|
expected_type: "not_cached"
|
|
},
|
|
{
|
|
url_params: "a=1&b=2&c=3",
|
|
expected_type: "not_cached"
|
|
}
|
|
]
|
|
}
|
|
];
|
|
run_tests(tests);
|