rferraz-metric_fu 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/HISTORY +237 -0
- data/MIT-LICENSE +22 -0
- data/README +29 -0
- data/Rakefile +18 -0
- data/TODO +6 -0
- data/lib/base/base_template.rb +172 -0
- data/lib/base/churn_analyzer.rb +38 -0
- data/lib/base/code_issue.rb +97 -0
- data/lib/base/configuration.rb +199 -0
- data/lib/base/flay_analyzer.rb +50 -0
- data/lib/base/flog_analyzer.rb +43 -0
- data/lib/base/generator.rb +166 -0
- data/lib/base/graph.rb +44 -0
- data/lib/base/line_numbers.rb +74 -0
- data/lib/base/location.rb +85 -0
- data/lib/base/md5_tracker.rb +52 -0
- data/lib/base/metric_analyzer.rb +404 -0
- data/lib/base/ranking.rb +34 -0
- data/lib/base/rcov_analyzer.rb +43 -0
- data/lib/base/reek_analyzer.rb +163 -0
- data/lib/base/report.rb +108 -0
- data/lib/base/roodi_analyzer.rb +37 -0
- data/lib/base/saikuro_analyzer.rb +48 -0
- data/lib/base/scoring_strategies.rb +29 -0
- data/lib/base/stats_analyzer.rb +37 -0
- data/lib/base/table.rb +102 -0
- data/lib/generators/churn.rb +28 -0
- data/lib/generators/flay.rb +31 -0
- data/lib/generators/flog.rb +111 -0
- data/lib/generators/hotspots.rb +52 -0
- data/lib/generators/rails_best_practices.rb +53 -0
- data/lib/generators/rcov.rb +122 -0
- data/lib/generators/reek.rb +81 -0
- data/lib/generators/roodi.rb +35 -0
- data/lib/generators/saikuro.rb +256 -0
- data/lib/generators/stats.rb +58 -0
- data/lib/graphs/engines/bluff.rb +113 -0
- data/lib/graphs/engines/gchart.rb +157 -0
- data/lib/graphs/flay_grapher.rb +18 -0
- data/lib/graphs/flog_grapher.rb +57 -0
- data/lib/graphs/grapher.rb +11 -0
- data/lib/graphs/rails_best_practices_grapher.rb +19 -0
- data/lib/graphs/rcov_grapher.rb +18 -0
- data/lib/graphs/reek_grapher.rb +30 -0
- data/lib/graphs/roodi_grapher.rb +18 -0
- data/lib/graphs/stats_grapher.rb +20 -0
- data/lib/metric_fu.rb +40 -0
- data/lib/templates/awesome/awesome_template.rb +73 -0
- data/lib/templates/awesome/churn.html.erb +58 -0
- data/lib/templates/awesome/css/buttons.css +82 -0
- data/lib/templates/awesome/css/default.css +91 -0
- data/lib/templates/awesome/css/integrity.css +334 -0
- data/lib/templates/awesome/css/reset.css +7 -0
- data/lib/templates/awesome/css/syntax.css +19 -0
- data/lib/templates/awesome/flay.html.erb +34 -0
- data/lib/templates/awesome/flog.html.erb +55 -0
- data/lib/templates/awesome/hotspots.html.erb +62 -0
- data/lib/templates/awesome/index.html.erb +34 -0
- data/lib/templates/awesome/layout.html.erb +30 -0
- data/lib/templates/awesome/rails_best_practices.html.erb +27 -0
- data/lib/templates/awesome/rcov.html.erb +42 -0
- data/lib/templates/awesome/reek.html.erb +40 -0
- data/lib/templates/awesome/roodi.html.erb +27 -0
- data/lib/templates/awesome/saikuro.html.erb +71 -0
- data/lib/templates/awesome/stats.html.erb +51 -0
- data/lib/templates/javascripts/bluff-min.js +1 -0
- data/lib/templates/javascripts/excanvas.js +35 -0
- data/lib/templates/javascripts/js-class.js +1 -0
- data/lib/templates/standard/churn.html.erb +31 -0
- data/lib/templates/standard/default.css +64 -0
- data/lib/templates/standard/flay.html.erb +34 -0
- data/lib/templates/standard/flog.html.erb +57 -0
- data/lib/templates/standard/hotspots.html.erb +54 -0
- data/lib/templates/standard/index.html.erb +41 -0
- data/lib/templates/standard/rails_best_practices.html.erb +29 -0
- data/lib/templates/standard/rcov.html.erb +43 -0
- data/lib/templates/standard/reek.html.erb +42 -0
- data/lib/templates/standard/roodi.html.erb +29 -0
- data/lib/templates/standard/saikuro.html.erb +84 -0
- data/lib/templates/standard/standard_template.rb +26 -0
- data/lib/templates/standard/stats.html.erb +55 -0
- data/spec/base/base_template_spec.rb +177 -0
- data/spec/base/configuration_spec.rb +276 -0
- data/spec/base/generator_spec.rb +223 -0
- data/spec/base/graph_spec.rb +61 -0
- data/spec/base/line_numbers_spec.rb +62 -0
- data/spec/base/md5_tracker_spec.rb +57 -0
- data/spec/base/report_spec.rb +146 -0
- data/spec/generators/churn_spec.rb +41 -0
- data/spec/generators/flay_spec.rb +105 -0
- data/spec/generators/flog_spec.rb +70 -0
- data/spec/generators/rails_best_practices_spec.rb +52 -0
- data/spec/generators/rcov_spec.rb +180 -0
- data/spec/generators/reek_spec.rb +134 -0
- data/spec/generators/roodi_spec.rb +24 -0
- data/spec/generators/saikuro_spec.rb +74 -0
- data/spec/generators/stats_spec.rb +74 -0
- data/spec/graphs/engines/bluff_spec.rb +19 -0
- data/spec/graphs/engines/gchart_spec.rb +156 -0
- data/spec/graphs/flay_grapher_spec.rb +56 -0
- data/spec/graphs/flog_grapher_spec.rb +108 -0
- data/spec/graphs/rails_best_practices_grapher_spec.rb +61 -0
- data/spec/graphs/rcov_grapher_spec.rb +56 -0
- data/spec/graphs/reek_grapher_spec.rb +65 -0
- data/spec/graphs/roodi_grapher_spec.rb +56 -0
- data/spec/graphs/stats_grapher_spec.rb +68 -0
- data/spec/resources/line_numbers/foo.rb +33 -0
- data/spec/resources/line_numbers/module.rb +11 -0
- data/spec/resources/line_numbers/module_surrounds_class.rb +15 -0
- data/spec/resources/line_numbers/two_classes.rb +11 -0
- data/spec/resources/saikuro/app/controllers/sessions_controller.rb_cyclo.html +10 -0
- data/spec/resources/saikuro/app/controllers/users_controller.rb_cyclo.html +16 -0
- data/spec/resources/saikuro/index_cyclo.html +155 -0
- data/spec/resources/saikuro_sfiles/thing.rb_cyclo.html +11 -0
- data/spec/resources/yml/20090630.yml +7922 -0
- data/spec/resources/yml/metric_missing.yml +1 -0
- data/spec/spec.opts +6 -0
- data/spec/spec_helper.rb +7 -0
- data/tasks/metric_fu.rake +22 -0
- metadata +448 -0
@@ -0,0 +1,54 @@
|
|
1
|
+
<h3>Hotspot Results</h3>
|
2
|
+
<p>Meta analysis of your metrics to find hotspots in your code.</p>
|
3
|
+
<br/>
|
4
|
+
|
5
|
+
<% if !@hotspots || @hotspots.size == 0 %>
|
6
|
+
No Hotspots were found.
|
7
|
+
<% elsif @hotspots && @hotspots.size > 0 %>
|
8
|
+
|
9
|
+
<% granularities = [:files, :classes, :methods] %>
|
10
|
+
<table>
|
11
|
+
<tr valign="top">
|
12
|
+
<% granularities.each do |granularity| %>
|
13
|
+
<th width='33%'>
|
14
|
+
<%= granularity.to_s.capitalize %></th>
|
15
|
+
<% end %>
|
16
|
+
</tr>
|
17
|
+
|
18
|
+
<% items = [] %>
|
19
|
+
<% granularities.each_index do |index| %>
|
20
|
+
<% granularity = granularities[index] %>
|
21
|
+
<% items << @hotspots[granularity] %>
|
22
|
+
<% end %>
|
23
|
+
|
24
|
+
<% items_length = 0 %>
|
25
|
+
<% columns = [0, 1, 2] %>
|
26
|
+
<% while (items_length < items[0].length || items_length < items[1].length || items_length < items[2].length) do %>
|
27
|
+
<tr valign="top">
|
28
|
+
<% columns.each do |column| %>
|
29
|
+
<% item = items[column].length >= items_length ? items[column][items_length] : nil %>
|
30
|
+
<% if item %>
|
31
|
+
<td>
|
32
|
+
<b>
|
33
|
+
<%= display_location(item[:location], nil) %>
|
34
|
+
</b>
|
35
|
+
<br/><br/>
|
36
|
+
<!-- TODO HOTSPOTS for metric fu nice metric_link method -->
|
37
|
+
<% item[:details].each do |metric, info| %>
|
38
|
+
<%#= metric_link(@stat, metric, h(metric.to_s.capitalize)) + ": " + h(info)%><br/>
|
39
|
+
<%= "#{metric.to_s.capitalize}: #{info}" %><br/>
|
40
|
+
<% end %>
|
41
|
+
</td>
|
42
|
+
<% else %>
|
43
|
+
<td> </td>
|
44
|
+
<% end %>
|
45
|
+
<% end %>
|
46
|
+
<% items_length += 1 %>
|
47
|
+
</tr>
|
48
|
+
<% end %>
|
49
|
+
|
50
|
+
</table>
|
51
|
+
<% end %>
|
52
|
+
|
53
|
+
|
54
|
+
<p>Generated on <%= Time.now.localtime %></p>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Metric Fu Results</title>
|
4
|
+
<style>
|
5
|
+
<%= inline_css("default.css") %>
|
6
|
+
</style>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
<h1>Metric Fu Results</h1>
|
11
|
+
<% if @churn %>
|
12
|
+
<p><a href="churn.html">Churn report</a></p>
|
13
|
+
<% end %>
|
14
|
+
<% if @flay %>
|
15
|
+
<p><a href="flay.html">Flay report</a></p>
|
16
|
+
<% end %>
|
17
|
+
<% if @flog %>
|
18
|
+
<p><a href="flog.html">Flog report</a></p>
|
19
|
+
<% end %>
|
20
|
+
<% if @rcov %>
|
21
|
+
<p><a href="rcov.html">Rcov report</a></p>
|
22
|
+
<% end %>
|
23
|
+
<% if @reek %>
|
24
|
+
<p><a href="reek.html">Reek report</a></p>
|
25
|
+
<% end %>
|
26
|
+
<% if @roodi %>
|
27
|
+
<p><a href="roodi.html">Roodi report</a></p>
|
28
|
+
<% end %>
|
29
|
+
<% if @saikuro %>
|
30
|
+
<p><a href="saikuro.html">Saikuro report</a></p>
|
31
|
+
<% end %>
|
32
|
+
<% if @stats %>
|
33
|
+
<p><a href="stats.html">Stats report</a></p>
|
34
|
+
<% end %>
|
35
|
+
<% if @rails_best_practices %>
|
36
|
+
<p><a href="rails_best_practices.html">Rails Best Practices report</a></p>
|
37
|
+
<% end %>
|
38
|
+
<p>Generated on <%= Time.now.localtime %></p>
|
39
|
+
</body>
|
40
|
+
</html>
|
41
|
+
|
@@ -0,0 +1,29 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Rails Best Practices Results</title>
|
4
|
+
<style>
|
5
|
+
<%= inline_css("default.css") %>
|
6
|
+
</style>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
<h1>Rails Best Practices Results</h1>
|
11
|
+
<a href="index.html">back to menu</a>
|
12
|
+
<p><a href="http://github.com/flyerhzm/rails_best_practices">rails_best_practices</a> checks quality of rails app files according to ihower’s presentation from Kungfu RailsConf in Shanghai China.</p>
|
13
|
+
<table>
|
14
|
+
<tr>
|
15
|
+
<th>File Path</th>
|
16
|
+
<th>Warning</th>
|
17
|
+
</tr>
|
18
|
+
<% count = 0 %>
|
19
|
+
<% @rails_best_practices[:problems].each do |problem| %>
|
20
|
+
<tr class='<%= cycle("light", "dark", count) %>'>
|
21
|
+
<td><%= problem[:file] %>:<%= problem[:line] %></td>
|
22
|
+
<td><%= problem[:problem] %></td>
|
23
|
+
</tr>
|
24
|
+
<% count += 1 %>
|
25
|
+
<% end %>
|
26
|
+
</table>
|
27
|
+
<p>Generated on <%= Time.now.localtime %></p>
|
28
|
+
</body>
|
29
|
+
</html>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Rcov Code Coverage Results</title>
|
4
|
+
<style>
|
5
|
+
<%= inline_css("default.css") %>
|
6
|
+
</style>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
<h1>Rcov Code Coverage Results</h1>
|
11
|
+
<a href="index.html">back to menu</a>
|
12
|
+
<p>C0 code coverage information.</p>
|
13
|
+
<p>Total Coverage: <%= @rcov.delete(:global_percent_run) %>% </p>
|
14
|
+
<table>
|
15
|
+
<tr>
|
16
|
+
<th>File Path</th>
|
17
|
+
<th>Percent run</th>
|
18
|
+
</tr>
|
19
|
+
<% count = 0 %>
|
20
|
+
<% @rcov.sort_by{|k,v| v[:percent_run]}.each do |e| %>
|
21
|
+
<tr>
|
22
|
+
<td><a href="#<%= e[0].gsub(/[^a-z]+/, '_') %>"><%= e[0] %></a></td>
|
23
|
+
<td><%= e[1][:percent_run] %></td>
|
24
|
+
</tr>
|
25
|
+
<% count += 1 %>
|
26
|
+
<% end %>
|
27
|
+
</table>
|
28
|
+
|
29
|
+
<% @rcov.each_pair do |fname, file| %>
|
30
|
+
<h2 id="<%= fname.gsub(/[^a-z]+/, '_') %>"> <%= fname %></h2>
|
31
|
+
<table class="rcov_code">
|
32
|
+
<% file[:lines].each do |line| %>
|
33
|
+
<tr>
|
34
|
+
<% css_class = line[:was_run] ? "rcov_run" : "rcov_not_run" %>
|
35
|
+
<td class="<%= css_class %>"><pre><%= line[:content] %></pre></td>
|
36
|
+
</tr>
|
37
|
+
<% end %>
|
38
|
+
</table>
|
39
|
+
<% end %>
|
40
|
+
<p>Generated on <%= Time.now.localtime %></p>
|
41
|
+
</body>
|
42
|
+
</html>
|
43
|
+
|
@@ -0,0 +1,42 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Reek Results</title>
|
4
|
+
<style>
|
5
|
+
<%= inline_css("default.css") %>
|
6
|
+
</style>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
<h1>Reek Results</h1>
|
11
|
+
<a href="index.html">back to menu</a>
|
12
|
+
<p><a href="http://reek.rubyforge.org/">Reek</a> detects common code smells in ruby code.</p>
|
13
|
+
<table>
|
14
|
+
<tr>
|
15
|
+
<th>File Path</th>
|
16
|
+
<th>Method</th>
|
17
|
+
<th>Description</th>
|
18
|
+
<th>Type</th>
|
19
|
+
</tr>
|
20
|
+
<% count = 0 %>
|
21
|
+
<% @reek[:matches].each do |match| %>
|
22
|
+
<% match[:code_smells].each do |smell| %>
|
23
|
+
<tr class='<%= cycle("light", "dark", count) %>'>
|
24
|
+
<td><%= match[:file_path] %></td>
|
25
|
+
<td>
|
26
|
+
<%= smell[:method] %>
|
27
|
+
</td>
|
28
|
+
<td>
|
29
|
+
<%= smell[:message] %>
|
30
|
+
</td>
|
31
|
+
<td>
|
32
|
+
<%= smell[:type] %>
|
33
|
+
</td>
|
34
|
+
</tr>
|
35
|
+
<% count += 1 %>
|
36
|
+
<% end %>
|
37
|
+
<% end %>
|
38
|
+
|
39
|
+
</table>
|
40
|
+
<p>Generated on <%= Time.now.localtime %></p>
|
41
|
+
</body>
|
42
|
+
</html>
|
@@ -0,0 +1,29 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Roodi Results</title>
|
4
|
+
<style>
|
5
|
+
<%= inline_css("default.css") %>
|
6
|
+
</style>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
<h1>Roodi Results</h1>
|
11
|
+
<a href="index.html">back to menu</a>
|
12
|
+
<p><a href="http://roodi.rubyforge.org/">Roodi</a> parses your Ruby code and warns you about design issues you have based on the checks that is has configured.</p>
|
13
|
+
<table>
|
14
|
+
<tr>
|
15
|
+
<th>File Path</th>
|
16
|
+
<th>Warning</th>
|
17
|
+
</tr>
|
18
|
+
<% count = 0 %>
|
19
|
+
<% @roodi[:problems].each do |problem| %>
|
20
|
+
<tr class='<%= cycle("light", "dark", count) %>'>
|
21
|
+
<td><%= problem[:file] %>:<%= problem[:line] %></td>
|
22
|
+
<td><%= problem[:problem] %></td>
|
23
|
+
</tr>
|
24
|
+
<% count += 1 %>
|
25
|
+
<% end %>
|
26
|
+
</table>
|
27
|
+
<p>Generated on <%= Time.now.localtime %></p>
|
28
|
+
</body>
|
29
|
+
</html>
|
@@ -0,0 +1,84 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Saikuro Results</title>
|
4
|
+
<style>
|
5
|
+
<%= inline_css("default.css") %>
|
6
|
+
</style>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
<h1>Saikuro Results</h1>
|
11
|
+
<a href="index.html">back to menu</a>
|
12
|
+
<p><a href='http://saikuro.rubyforge.org/'>Saikuro</a> analyzes ruby code for cyclomatic complexity.</p>
|
13
|
+
|
14
|
+
<h2>Analyzed Methods</h2>
|
15
|
+
<table>
|
16
|
+
<tr>
|
17
|
+
<th>Method Name</th>
|
18
|
+
<th>Complexity</th>
|
19
|
+
<th># Lines</th>
|
20
|
+
</tr>
|
21
|
+
<% @saikuro[:methods].each do |method| %>
|
22
|
+
<tr>
|
23
|
+
<td><%= method[:name] %></td>
|
24
|
+
<td><%= method[:complexity] %></td>
|
25
|
+
<td><%= method[:lines] %></td>
|
26
|
+
</tr>
|
27
|
+
<% end %>
|
28
|
+
</table>
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
<h2>Analyzed Classes</h2>
|
33
|
+
<table>
|
34
|
+
<tr>
|
35
|
+
<th>Class Name</th>
|
36
|
+
<th>Complexity</th>
|
37
|
+
<th># Lines</th>
|
38
|
+
</tr>
|
39
|
+
<% @saikuro[:classes].each do |klass| %>
|
40
|
+
<tr>
|
41
|
+
<td><%= klass[:name] %></td>
|
42
|
+
<td><%= klass[:complexity] %></td>
|
43
|
+
<td><%= klass[:lines] %></td>
|
44
|
+
</tr>
|
45
|
+
<% end %>
|
46
|
+
</table>
|
47
|
+
|
48
|
+
|
49
|
+
<h2>Analyzed Files</h2>
|
50
|
+
<% @saikuro[:files].each do |file| %>
|
51
|
+
<% file[:classes].each do |klass| %>
|
52
|
+
<% if !klass[:methods].empty? %>
|
53
|
+
<h3><%= file[:filename] %></h3>
|
54
|
+
<h4>Class : <%= klass[:class_name] %></h4>
|
55
|
+
<h5>Total complexity : <%= klass[:complexity] %></h5>
|
56
|
+
<h5>Total lines : <%= klass[:lines] %></h5>
|
57
|
+
<table>
|
58
|
+
<tr>
|
59
|
+
<th>Method</th>
|
60
|
+
<th>Complexity</th>
|
61
|
+
<th># Lines</th>
|
62
|
+
</tr>
|
63
|
+
<% klass[:methods].each do |method| %>
|
64
|
+
<tr>
|
65
|
+
<td>
|
66
|
+
<%= method[:name] %>
|
67
|
+
</td>
|
68
|
+
<td>
|
69
|
+
<%= method[:complexity] %>
|
70
|
+
</td>
|
71
|
+
<td>
|
72
|
+
<%= method[:lines] %>
|
73
|
+
</td>
|
74
|
+
</tr>
|
75
|
+
<% end %>
|
76
|
+
</table>
|
77
|
+
<% end %>
|
78
|
+
<% end %>
|
79
|
+
<% end %>
|
80
|
+
|
81
|
+
<p>Generated on <%= Time.now.localtime %></p>
|
82
|
+
</body>
|
83
|
+
</html>
|
84
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
class StandardTemplate < MetricFu::Template
|
2
|
+
|
3
|
+
|
4
|
+
def write
|
5
|
+
report.each_pair do |section, contents|
|
6
|
+
if template_exists?(section)
|
7
|
+
create_instance_var(section, contents)
|
8
|
+
html = erbify(section)
|
9
|
+
fn = output_filename(section)
|
10
|
+
MetricFu.report.save_output(html, MetricFu.output_directory, fn)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
# Instance variables we need should already be created from above
|
15
|
+
if template_exists?('index')
|
16
|
+
html = erbify('index')
|
17
|
+
fn = output_filename('index')
|
18
|
+
MetricFu.report.save_output(html, MetricFu.output_directory, fn)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def this_directory
|
23
|
+
File.dirname(__FILE__)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Rake Stats Results</title>
|
4
|
+
<style>
|
5
|
+
<%= inline_css("default.css") %>
|
6
|
+
</style>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
<h1>Rake Stats Results</h1>
|
11
|
+
<a href="index.html">back to menu</a>
|
12
|
+
<p>Rails rake stats results.</p>
|
13
|
+
<table>
|
14
|
+
<tr>
|
15
|
+
<th>Lines of Code</th>
|
16
|
+
<th>Lines of Test</th>
|
17
|
+
<th>Code to test ratio</th>
|
18
|
+
</tr>
|
19
|
+
<tr>
|
20
|
+
<td><%= @stats[:codeLOC] %></td>
|
21
|
+
<td><%= @stats[:testLOC] %></td>
|
22
|
+
<td>1:<%= @stats[:code_to_test_ratio] %></td>
|
23
|
+
</tr>
|
24
|
+
</table>
|
25
|
+
|
26
|
+
<table>
|
27
|
+
<tr>
|
28
|
+
<th>Name</th>
|
29
|
+
<th>Lines</th>
|
30
|
+
<th>LOC</th>
|
31
|
+
<th>Classes</th>
|
32
|
+
<th>Methods</th>
|
33
|
+
<th>Methods per class</th>
|
34
|
+
<th>LOC per method</th>
|
35
|
+
</tr>
|
36
|
+
<% count = 0 %>
|
37
|
+
<% @stats[:lines].each do |line| %>
|
38
|
+
<tr>
|
39
|
+
<td><%= line[:name] %></td>
|
40
|
+
<td><%= line[:lines] %></td>
|
41
|
+
<td><%= line[:loc] %></td>
|
42
|
+
<td><%= line[:classes] %></td>
|
43
|
+
<td><%= line[:methods] %></td>
|
44
|
+
<td><%= line[:methods_per_class] %></td>
|
45
|
+
<td><%= line[:loc_per_method] %></td>
|
46
|
+
</tr>
|
47
|
+
<% count += 1 %>
|
48
|
+
<% end %>
|
49
|
+
</table>
|
50
|
+
|
51
|
+
<p>Generated on <%= Time.now.localtime %></p>
|
52
|
+
</body>
|
53
|
+
</html>
|
54
|
+
|
55
|
+
|
@@ -0,0 +1,177 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")
|
2
|
+
require 'erb'
|
3
|
+
|
4
|
+
describe MetricFu::Template do
|
5
|
+
|
6
|
+
before(:each) do
|
7
|
+
@template = Template.new
|
8
|
+
end
|
9
|
+
|
10
|
+
describe "#erbify" do
|
11
|
+
it 'should evaluate a erb doc' do
|
12
|
+
section = 'section'
|
13
|
+
File.stub!(:read).and_return('foo')
|
14
|
+
erb = mock('erb')
|
15
|
+
erb.should_receive(:result)
|
16
|
+
ERB.should_receive(:new).with('foo').and_return(erb)
|
17
|
+
@template.should_receive(:template).and_return('foo')
|
18
|
+
@template.send(:erbify, section)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "#template_exists? " do
|
23
|
+
|
24
|
+
before(:each) do
|
25
|
+
@section = mock('section')
|
26
|
+
@template.should_receive(:template).
|
27
|
+
with(@section).and_return(@section)
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'if the template exists' do
|
31
|
+
it 'should return true' do
|
32
|
+
File.should_receive(:exist?).with(@section).and_return(true)
|
33
|
+
result = @template.send(:template_exists?, @section)
|
34
|
+
result.should be_true
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe 'if the template does not exist' do
|
39
|
+
it 'should return false' do
|
40
|
+
File.should_receive(:exist?).with(@section).and_return(false)
|
41
|
+
result = @template.send(:template_exists?, @section)
|
42
|
+
result.should be_false
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe "#create_instance_var" do
|
48
|
+
it 'should set an instance variable with the passed contents' do
|
49
|
+
section = 'section'
|
50
|
+
contents = 'contents'
|
51
|
+
@template.send(:create_instance_var, section, contents)
|
52
|
+
@template.instance_variable_get(:@section).should == contents
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe "#template" do
|
57
|
+
it 'should generate the filename of the template file' do
|
58
|
+
section = mock('section')
|
59
|
+
section.should_receive(:to_s).and_return('section')
|
60
|
+
@template.should_receive(:this_directory).and_return('dir')
|
61
|
+
result = @template.send(:template, section)
|
62
|
+
result.should == "dir/section.html.erb"
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe "#output_filename" do
|
67
|
+
it 'should generate the filename of the output file' do
|
68
|
+
section = mock('section')
|
69
|
+
section.should_receive(:to_s).and_return('section')
|
70
|
+
result = @template.send(:output_filename, section)
|
71
|
+
result.should == "section.html"
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe "#inline_css" do
|
76
|
+
it 'should return the contents of a css file' do
|
77
|
+
css = 'mycss.css'
|
78
|
+
@template.should_receive(:this_directory).and_return('dir')
|
79
|
+
io = mock('io', :read => "css contents")
|
80
|
+
@template.should_receive(:open).and_yield(io)
|
81
|
+
result = @template.send(:inline_css, css)
|
82
|
+
result.should == 'css contents'
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
describe "#link_to_filename " do
|
87
|
+
describe "when on OS X" do
|
88
|
+
before(:each) do
|
89
|
+
config = mock("configuration")
|
90
|
+
config.stub!(:platform).and_return('universal-darwin-9.0')
|
91
|
+
config.stub!(:darwin_txmt_protocol_no_thanks).and_return(false)
|
92
|
+
MetricFu.stub!(:configuration).and_return(config)
|
93
|
+
end
|
94
|
+
|
95
|
+
it 'should return a textmate protocol link' do
|
96
|
+
File.stub!(:expand_path).with('filename').and_return('/expanded/filename')
|
97
|
+
result = @template.send(:link_to_filename, 'filename')
|
98
|
+
result.should eql("<a href='txmt://open/?url=file://" \
|
99
|
+
+ "/expanded/filename'>filename</a>")
|
100
|
+
end
|
101
|
+
|
102
|
+
it "should do the right thing with a filename that starts with a slash" do
|
103
|
+
File.stub!(:expand_path).with('filename').and_return('/expanded/filename')
|
104
|
+
result = @template.send(:link_to_filename, '/filename')
|
105
|
+
result.should eql("<a href='txmt://open/?url=file://" \
|
106
|
+
+ "/expanded/filename'>/filename</a>")
|
107
|
+
end
|
108
|
+
|
109
|
+
it "should include a line number" do
|
110
|
+
File.stub!(:expand_path).with('filename').and_return('/expanded/filename')
|
111
|
+
result = @template.send(:link_to_filename, 'filename', 6)
|
112
|
+
result.should eql("<a href='txmt://open/?url=file://" \
|
113
|
+
+ "/expanded/filename&line=6'>filename:6</a>")
|
114
|
+
end
|
115
|
+
|
116
|
+
describe "but no thanks for txtmt" do
|
117
|
+
before(:each) do
|
118
|
+
config = mock("configuration")
|
119
|
+
config.stub!(:platform).and_return('universal-darwin-9.0')
|
120
|
+
config.stub!(:darwin_txmt_protocol_no_thanks).and_return(true)
|
121
|
+
MetricFu.stub!(:configuration).and_return(config)
|
122
|
+
File.should_receive(:expand_path).and_return('filename')
|
123
|
+
end
|
124
|
+
|
125
|
+
it "should return a file protocol link" do
|
126
|
+
name = "filename"
|
127
|
+
result = @template.send(:link_to_filename, name)
|
128
|
+
result.should == "<a href='file://filename'>filename</a>"
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
describe "and given link text" do
|
133
|
+
it "should use the submitted link text" do
|
134
|
+
File.stub!(:expand_path).with('filename').and_return('/expanded/filename')
|
135
|
+
result = @template.send(:link_to_filename, 'filename', 6, 'link content')
|
136
|
+
result.should eql("<a href='txmt://open/?url=file://" \
|
137
|
+
+ "/expanded/filename&line=6'>link content</a>")
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
describe "when on other platforms" do
|
143
|
+
before(:each) do
|
144
|
+
config = mock("configuration")
|
145
|
+
config.should_receive(:platform).and_return('other')
|
146
|
+
config.stub!(:darwin_txmt_protocol_no_thanks).and_return(false)
|
147
|
+
MetricFu.stub!(:configuration).and_return(config)
|
148
|
+
File.should_receive(:expand_path).and_return('filename')
|
149
|
+
end
|
150
|
+
|
151
|
+
it 'should return a file protocol link' do
|
152
|
+
name = "filename"
|
153
|
+
result = @template.send(:link_to_filename, name)
|
154
|
+
result.should == "<a href='file://filename'>filename</a>"
|
155
|
+
end
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
describe "#cycle" do
|
160
|
+
it 'should return the first_value passed if iteration passed is even' do
|
161
|
+
first_val = "first"
|
162
|
+
second_val = "second"
|
163
|
+
iter = 2
|
164
|
+
result = @template.send(:cycle, first_val, second_val, iter)
|
165
|
+
result.should == first_val
|
166
|
+
end
|
167
|
+
|
168
|
+
it 'should return the second_value passed if iteration passed is odd' do
|
169
|
+
first_val = "first"
|
170
|
+
second_val = "second"
|
171
|
+
iter = 1
|
172
|
+
result = @template.send(:cycle, first_val, second_val, iter)
|
173
|
+
result.should == second_val
|
174
|
+
end
|
175
|
+
end
|
176
|
+
|
177
|
+
end
|