introduction to automated quality assurance

30
1) Automated Quality Assurance Philip Johnson Collaborative Software Development Laboratory Information and Computer Sciences University of Hawaii Honolulu HI 96822

Upload: philip-johnson

Post on 06-Dec-2014

3.278 views

Category:

Technology


0 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Introduction to automated quality assurance

(1)

Automated Quality Assurance

Philip Johnson

Collaborative Software Development Laboratory

Information and Computer Sciences

University of Hawaii

Honolulu HI 96822

Page 2: Introduction to automated quality assurance

(2)

Objectives Understand motivation for automated quality assurance through static analysis, and how it differs from “manual” quality assurance.

Learn about various automated quality assurance tools.

Understand the strengths and weaknesses of the Java-based static analysis tools used in this class (Checkstyle, PMD, FindBugs).

Page 3: Introduction to automated quality assurance

(3)

Quality Assurance High level:•Does the system satisfy the three prime directives?

Low level:•Does the system have “good” tests?•Does the system conform to coding standards?•Does the system contain code known to be defect-

prone?•Does the system satisfy its requirements?

We use a combination of “manual” and “automated” techniques to assess QA at the “high” and “low” levels.

Page 4: Introduction to automated quality assurance

(4)

Manual QA Examples of manual QA techniques:•Writing unit tests with JUnit•Conducting code reviews.

Strengths of manual QA:•Find defects involving requirements.•Low false positive rate.

Weaknesses of manual QA:•Difficult/expensive approach to low-level

implementation defects. •Must be redone for all projects.

Page 5: Introduction to automated quality assurance

(5)

Automated QA Examples of automated QA:•Lint, Checkstyle, PMD, FindBugs, DependencyFinder,

Coverity, FxCop

Strengths of automated QA:•Can find classes of implementation defects that

developers may not be skilled enough in the language/environment to detect via testing or inspection!•Can be reused on any project.

Weaknesses:•Potential high false positive rate. •Does not find requirements-level defects.

Page 6: Introduction to automated quality assurance

(6)

A Quick Tour of Automated QA Tools

Page 7: Introduction to automated quality assurance

(7)

Page 8: Introduction to automated quality assurance

(8)

Page 9: Introduction to automated quality assurance

(9)

Page 10: Introduction to automated quality assurance

(10)

Page 11: Introduction to automated quality assurance

(11)

Page 12: Introduction to automated quality assurance

(12)

Page 13: Introduction to automated quality assurance

(13)

Page 14: Introduction to automated quality assurance

(14)

Page 15: Introduction to automated quality assurance

(15)

Page 16: Introduction to automated quality assurance

(16)

Page 17: Introduction to automated quality assurance

(17)

Page 18: Introduction to automated quality assurance

(18)

Page 19: Introduction to automated quality assurance

(19)

The three primary Automated QA tools for this class

Page 20: Introduction to automated quality assurance

(20)

Page 21: Introduction to automated quality assurance

(21)

Checkstyle Checkstyle performs source code analysis.•Originally for "coding standard" (formatting)•Now includes design-level best practice compliances.

Classes of checks:•JavaDoc, Naming Conventions, Headers, Size Violations, Imports, WhiteSpace, Modifers, Block Checks, Coding, Class Design, Duplicate Code, Metrics, J2EE.

Can be extended with new checks. Use a configuration file to customize what checks your system should comply with.

Page 22: Introduction to automated quality assurance

(22)

Page 23: Introduction to automated quality assurance

(23)

Page 24: Introduction to automated quality assurance

(24)

PMD

PMD also performs source code analysis.•More 'design' oriented than Checkstyle.•Lots of overlap.

PMD rulesets:•Basic, Braces, Code Size, Clone, Controversial, Coupling, Design, Finalizers, Import, J2EE, JavaBeans, JUnit, Logging, Migrating, Naming, Optimizations, Exceptions, Strings, Security, Unused Code, JSP, JSF.

Eventually, can choose one of PMD/Checkstyle.

Page 25: Introduction to automated quality assurance

(25)

Page 26: Introduction to automated quality assurance

(26)

Page 27: Introduction to automated quality assurance

(27)

FindBugs

FindBugs analyzes byte codes, not source codes.

Example problem: ignored return value:•String b = "bob"; b.replace('b', 'p'); if(b.equals("pop")){...}

FindBugs defect detectors are quite different in nature from source code analyzers because the system can perform forward and backward data flow.

Page 28: Introduction to automated quality assurance

(28)

Page 29: Introduction to automated quality assurance

(29)

QA in this class One goal of this course is to provide you with a set of techniques to build•high quality systems•as fast as possible

To accomplish this, you must learn how to apply the correct mix of automated and manual QA techniques. •Don’t write tests (or do reviews) to catch defects that an automated QA tool can find.•Don’t believe that automated QS tools can find all of your errors.

Page 30: Introduction to automated quality assurance

(30)