Skip to content
This repository was archived by the owner on Sep 28, 2020. It is now read-only.

Commit c667541

Browse files
peternewnhamMoOx
authored andcommitted
Fixed: ignore cache when eslint rules have changed (#151)
* Fixed: ignore cache when eslint rules have changed * Update cache test with new test runner
1 parent 40567da commit c667541

File tree

3 files changed

+73
-3
lines changed

3 files changed

+73
-3
lines changed

index.js

+18-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ var objectHash = require("object-hash")
88
var os = require("os")
99

1010
var engines = {}
11+
var rules = {}
1112
var cache = null
1213
var cachePath = null
1314

@@ -29,25 +30,39 @@ function lint(input, config, webpack) {
2930
resourcePath = resourcePath.substr(cwd.length + 1)
3031
}
3132

33+
// get engine
34+
var configHash = objectHash(config)
35+
var engine = engines[configHash]
36+
var rulesHash = rules[configHash]
37+
3238
var res
3339
// If cache is enable and the data are the same as in the cache, just
3440
// use them
3541
if (config.cache) {
42+
// just get rules hash once per engine for performance reasons
43+
if (!rulesHash) {
44+
rulesHash = objectHash(engine.getConfigForFile(resourcePath))
45+
rules[configHash] = rulesHash
46+
}
3647
var inputMD5 = crypto.createHash("md5").update(input).digest("hex")
37-
if (cache[resourcePath] && cache[resourcePath].hash === inputMD5) {
48+
if (
49+
cache[resourcePath] &&
50+
cache[resourcePath].hash === inputMD5 &&
51+
cache[resourcePath].rules === rulesHash
52+
) {
3853
res = cache[resourcePath].res
3954
}
4055
}
4156

4257
// Re-lint the text if the cache off or miss
4358
if (!res) {
44-
var configHash = objectHash(config)
45-
res = engines[configHash].executeOnText(input, resourcePath, true)
59+
res = engine.executeOnText(input, resourcePath, true)
4660

4761
// Save new results in the cache
4862
if (config.cache) {
4963
cache[resourcePath] = {
5064
hash: inputMD5,
65+
rules: rulesHash,
5166
res: res,
5267
}
5368
fs.writeFileSync(cachePath, JSON.stringify(cache))

test/cache.js

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
var test = require("ava")
2+
var webpack = require("webpack")
3+
var conf = require("./utils/conf")
4+
var fs = require("fs")
5+
6+
var cacheFilePath = "./node_modules/.cache/eslint-loader/data.json"
7+
8+
test.cb("eslint-loader can cache results", function(t) {
9+
t.plan(2)
10+
webpack(conf(
11+
{
12+
entry: "./test/fixtures/cache.js",
13+
},
14+
{
15+
cache: true,
16+
}
17+
),
18+
function(err) {
19+
if (err) {
20+
throw err
21+
}
22+
23+
fs.readFile(cacheFilePath, "utf8", function(err, contents) {
24+
if (err) {
25+
t.fail("expected cache file to have been created")
26+
}
27+
else {
28+
t.pass("cache file has been created")
29+
30+
var contentsJson = JSON.parse(contents)
31+
t.deepEqual(
32+
Object.keys(contentsJson["test/fixtures/cache.js"]),
33+
["hash", "rules", "res"],
34+
"cache values have been set for the linted file"
35+
)
36+
}
37+
38+
t.end()
39+
40+
})
41+
42+
})
43+
})
44+
45+
// delete the cache file once tests have completed
46+
test.after.always("teardown", function() {
47+
fs.unlinkSync(cacheFilePath)
48+
})

test/fixtures/cache.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"use strict"
2+
3+
function cacheIt() {
4+
return "cache"
5+
}
6+
7+
cacheIt()

0 commit comments

Comments
 (0)