Skip to content

Commit dfdc557

Browse files
author
Ashley Baldwin-Hunter
committed
Merge pull request #92 from codeclimate/abh-fingerprints
Fix fingerprint bug - don't use num occurrences
2 parents 53d93f6 + 5d986d6 commit dfdc557

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

lib/cc/engine/analyzers/violation.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def fingerprint
8686
digest << "-"
8787
digest << current_sexp.mass.to_s
8888
digest << "-"
89-
digest << occurrences.to_s
89+
digest << check_name
9090
digest.to_s
9191
end
9292

spec/cc/engine/analyzers/javascript/main_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
{"path" => "foo.js", "lines" => { "begin" => 3, "end" => 3} }
3434
])
3535
expect(json["content"]["body"]).to match /This issue has a mass of `11`/
36-
expect(json["fingerprint"]).to eq("55ae5d0990647ef496e9e0d315f9727d")
36+
expect(json["fingerprint"]).to eq("c4d29200c20d02297c6f550ad2c87c15")
3737
end
3838

3939
it "prints an issue for similar code" do
@@ -61,7 +61,7 @@
6161
{"path" => "foo.js", "lines" => { "begin" => 3, "end" => 3} }
6262
])
6363
expect(json["content"]["body"]).to match /This issue has a mass of `11`/
64-
expect(json["fingerprint"]).to eq("55ae5d0990647ef496e9e0d315f9727d")
64+
expect(json["fingerprint"]).to eq("d9dab8e4607e2a74da3b9eefb49eacec")
6565
end
6666

6767
it "skips unparsable files" do

spec/cc/engine/analyzers/php/main_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
{"path" => "foo.php", "lines" => { "begin" => 10, "end" => 14} },
4646
])
4747
expect(json["content"]["body"]).to match /This issue has a mass of `11`/
48-
expect(json["fingerprint"]).to eq("667da0e2bab866aa2fe9d014a65d57d9")
48+
expect(json["fingerprint"]).to eq("8234e10d96fd6ef608085c22c91c9ab1")
4949
end
5050

5151
it "runs against complex files" do

spec/cc/engine/analyzers/python/main_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
{"path" => "foo.py", "lines" => { "begin" => 3, "end" => 3} }
3333
])
3434
expect(json["content"]["body"]).to match /This issue has a mass of `6`/
35-
expect(json["fingerprint"]).to eq("42b832387c997f54a2012efb2159aefc")
35+
expect(json["fingerprint"]).to eq("3f3d34361bcaef98839d9da6ca9fcee4")
3636
end
3737

3838
it "prints an issue for similar code" do
@@ -60,7 +60,7 @@
6060
{"path" => "foo.py", "lines" => { "begin" => 3, "end" => 3} }
6161
])
6262
expect(json["content"]["body"]).to match /This issue has a mass of `6`/
63-
expect(json["fingerprint"]).to eq("42b832387c997f54a2012efb2159aefc")
63+
expect(json["fingerprint"]).to eq("019118ceed60bf40b35aad581aae1b02")
6464
end
6565

6666

spec/cc/engine/analyzers/ruby/main_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module CC::Engine::Analyzers
4444
{"path" => "foo.rb", "lines" => { "begin" => 9, "end" => 13} },
4545
])
4646
expect(json["content"]["body"]).to match /This issue has a mass of `18`/
47-
expect(json["fingerprint"]).to eq("f21b75bbd135ec3ae6638364d5c73762")
47+
expect(json["fingerprint"]).to eq("b7e46d8f5164922678e48942e26100f2")
4848
end
4949

5050
it "creates an issue for each occurrence of the duplicated code" do

spec/cc/engine/analyzers/violations_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module CC::Engine::Analyzers
4343
{ :path => "file.rb", :lines => { :begin => 9, :end => 13} },
4444
{ :path => "file.rb", :lines => { :begin => 17, :end => 21} },
4545
])
46-
expect(first_formatted[:fingerprint]).to eq("c2712b56bff2becf4ae2a8469e1171c7")
46+
expect(first_formatted[:fingerprint]).to eq("f52d2f61a77c569513f8b6314a00d013")
4747

4848
expect(second_formatted[:location]).to eq({:path=>"file.rb", :lines=>{:begin=>9, :end=>13}})
4949
expect(second_formatted[:other_locations]).to eq([

0 commit comments

Comments
 (0)