/maven-testability-plugin/src/main/java/com/google/maven/TestabilityExplorerMojo.java

http://testability-explorer.googlecode.com/ · Java · 209 lines · 80 code · 31 blank · 98 comment · 1 complexity · 41c0033c2007256f22effa945de17dee MD5 · raw file

  1. package com.google.maven;
  2. import com.google.classpath.ClassPath;
  3. import com.google.classpath.ClassPathFactory;
  4. import com.google.inject.Guice;
  5. import com.google.test.metric.JavaTestabilityRunner;
  6. import org.apache.maven.artifact.DependencyResolutionRequiredException;
  7. import org.apache.maven.project.MavenProject;
  8. import org.apache.maven.reporting.AbstractMavenReport;
  9. import org.codehaus.doxia.site.renderer.SiteRenderer;
  10. import java.io.File;
  11. import java.util.List;
  12. import java.util.Locale;
  13. import java.util.ResourceBundle;
  14. /**
  15. * Executes the Testability Explorer with the specified parameters.
  16. *
  17. * @goal testability
  18. * @description Generates a Testability Report when the site plugin is run.
  19. * @execute phase="compile"
  20. * @requiresDependencyResolution compile
  21. * @requiresProject
  22. */
  23. public class TestabilityExplorerMojo extends AbstractMavenReport {
  24. /**
  25. * The root package to inspect.
  26. *
  27. * @parameter expression="."
  28. */
  29. String filter;
  30. /**
  31. * The output directory for the intermediate XML report.
  32. *
  33. * @parameter expression="${project.build.directory}"
  34. * @required
  35. */
  36. File targetDirectory;
  37. /**
  38. * The output directory for the final HTML report. Note that this parameter is only evaluated if the goal is run
  39. * directly from the command line or during the default lifecycle. If the goal is run indirectly as part of a site
  40. * generation, the output directory configured in the Maven Site Plugin is used instead.
  41. *
  42. * @parameter expression="${project.reporting.outputDirectory}"
  43. * @required
  44. */
  45. File outputDirectory;
  46. /**
  47. * Filename of the output file, without the extension
  48. *
  49. * @parameter default-value="testability"
  50. */
  51. String resultfile = "testability";
  52. /**
  53. * Where to write errors from execution
  54. *
  55. * @parameter
  56. */
  57. File errorfile;
  58. /**
  59. * Weight of cyclomatic complexity cost
  60. *
  61. * @parameter default-value=1
  62. */
  63. Integer cyclomatic;
  64. /**
  65. * Weight of global state cost
  66. *
  67. * @parameter default-value=10
  68. */
  69. Integer global;
  70. /**
  71. * Extra multiplier applied to any costs where work is in a constructor
  72. *
  73. * @parameter default-value=1
  74. */
  75. Integer constructor;
  76. /**
  77. * Maximum recursion depth of printed result
  78. *
  79. * @parameter default-value=2
  80. */
  81. Integer printDepth;
  82. /**
  83. * Minimum cost to print a class metrics
  84. *
  85. * @parameter default-value=1
  86. */
  87. Integer minCost;
  88. /**
  89. * Max cost for a class to be called excellent
  90. *
  91. * @parameter default-value=50
  92. */
  93. Integer maxExcellentCost;
  94. /**
  95. * Max cost for a class to be called acceptable
  96. *
  97. * @parameter default-value=100
  98. */
  99. Integer maxAcceptableCost;
  100. /**
  101. * Print this many of the worst classes
  102. *
  103. * @parameter default-value=20
  104. */
  105. Integer worstOffenderCount;
  106. /**
  107. * Colon-delimited packages to whitelist
  108. *
  109. * @parameter default-value=" "
  110. */
  111. String whiteList;
  112. /**
  113. * Set the output format type, in addition to the HTML report. Must be one of: "xml",
  114. * "summary", "source", "detail".
  115. * XML is required if the testability:check goal is being used.
  116. *
  117. * @parameter expression="${format}" default-value="xml"
  118. */
  119. String format = "xml";
  120. /**
  121. * @parameter expression="${project}"
  122. * @required
  123. * @readonly
  124. */
  125. MavenProject mavenProject;
  126. /**
  127. * @component
  128. */
  129. private SiteRenderer siteRenderer;
  130. private static final String BUNDLE_NAME = "testability";
  131. private static final String NAME_KEY = "report.testability.name";
  132. private static final String DESCRIPTION_KEY = "report.testability.description";
  133. @Override
  134. protected SiteRenderer getSiteRenderer() {
  135. return siteRenderer;
  136. }
  137. @Override
  138. protected String getOutputDirectory() {
  139. return outputDirectory.getAbsolutePath();
  140. }
  141. @Override
  142. protected MavenProject getProject() {
  143. return mavenProject;
  144. }
  145. @Override
  146. protected void executeReport(Locale locale) {
  147. if ("pom".equals(mavenProject.getPackaging())) {
  148. getLog().info(String.format("Not running testability explorer for project %s " +
  149. "because it is a \"pom\" packaging", mavenProject.getName()));
  150. return;
  151. }
  152. Guice.createInjector(new MavenConfigModule(this)).
  153. getInstance(JavaTestabilityRunner.class).
  154. run();
  155. }
  156. public String getOutputName() {
  157. return resultfile;
  158. }
  159. public String getName(Locale locale) {
  160. return getProperty(locale, NAME_KEY);
  161. }
  162. private String getProperty(Locale locale, String key) {
  163. return ResourceBundle.getBundle(BUNDLE_NAME, locale).getString(key);
  164. }
  165. public String getDescription(Locale locale) {
  166. return getProperty(locale, DESCRIPTION_KEY);
  167. }
  168. ClassPath getProjectClasspath() {
  169. List<String> compileClasspathElements;
  170. try {
  171. compileClasspathElements = mavenProject.getCompileClasspathElements();
  172. } catch (DependencyResolutionRequiredException e) {
  173. throw new RuntimeException(e);
  174. }
  175. return new ClassPathFactory().createFromPaths(
  176. compileClasspathElements.toArray(new String[compileClasspathElements.size()]));
  177. }
  178. }