CSC/ECE 517 Fall 2011/ch5 6d ny: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 24: Line 24:
====Usage====
====Usage====


 Fast – It gives instant feedback on the accuracy of your code.
===Scrum===


 Design – For testing, the code is designed as small modules facilitating the reusability of the units.


 Individuality – Each unit is designed independent of each other and tested individually making error identification easy.
====Definition====


 Efficiency - Bugs can be scanned in the probable bug prone code areas making debugging efficient.
====Origin====


 Understanding – Helps any reader, easily understand the methods’ functionality.
====FlowChart====


=====Limitations of Unit Testing:=====
====Usage====
===Crystal family of Methodologies===


 Tedious Job for Complex Codes – Implementing and running test cases for complex codes is time consuming. Moreover, coding a unit test is as tedious as coding the target program itself.
====Definition====


 Impact of Change in the Code Requirements - In an agile project that is accompanied with periodic changes in requirements will result in constant updating of test cases to match the latest developments.
====Origin====


====FlowChart====


=='''Testing Techniques'''==  
====Usage====


====Test-Driven Development(TDD)====  
===Feature driven development===
[http://en.wikipedia.org/wiki/Test-driven_development Test Driven Development (TDD)]is an advanced technique of using automated unit tests to drive the design of software. The result of using this practice is a comprehensive suite of unit tests that can be run at any time to keep track of the code development.


Here
 Test cases are written initially keeping in mind the final result.


 The initial test is conducted which eventually fails because of absence of a target code.
====Definition====


 The test suggests further steps to build/refactor an error free code and only those programs associated with the tests go into production.
====Origin====


 Tests are then re-conducted until satisfactory results are achieved.
====FlowChart====


[[File:TDD development cycle.png|thumb|400px|center|Development Cycle of TDD]]
====Usage====


====Behavior driven development (BDD)====
===Rational unified Process===


[http://en.wikipedia.org/wiki/Behavior_Driven_Development Behavior driven development (BDD)]is a software development technique that relies on the use of simple vocabulary. Tests are designed using natural language so that even a non-technical participant will be able to follow. BDD is an evolution in the thinking behind Test Driven Development but stresses extensively on the behavior aspect of the methods used in the code.


====Definition====


Eg: Tests result such as “the point cannot be created without code description” is more understandable than something like Test_category_ThrowsArgumentNullException .
====Origin====


====FlowChart====


=='''Frameworks'''==  
====Usage====
===Dynamic systems development===


A framework is a tool to support writing and running of a program. A Unit Test framework is a set of reusable libraries or classes for a software system. Code is written in these frameworks, they are capable of running and checking the test code by themselves.


Here, a unit test framework will evaluate the code based on a variety of inputs provided in the test case and check for the accuracy of results.
====Definition====


====Testing Framework Parlance:====
====Origin====


a. '''Test Case:'''  It is a main class where test methods are coded. All the units to be tested are inherited to this class.
====FlowChart====


====Usage====
===Adaptive software development===


b. [http://ruby-doc.org/stdlib/libdoc/test/unit/rdoc/classes/Test/Unit/Assertions.html '''Assertions (Test::Unit::Assertions):''']  An assertion is the main condition that when held true would result in successful culmination of the test. If the assertion fails then the test would generate an error message with pertinent information so that the programmer can make necessary changes.


====Definition====


c. '''Test Fixture:'''  A test fixture is used to clean up methods for conducting more than one test, eliminating duplication of methods.
====Origin====


====FlowChart====


d. '''Test Method:'''  It is a process to handle individual units referred for testing.
====Usage====
===Open source softwaredevelopment ===




e. '''Test Runners:'''  Test Runners GUI’s that are used to conduct testing and provide with the results. Test runners such as Test::Unit::UI::Console::Test Runner and GTK test runners are used.
====Definition====


====Origin====


f. '''Test Suite:'''    It is a collection of tests.
====FlowChart====


====Usage====
===Agile Modelling ===




We need a target code to conduct tests.
====Definition====


====Example Problem Statement for Target Code:====
====Origin====
To find whether a given point lies on the x-axis, y-axis or the origin.


Solution:  We write a class to define the position (x-axis, y-axis or origin) of the point.
====FlowChart====


====Code : Position of a Point====  
====Usage====
class Point
===Pragmatic Programming ===
attr_writer :xcoordinate
attr_writer :ycoordinate
def initialize(xcoordinate,ycoordinate)
  @xcoordinate = xcoordinate
  @ycoordinate = ycoordinate
end
#-----------Location of point on X-axis ----------------#
def isOnXaxis?
    if @ycoordinate == 0
    return true 
  end
end
#---------- Location of point on Y-axis ----------------#
  def isOnYaxis?
    if @xcoordinate == 0
      return true
  end
  end
#---------- Location of point on Origin-----------------#
  def isOnOrigin?
    if @xcoordinate == 0 && @ycoordinate == 0
    return true
  end
  end
end


=='''Testing Frameworks'''==


====Test::Unit====
====Definition====


=====Overview=====
====Origin====


a. It is based on the Test Driven Development Technique (TDD).
====FlowChart====


b. The Test::Unit framework integrates the following features:
====Usage====
1. Way of expressing individual tests.


2. Provides a framework for structuring the tests.
==Comparision==


3. Has flexible ways of invoking the tests.


=====Process of Testing=====
==Application==


=====a. Installation=====
==Evidence to support the effectiveness of Agile Development==


Test::Unit framework is pre-installed on all Ruby versions.
=====b. Algorithm=====
 We use a UI is used to run the Test code and display the gathered results. Here, we have used the web based UI.
 Structuring the tests: Inherit the required classes.
a. Here, “point” class is inherited to call the target units which have to be tested.
b. The “test/unit” class is inherited for methods required to conduct testing.
 Write the test methods.
 Test methods are prefixed with test. Eg: test_examp where examp is the unit being tested.
 In the methods write Assertions comparing them with expected results for the target units.
 Text fixtures are optional; they can be used to clean the methods.
 Run the tests as Test::Unit test class name.rb
 To run only a particular method we can its name as classname.rb --name method
 If there are bugs, refactor the code.
 Repeat testing until all the bugs are fixed.
=====Flowchart=====
[[File:Test unit flowchart.png|thumb|400px|center|Development Cycle of TDD]]
=====CODE Test::Unit=====
require "Point"
require "test/unit"
class TestCase_Point < Test::Unit::TestCase
  def test_isOnXaxis
    assert(Point.new(3,0).isOnXaxis?)
    end
  def test_isOnYaxis
      assert(Point.new(0,4).isOnYaxis?)
  end
  def test_isOnOrigin
      assert(Point.new(3,4).isOnOrigin?)
  end
end
=====Result Test::Unit=====
Below are the test results that are obtained after running the above test cases.
=====Failed output=====
This is how the failed test cases are shown once we run the test cases,
[[File:Testunit failed.png|center|700px|center|Development Cycle of TTD]]
=====Passed output=====
[[File:Testunit passed.png|center|800px|center|Development Cycle of TTD]]
=====Storing Test Files=====
Test files can be stored in the same directory as the target file but eventually the directory gets bloated storing 2 files for the same target code. Instead we can store it in a separate test directory for better organization. Here, one must take care to clearly specify the path of the target code for inheritance purpose in the test file.
Eg: If point.rb is stored in the directory lib and test_point.rb is stored in the test directory then to inherit point.rb we specify the path.
require “../lib/point”
----
====Shoulda====
=====Overview=====
a. Shoulda is a library that allows us to write better and easily understandable test cases for the ruby applications compared to Test::Unit.
b. It allows us to use the "it"-blocks from RSpec to define nice error-messages if a test fails.
c. In other words it is improvised form of Test::Unit and Rspec. It works inside the Test::Unit — you can even mix Shoulda tests with regular Test::Unit test methods.
=====Process of Testing=====
=====a. Installation=====
Shoulda is installed by running “gem install shoulda” in command prompt after setting the environment path as “…\Ruby\bin”
=====b. Algorithm=====
 Inherit all the classes involved in testing i.e. the target class and the shoulda library class. To achieve this add require "rubygems", require ”Point” and require "shoulda" to the test class.
 Then setup up a context “Point” (context is nothing but a region of code which deals with the functionality you are interested in.)
 Then define a method starting with should “method name” do and then describe the entire method.
 Make proper assertions to test the functionality in your method.
=====Code shoulda=====
require "rubygems"
require “Point”
require "test/unit"
require "shoulda"
class TestCase_Point_Shoulda < Test::Unit::TestCase
  context "Point" do
  should "lie on the X-axis " do
      assert(Point.new(3,0).isOnXaxis?)
  end
  should "lie on the Y-axis " do
      assert(Point.new(0,4).isOnYaxis?)
  end
  should "lie on the Origin" do
    assert(Point.new(0,4).isOnOrigin?)
  end
  end
end
=====Result=====
Below are the test results that are obtained after running the above test cases,
=====Failed Output=====
[[File:Shoulda failed.png|center|800px|center|Development Cycle of TTD]]
=====Passed output=====
[[File:Shoulda passed.png|center|600px|center|Development Cycle of TTD]]
----
====RSpec====
=====Overview=====
a. RSpec is Behavior Driven Development Unit test tool for ruby.
b. It allows us to write an initial code specifications (spec) document. The spec document talks about the program’s function.
c. Thereby, we can write the code based on the specifications (spec file).
d. The (spec) document is written in Domain Specific Language which makes it simple for the programmer to handle.
e. Better understanding of the test cases compared to shoulda as the cases and notifications are more descriptive.
f. In other words it is improvised form of Test::Unit and Rspec. It works inside the Test::Unit — you can even mix Shoulda tests with regular Test::Unit test methods.
=====Process of Testing=====
=====a. Installation=====
RSpec is installed by running “gem install rspec” in command prompt after setti ng the environment path as “…\Ruby\bin”
=====b. Algorithm=====
 We start by describing what our application behaves like. So we write down a specifications file.
 Using RSpec's “describe” block we describe the basic functions of the application.
 We then write the behaviors/expectations defining what we expect our system to behave like (expectations are similar to assertions in Test::Unit framework).
 There are two methods available for checking expectations: should() and should_not(). Spec::Expectations - Object#should(matcher) and Object#should_not(matcher).
 The code returns list of all the methods to be implemented.
 Main code implementing all the specified methods is written.
 Then, a recheck is done for fulfillment of all the expectations.
=====Code RSpec=====
======Initial Requirement(spec)======
In the below code describe() method returns an ExampleGroup class(similar to TestCase in Test::Unit).
The it()method returns an instance of the ExampleGroup in which that example is run.
require "Point"
describe "The location of a point" do
  it "should check whether point lies on X-axis correctly"                       
  it " should check whether point lies on Y-axis correctly "
  it " should check whether point lies on Origin correctly "
end
The are two methods available to check the expectations and they are should and should_not.
The result obtained by running the initial requirement doc by using $ spec rspec_test.rb is
****
Pending:
The location of a point should check whether point lies on X-axis correctly (Not Yet Implemented)
./02file.rb:2
The location of a point should check whether point lies on Y-axis correctly (Not Yet Implemented)
./02file.rb:3
The location of a point should check whether point lies on Origin correctly (Not Yet Implemented)
./02file.rb:5
Finished in 0.021001 seconds
4 examples, 0 failures, 4 pending
Hence it clearly says that the above methods are yet to be implemented. This helps us in developing the code more efficiently such that they pass the above tests
Code block with expectations :
require “Point”
require "rubygems"
describe "The location of a point" do
  before(:each) do
    @point = Point.new(0,2)
  end
  it "should check whether point lies on X-axis correctly" do
    @point.isOnXaxis?.should be_true
  end
  it "should check whether point lies on Y-axis correctly" do
    @point.isOnYaxis?.should be_true
  end
  it "should check whether point lies Origin correctly" do
    @point.isOnOrigin?.should be_true
  end
end
=====Failed output=====
Below are the test results that are obtained after running the above test cases,
[[File:Rspec failed.png|center|600px|center|Development Cycle of TTD]]
----
====Cucumber====
Cucumber is becoming highly popular because of its easy coding features.
=====Overview=====
a. Cucumber is a Behavior Driven Development Unit test tool for ruby.
b. It follows a similar pattern of RSPEC with some added features.
c. It allows the behavior of a system to be written in the native language of the programmer as either specs or functional tests.
d. It implements the GWT (Given, When, Then) pattern. Given is a behavior, accordingly coding is done. When all the specifications are met, then the tests are deemed successful.
e. Cucumber itself is written in Ruby.
=====Process of Testing=====
=====a. Installation=====
If your Environment path is set to " ...\Ruby\bin" then open command prompt and run gem install cucumber.
=====b. Algorithm=====
 We first create a feature file to describe about our requirements.
 Then we will create a ruby file to give a code to implement the function.
 Then, a recheck is done for fulfillment of all the expectations.
=====Code Cucumber=====
The requirement(spec) file for the cucumber is given below,
Feature: Check the point location
  In order perform check
  As a user
  I want the two coordinates of a point
  Scenario: check the location on X-axis
  Given I have entered <xcoordinate>
  And  I have entered <ycoordinate>
  When  I give check
  Then  The result should be <output>
The code implementation based on the above Requirement for Cucumber is as shown below,
require “Point”
require "rubygems"
Before do
@xcoordinate=3
@ycoordinate=0
end
Given /^I have entered <input(\d+)>$/ do |arg1|
  @point = Point.new(@xcoordinate,@ycoordinate)
end
When /^I give check$/ do
  @result = @point.isOnXaxis?
end
Then /^The result should be <output>$/ do
puts @result
end
----
====RIOT====
RIOT aids in speedy execution of test cases.
=====Overview=====
a. Riot does not run a setup and teardown functions before and after each test like in case of Test::Unit.
b. This is what speeds up the test execution.
c. Tests are written differently in RIOT. We only receive a Boolean output for our test case.
c. Here, assertions are done using a generalized attribute instead of specific variables.
=====Process of Testing=====
=====a. Installation=====
This can be installed by running “gem install riot” in command prompt after setting the environment path as “…\Ruby\bin”
=====b. Algorithm=====
 We inherit all the classes that are required.
 A “Context” block is used to specify behavior of the class.
 Now, a setup block does not use specific variables but instead uses a generalized attribute “topic” to access objects in assertions.
 Assertions only return a boolean value. When using asserts, true indicates a pass while false indicates a fail.
=====Code RIOT=====
require “Point”
require "rubygems"
context "The point locater" do
  setup{Point.new(3,0)}
  asserts("Location on Xaxis") {topic.isOnXaxis?}.nil
end
----
=='''Comparision between Frameworks'''==
[[File:Comparision.jpg]]
=='''Conclusion'''==
Test::unit is the traditionally used unit testing framework as it comes by default with ruby but based on the readability of the test cases Rspec is preferred by majority.
Below is the plot showing the comparison of the times taken to execute the test cases in various unit test frameworks,
[[File:Conclusion.png|center|600px|center|Development Cycle of TTD]]
Hence we can infer from the above tabulation that riot is faster compared to majority of the unit test Frameworks
Each of the frameworks have their specific advantages and are used depending upon the situation.


==See also==
==See also==
*[http://www.ultrasaurus.com/sarahblog/2009/08/ruby-unit-test-frameworks/ Unit Testing Frameworks for Ruby]
*[http://stackoverflow.com/questions/1479361/what-is-the-community-preferred-ruby-unit-testing-framework Community Preferred Unit Testing Framework]


==External Links:==
==External Links:==
*[http://ruby-doc.org/stdlib/libdoc/test/unit/rdoc/classes/Test/Unit.html Test::Unit]
 
*[http://ruby-doc.org/stdlib/libdoc/test/unit/rdoc/ Ruby-doc]
*[http://rdoc.info/github/thoughtbot/shoulda/master/file/README.rdoc Shoulda]
*[http://rspec.info/ RSpec]
*[http://rspec.info/documentation/ RSpec Documentation]
*[https://github.com/thoughtbot/shoulda Shoulda]
*[http://cukes.info/ Cucumber]
*[http://en.wikipedia.org/wiki/Unit_testing Unit testing]
*[http://en.wikipedia.org/wiki/Test-driven_development Test-driven development]
*[http://alexyoung.org/2009/10/26/riot-testing/ Riot]


==References:==
==References:==
[http://www.mobilein.com/WhitePaperonUnitTesting.pdf R.Venkat Rajendran, White Paper on Unit Testing]
[http://ironshay.com/post/A-Mini-Review-Benchmark-of-Rubye28099s-Different-Testing-Frameworks.aspx Benchmark Conclusions]

Revision as of 00:56, 9 November 2011

Agile Landscape


Introduction

Definition
Flowchart
Different Methodologies

Different Methodologies

Extreme Programming

Definition

Origin

FlowChart

Usage

Scrum

Definition

Origin

FlowChart

Usage

Crystal family of Methodologies

Definition

Origin

FlowChart

Usage

Feature driven development

Definition

Origin

FlowChart

Usage

Rational unified Process

Definition

Origin

FlowChart

Usage

Dynamic systems development

Definition

Origin

FlowChart

Usage

Adaptive software development

Definition

Origin

FlowChart

Usage

Open source softwaredevelopment

Definition

Origin

FlowChart

Usage

Agile Modelling

Definition

Origin

FlowChart

Usage

Pragmatic Programming

Definition

Origin

FlowChart

Usage

Comparision

Application

Evidence to support the effectiveness of Agile Development

See also

External Links:

References: