SlideShare ist ein Scribd-Unternehmen logo
1 von 37
Unit Test Candidate Solutions

       Xuefeng.Wu 2012.05
Types of Tests
Types of Tests

        use mock environment : isolation
        single responsibility

        use simulation 3rd applications,
        system ,drivers


        use real 3rd applications, system ,
        drivers
Test context

CSDM

CSDM Demo,
   CSDM
                CSDM Service
 Controller

                Soap services
                                Domain Manager
Applications-
                                Business logic
  2D etc,                                        Model DAO   Files
                    Jetty         managers
  Drivers
Test Targets
Technology Problems
•   Environment and Context for developer
•   Test database prepare for developer
•   Test sample files prepare for developer
•   XML String parameter in service for soap services test
•   XML verify for soap services test
•   Mock Object for domain logic test
•   Model Date verify for domain logic test
•   Files verify for domain logic test
•   Notification verify for domain logic test
•   Unit testing styles for better test code
Test database prepare
• DB Unit/ unitils
• Derby backup, restore on line
• Derby date file recovery with RAM Disk
Test database prepare
• Baseline data
• Each Test data is individual and isolation
DB Unit
    • DbUnit has the ability to export and import
      your database data to and from XML datasets.
public DBUnitSampleTest(String name) { super( name );
System.setProperty( PropertiesBasedJdbcDatabaseTester.DBUNIT_DRIVER_CLASS, "org.apache.derby.jdbc.ClientDriver" );
System.setProperty( PropertiesBasedJdbcDatabaseTester.DBUNIT_CONNECTION_URL, "jdbc:derby://localhost:1527/pas;create=true" );
}

protected IDataSet getDataSet() throws Exception {

    return new FlatXmlDataSetBuilder().build(new FileInputStream("D:/Test/pas.xml"));
}

protected DatabaseOperation getSetUpOperation() throws Exception {
    return DatabaseOperation.REFRESH;
}

protected DatabaseOperation getTearDownOperation() throws Exception {
    return DatabaseOperation.NONE;
}




       Perform setup of stale data once for entire test class or test suite
Derby backup, restore on line


String dbURL = "jdbc:derby:salesdb;restoreFrom=D:/dbbackups/salesdb";
Connection conn = DriverManager.getConnection(dbURL);
Derby date file recovery
 • Hey! We use derby!
 • Use Embedded Derbey
 • Restore data files which in RAM Disk

<property name="hibernate.connection.url">
jdbc:derby:database/pas;create=true
</property>

<property name="hibernate.connection.driver_class">
org.apache.derby.jdbc.EmbeddedDriver
</property>
Test sample files prepare
• Dicom files,images,3D files
• Custom file providers
XML String parameter in service
• Soap service is all about xml string in and out
• But it's not easy to provide XML format
  string in Java.
Java StringBuffer

String buildXML() {
StringBuffer sb = new StringBuffer();
 sb.append("<EXPRESSION>");
 sb.append(" <EQUAL>");
 sb.append(" <IDENT>x</IDENT>");
 sb.append(" <PLUS>");
 sb.append(" <INT>3</INT>");
 sb.append(" <TIMES>");
 sb.append(" <INT>4</INT>");
 sb.append(" <INT>5</INT>");
 sb.append(" </TIMES>");
 sb.append(" </PLUS>");
 sb.append(" </EQUAL>");
 sb.append("</EXPRESSION>");
 return sb.toString();
} // buildXML
Read xml file as input



      readFileToString.java
Use Other Language raw string

val input = """
<trophy type="request" version="1.0">
 <patient>
  <parameter key="patient_id" value="" /> C (If patient_id and DPMS_id are both null, PAS shall set Patient=patient_internal_id and
  <parameter key="dpms_id" value=""/> C (If both parameter are not null, use input value. Only above two conditions, others will be
  <parameter key="first_name" value=""/> O
  <parameter key="last_name" value=""/> O
  <parameter key="middle_name" value=""/> O
  <parameter key="prefix" value=""/> O
  <parameter key="suffix" value=""/> O
  <parameter key="birth_date" value=""/> O ("yyyy-MM-dd")
  <parameter key="sex" value=""/> O (male,female,other)
  <parameter key="pregnancy" value=""/> O (not pregnant,possibly pregnant,definitively pregnant,unknown) empty string means not app
  <parameter key="insurance_number" value=""/> O <parameter key="address" value=""/> O
  <parameter key="town" value=""/> O
  <parameter key="postal_code" value=""/> O
  <parameter key="cellular_phone" value=""/> O
  <parameter key="home_phone" value=""/> O
  <parameter key="work_phone" value=""/> O
  <parameter key="comments" value=""/> O
  <parameter key="email" value=""/> O
  <parameter key="photo" value=""/> O
  <parameter key="kdis6_patient_directory" value=""/> O (used for import kdis6 images)
  <parameter key="images_imported" value=""/> C ("true/false", must be pair with kdis6_patient_directory)
  </patient>
</trophy>
"""
XML verify
• The soap service output is xml string
• You can use contains to verify simple value
• But not easy to verify specific value
XmlUnit
• XML can be used for just about anything so
  deciding if two documents are equal to each
  other isn't as easy as a character for character
  match
public void testXPathValues() throws Exception {
 String myJavaFlavours = "<java-flavours><jvm current='some platforms'>1.1.x</jvm>" +
 "<jvm current='no'>1.2.x</jvm><jvm current='yes'>1.3.x</jvm>" +
 "<jvm current='yes' latest='yes'>1.4.x</jvm></java-flavours>";

 assertXpathEvaluatesTo("1.4.x", "//jvm[@latest='yes']", myJavaFlavours);
 assertXpathEvaluatesTo("2", "count(//jvm[@current='yes'])", myJavaFlavours);
 assertXpathValuesEqual("//jvm[4]/@latest", "//jvm[4]/@current", myJavaFlavours);
 assertXpathValuesNotEqual("//jvm[2]/@current", "//jvm[3]/@current", myJavaFlavours);
}
Scala XML

val ns = <foo><bar><baz/>Text</bar><bin/></foo>

ns  "foo" // => <foo><bar>...</bar><bin/></foo>

ns  "foo"  "bar" // => <bar><baz/>Text</bar>


val ns = <foo id="bar"/>

ns  "@id" // => Text(bar)
JRuby REXML


xml = File.read('posts.xml')
puts Benchmark.measure {
   doc, posts = REXML::Document.new(xml), []
   doc.elements.each('posts/post') do |p|
   posts << p.attributes
End
}
Model Date verify
• After execute the method you want to know
  every thing is correct.
Solutions
• DbUnit can also help you to verify that your
  database data match an expected set of
  values.
• Call hibernate Dao Directly
• Verify by other business method
Files verify
• Custom utile

• public static void checkDuplicateFiles(File dir)
Notification verify
• An ActiveMQ client utile
• It should run in other thread and subscript
  before call method
• It should time out if no message received after
  long time
Wait future notification

"There should have imageCreated notification after image is created " should {

    " ok " in {

       val srcPid = DataPrepare.createPatient
       val msg = future(ActiveMQ.receive("topic.imageCreated"))
       val imgId = DataPrepare.prepareImage(srcPid)._1 //wait a 3 second
       awaitAll(3000,msg) foreach{ v => v match {
         case Some(m) => { m.toString must contain (srcPid)
                          m.toString must contain (imgId) }
         case None => 1 must_== 2 }
       }
      }
}
Mock Object
EasyMock
public void testTransferShouldDebitSourceAccount(){

    AccountController controller = new AccountController();

    Account from = createMock(Account.class)

    Account to = createMock(Account.class)

    from.debit(42);

    replay(from);

    replay(to);

    controller.transfer(from,to,42);

    verify(from);

}
jMock
Mockery context = new Mockery();
public void testTransferShouldDebitSourceAccount(){

    AccountController controller = new AccountController();

    Account from = context.mock(Account.class)

    Account to = context.mock(Account.class)

    context.checking(new Expectations() {{

         oneOf(from).debit(42);

    }}

    controller.transfer(from,to,42);

    context.assertIsSatisfied();

}
mockito


public void testTransferShouldDebitSourceAccount(){

    AccountController controller = new AccountController();

    Account from = mock(Account.class)

    Account to = mock(Account.class)

    controller.transfer(from,to,42);

    verify(from).debit(42);

}
public void testTransferShouldDebitSourceAccount(){

                                     AccountController controller = new AccountController();

                                     Account from = createMock(Account.class)

                                     Account to = createMock(Account.class)

                                     from.debit(42);

                                     replay(from);

                                     replay(to);

                                     controller.transfer(from,to,42);

                                     verify(from);
                            }


Mockery context = new Mockery();
public void testTransferShouldDebitSourceAccount(){

      AccountController controller = new AccountController();

      Account from = context.mock(Account.class)

      Account to = context.mock(Account.class)

      context.checking(new Expectations() {{
              oneOf(from).debit(42);
      }}

      controller.transfer(from,to,42);

      context.assertIsSatisfied();
}


          public void testTransferShouldDebitSourceAccount(){

                 AccountController controller = new AccountController();

                 Account from = mock(Account.class)

                 Account to = mock(Account.class)

                 controller.transfer(from,to,42);

                 verify(from).debit(42);

          }
Mock what?
Environment and Context
Name                  Location   Interaction

DB                    Internal   JDBC connect with hibernate

ActiveMQ              Internal   socket,ActiveMQ library

Demo                  External   cmd,socket

Config file           External   read/write file

Registration table    External   system tool,reg

Schedule              External   trigger

2D                    External   cmd,socket

Object Applications   External   cmd
Unit testing styles
• BDD
• Better test code
• It’s better not only for developer. If P.O. can
  read our test code is better
• The test code should like specifics
Traditional Status assert test

 public void testAdd() {

     int num1 = 3;

     int num2 = 2;

     int total = 5;

     int sum = 0;

     sum = Math.add(num1, num2);

     assertEquals(sum, total);
 }
BDD specifications style
class HelloWorldSpec extends Specification {

    "The 'Hello world' string" should {

        "contain 11 characters" in {
            "Hello world" must have size(11)
        }

        "start with 'Hello'" in {
            "Hello world" must startWith("Hello")
        }

        "end with 'world'" in {
            "Hello world" must endWith("world")
        }
    }

    "The sum" should {
         “ equals total " in {
             val num1 = 2,num2 = 3, total = 5
            Math.add(num1, num2) must equalsTo(total)
        }
    }

}
Unit test candidate solutions
Unit test candidate solutions

Weitere ähnliche Inhalte

Was ist angesagt?

Real world cross-platform testing
Real world cross-platform testingReal world cross-platform testing
Real world cross-platform testing
Peter Edwards
 
Executing Sql Commands
Executing Sql CommandsExecuting Sql Commands
Executing Sql Commands
leminhvuong
 
SQL Server SQL Server
SQL Server SQL ServerSQL Server SQL Server
SQL Server SQL Server
webhostingguy
 
Sustaining Test-Driven Development
Sustaining Test-Driven DevelopmentSustaining Test-Driven Development
Sustaining Test-Driven Development
AgileOnTheBeach
 

Was ist angesagt? (20)

Real world cross-platform testing
Real world cross-platform testingReal world cross-platform testing
Real world cross-platform testing
 
Implementing CQRS and Event Sourcing with RavenDB
Implementing CQRS and Event Sourcing with RavenDBImplementing CQRS and Event Sourcing with RavenDB
Implementing CQRS and Event Sourcing with RavenDB
 
Data in Motion: Streaming Static Data Efficiently 2
Data in Motion: Streaming Static Data Efficiently 2Data in Motion: Streaming Static Data Efficiently 2
Data in Motion: Streaming Static Data Efficiently 2
 
L2 Web App Development Guest Lecture At University of Surrey 20/11/09
L2 Web App Development Guest Lecture At University of Surrey 20/11/09L2 Web App Development Guest Lecture At University of Surrey 20/11/09
L2 Web App Development Guest Lecture At University of Surrey 20/11/09
 
How to implement g rpc services in nodejs
How to implement g rpc services in nodejsHow to implement g rpc services in nodejs
How to implement g rpc services in nodejs
 
Sqlapi0.1
Sqlapi0.1Sqlapi0.1
Sqlapi0.1
 
Oleksandr Valetskyy - DI vs. IoC
Oleksandr Valetskyy - DI vs. IoCOleksandr Valetskyy - DI vs. IoC
Oleksandr Valetskyy - DI vs. IoC
 
React table tutorial project setup, use table, and usefilter
React table tutorial project setup, use table, and usefilterReact table tutorial project setup, use table, and usefilter
React table tutorial project setup, use table, and usefilter
 
11-DWR-and-JQuery
11-DWR-and-JQuery11-DWR-and-JQuery
11-DWR-and-JQuery
 
Executing Sql Commands
Executing Sql CommandsExecuting Sql Commands
Executing Sql Commands
 
SQL Server SQL Server
SQL Server SQL ServerSQL Server SQL Server
SQL Server SQL Server
 
SAP Testing Training
SAP Testing TrainingSAP Testing Training
SAP Testing Training
 
No more promises lets RxJS 2 Edit
No more promises lets RxJS 2 EditNo more promises lets RxJS 2 Edit
No more promises lets RxJS 2 Edit
 
Sustaining Test-Driven Development
Sustaining Test-Driven DevelopmentSustaining Test-Driven Development
Sustaining Test-Driven Development
 
Enhanced Web Service Testing: A Better Mock Structure
Enhanced Web Service Testing: A Better Mock StructureEnhanced Web Service Testing: A Better Mock Structure
Enhanced Web Service Testing: A Better Mock Structure
 
MidCamp 2016 - Demystifying AJAX Callback Commands in Drupal 8
MidCamp 2016 - Demystifying AJAX Callback Commands in Drupal 8MidCamp 2016 - Demystifying AJAX Callback Commands in Drupal 8
MidCamp 2016 - Demystifying AJAX Callback Commands in Drupal 8
 
Java Persistence API
Java Persistence APIJava Persistence API
Java Persistence API
 
Example First / A Sane Test-Driven Approach to Programming
Example First / A Sane Test-Driven Approach to ProgrammingExample First / A Sane Test-Driven Approach to Programming
Example First / A Sane Test-Driven Approach to Programming
 
Fighting security trolls_with_high-quality_mindsets
Fighting security trolls_with_high-quality_mindsetsFighting security trolls_with_high-quality_mindsets
Fighting security trolls_with_high-quality_mindsets
 
2012 JDays Bad Tests Good Tests
2012 JDays Bad Tests Good Tests2012 JDays Bad Tests Good Tests
2012 JDays Bad Tests Good Tests
 

Andere mochten auch (10)

Bis Chapter5
Bis Chapter5Bis Chapter5
Bis Chapter5
 
Faq
FaqFaq
Faq
 
Andrew Atroshenko Painter
Andrew Atroshenko PainterAndrew Atroshenko Painter
Andrew Atroshenko Painter
 
Intellectual Property Rights
Intellectual Property RightsIntellectual Property Rights
Intellectual Property Rights
 
Bis Chapter2
Bis Chapter2Bis Chapter2
Bis Chapter2
 
Telecommunication and networks
Telecommunication and networksTelecommunication and networks
Telecommunication and networks
 
Journalism in Pakistan - Training Needs Assessment
Journalism in Pakistan - Training Needs AssessmentJournalism in Pakistan - Training Needs Assessment
Journalism in Pakistan - Training Needs Assessment
 
Polymorphism
PolymorphismPolymorphism
Polymorphism
 
polymorphism
polymorphism polymorphism
polymorphism
 
Polymorphism
PolymorphismPolymorphism
Polymorphism
 

Ähnlich wie Unit test candidate solutions

Salesforce Batch processing - Atlanta SFUG
Salesforce Batch processing - Atlanta SFUGSalesforce Batch processing - Atlanta SFUG
Salesforce Batch processing - Atlanta SFUG
vraopolisetti
 
33rd Degree 2013, Bad Tests, Good Tests
33rd Degree 2013, Bad Tests, Good Tests33rd Degree 2013, Bad Tests, Good Tests
33rd Degree 2013, Bad Tests, Good Tests
Tomek Kaczanowski
 
Bdd for-dso-1227123516572504-8
Bdd for-dso-1227123516572504-8Bdd for-dso-1227123516572504-8
Bdd for-dso-1227123516572504-8
Frédéric Delorme
 
Intro To JavaScript Unit Testing - Ran Mizrahi
Intro To JavaScript Unit Testing - Ran MizrahiIntro To JavaScript Unit Testing - Ran Mizrahi
Intro To JavaScript Unit Testing - Ran Mizrahi
Ran Mizrahi
 

Ähnlich wie Unit test candidate solutions (20)

Php Unit With Zend Framework Zendcon09
Php Unit With Zend Framework   Zendcon09Php Unit With Zend Framework   Zendcon09
Php Unit With Zend Framework Zendcon09
 
Mastering Mock Objects - Advanced Unit Testing for Java
Mastering Mock Objects - Advanced Unit Testing for JavaMastering Mock Objects - Advanced Unit Testing for Java
Mastering Mock Objects - Advanced Unit Testing for Java
 
Reactive programming every day
Reactive programming every dayReactive programming every day
Reactive programming every day
 
Automated acceptance test
Automated acceptance testAutomated acceptance test
Automated acceptance test
 
Testing in those hard to reach places
Testing in those hard to reach placesTesting in those hard to reach places
Testing in those hard to reach places
 
Salesforce Batch processing - Atlanta SFUG
Salesforce Batch processing - Atlanta SFUGSalesforce Batch processing - Atlanta SFUG
Salesforce Batch processing - Atlanta SFUG
 
TDD, BDD and mocks
TDD, BDD and mocksTDD, BDD and mocks
TDD, BDD and mocks
 
MT_01_unittest_python.pdf
MT_01_unittest_python.pdfMT_01_unittest_python.pdf
MT_01_unittest_python.pdf
 
33rd Degree 2013, Bad Tests, Good Tests
33rd Degree 2013, Bad Tests, Good Tests33rd Degree 2013, Bad Tests, Good Tests
33rd Degree 2013, Bad Tests, Good Tests
 
Bdd for-dso-1227123516572504-8
Bdd for-dso-1227123516572504-8Bdd for-dso-1227123516572504-8
Bdd for-dso-1227123516572504-8
 
Jdbc
JdbcJdbc
Jdbc
 
Java JDBC
Java JDBCJava JDBC
Java JDBC
 
Symfony2 from the Trenches
Symfony2 from the TrenchesSymfony2 from the Trenches
Symfony2 from the Trenches
 
Symfony2 - from the trenches
Symfony2 - from the trenchesSymfony2 - from the trenches
Symfony2 - from the trenches
 
Intro To JavaScript Unit Testing - Ran Mizrahi
Intro To JavaScript Unit Testing - Ran MizrahiIntro To JavaScript Unit Testing - Ran Mizrahi
Intro To JavaScript Unit Testing - Ran Mizrahi
 
JDBC Connecticity.ppt
JDBC Connecticity.pptJDBC Connecticity.ppt
JDBC Connecticity.ppt
 
Typed? Dynamic? Both! Cross-platform DSLs in C#
Typed? Dynamic? Both! Cross-platform DSLs in C#Typed? Dynamic? Both! Cross-platform DSLs in C#
Typed? Dynamic? Both! Cross-platform DSLs in C#
 
Modernising Legacy Code
Modernising Legacy CodeModernising Legacy Code
Modernising Legacy Code
 
Full Stack Unit Testing
Full Stack Unit TestingFull Stack Unit Testing
Full Stack Unit Testing
 
SpringOne 2GX 2013 - Spring Testing
SpringOne 2GX 2013 - Spring TestingSpringOne 2GX 2013 - Spring Testing
SpringOne 2GX 2013 - Spring Testing
 

Kürzlich hochgeladen

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Kürzlich hochgeladen (20)

Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 

Unit test candidate solutions

  • 1. Unit Test Candidate Solutions Xuefeng.Wu 2012.05
  • 3. Types of Tests use mock environment : isolation single responsibility use simulation 3rd applications, system ,drivers use real 3rd applications, system , drivers
  • 4. Test context CSDM CSDM Demo, CSDM CSDM Service Controller Soap services Domain Manager Applications- Business logic 2D etc, Model DAO Files Jetty managers Drivers
  • 6. Technology Problems • Environment and Context for developer • Test database prepare for developer • Test sample files prepare for developer • XML String parameter in service for soap services test • XML verify for soap services test • Mock Object for domain logic test • Model Date verify for domain logic test • Files verify for domain logic test • Notification verify for domain logic test • Unit testing styles for better test code
  • 7. Test database prepare • DB Unit/ unitils • Derby backup, restore on line • Derby date file recovery with RAM Disk
  • 8. Test database prepare • Baseline data • Each Test data is individual and isolation
  • 9. DB Unit • DbUnit has the ability to export and import your database data to and from XML datasets. public DBUnitSampleTest(String name) { super( name ); System.setProperty( PropertiesBasedJdbcDatabaseTester.DBUNIT_DRIVER_CLASS, "org.apache.derby.jdbc.ClientDriver" ); System.setProperty( PropertiesBasedJdbcDatabaseTester.DBUNIT_CONNECTION_URL, "jdbc:derby://localhost:1527/pas;create=true" ); } protected IDataSet getDataSet() throws Exception { return new FlatXmlDataSetBuilder().build(new FileInputStream("D:/Test/pas.xml")); } protected DatabaseOperation getSetUpOperation() throws Exception { return DatabaseOperation.REFRESH; } protected DatabaseOperation getTearDownOperation() throws Exception { return DatabaseOperation.NONE; } Perform setup of stale data once for entire test class or test suite
  • 10. Derby backup, restore on line String dbURL = "jdbc:derby:salesdb;restoreFrom=D:/dbbackups/salesdb"; Connection conn = DriverManager.getConnection(dbURL);
  • 11. Derby date file recovery • Hey! We use derby! • Use Embedded Derbey • Restore data files which in RAM Disk <property name="hibernate.connection.url"> jdbc:derby:database/pas;create=true </property> <property name="hibernate.connection.driver_class"> org.apache.derby.jdbc.EmbeddedDriver </property>
  • 12. Test sample files prepare • Dicom files,images,3D files • Custom file providers
  • 13. XML String parameter in service • Soap service is all about xml string in and out • But it's not easy to provide XML format string in Java.
  • 14. Java StringBuffer String buildXML() { StringBuffer sb = new StringBuffer(); sb.append("<EXPRESSION>"); sb.append(" <EQUAL>"); sb.append(" <IDENT>x</IDENT>"); sb.append(" <PLUS>"); sb.append(" <INT>3</INT>"); sb.append(" <TIMES>"); sb.append(" <INT>4</INT>"); sb.append(" <INT>5</INT>"); sb.append(" </TIMES>"); sb.append(" </PLUS>"); sb.append(" </EQUAL>"); sb.append("</EXPRESSION>"); return sb.toString(); } // buildXML
  • 15. Read xml file as input readFileToString.java
  • 16. Use Other Language raw string val input = """ <trophy type="request" version="1.0"> <patient> <parameter key="patient_id" value="" /> C (If patient_id and DPMS_id are both null, PAS shall set Patient=patient_internal_id and <parameter key="dpms_id" value=""/> C (If both parameter are not null, use input value. Only above two conditions, others will be <parameter key="first_name" value=""/> O <parameter key="last_name" value=""/> O <parameter key="middle_name" value=""/> O <parameter key="prefix" value=""/> O <parameter key="suffix" value=""/> O <parameter key="birth_date" value=""/> O ("yyyy-MM-dd") <parameter key="sex" value=""/> O (male,female,other) <parameter key="pregnancy" value=""/> O (not pregnant,possibly pregnant,definitively pregnant,unknown) empty string means not app <parameter key="insurance_number" value=""/> O <parameter key="address" value=""/> O <parameter key="town" value=""/> O <parameter key="postal_code" value=""/> O <parameter key="cellular_phone" value=""/> O <parameter key="home_phone" value=""/> O <parameter key="work_phone" value=""/> O <parameter key="comments" value=""/> O <parameter key="email" value=""/> O <parameter key="photo" value=""/> O <parameter key="kdis6_patient_directory" value=""/> O (used for import kdis6 images) <parameter key="images_imported" value=""/> C ("true/false", must be pair with kdis6_patient_directory) </patient> </trophy> """
  • 17. XML verify • The soap service output is xml string • You can use contains to verify simple value • But not easy to verify specific value
  • 18. XmlUnit • XML can be used for just about anything so deciding if two documents are equal to each other isn't as easy as a character for character match public void testXPathValues() throws Exception { String myJavaFlavours = "<java-flavours><jvm current='some platforms'>1.1.x</jvm>" + "<jvm current='no'>1.2.x</jvm><jvm current='yes'>1.3.x</jvm>" + "<jvm current='yes' latest='yes'>1.4.x</jvm></java-flavours>"; assertXpathEvaluatesTo("1.4.x", "//jvm[@latest='yes']", myJavaFlavours); assertXpathEvaluatesTo("2", "count(//jvm[@current='yes'])", myJavaFlavours); assertXpathValuesEqual("//jvm[4]/@latest", "//jvm[4]/@current", myJavaFlavours); assertXpathValuesNotEqual("//jvm[2]/@current", "//jvm[3]/@current", myJavaFlavours); }
  • 19. Scala XML val ns = <foo><bar><baz/>Text</bar><bin/></foo> ns "foo" // => <foo><bar>...</bar><bin/></foo> ns "foo" "bar" // => <bar><baz/>Text</bar> val ns = <foo id="bar"/> ns "@id" // => Text(bar)
  • 20. JRuby REXML xml = File.read('posts.xml') puts Benchmark.measure { doc, posts = REXML::Document.new(xml), [] doc.elements.each('posts/post') do |p| posts << p.attributes End }
  • 21. Model Date verify • After execute the method you want to know every thing is correct.
  • 22. Solutions • DbUnit can also help you to verify that your database data match an expected set of values. • Call hibernate Dao Directly • Verify by other business method
  • 23. Files verify • Custom utile • public static void checkDuplicateFiles(File dir)
  • 24. Notification verify • An ActiveMQ client utile • It should run in other thread and subscript before call method • It should time out if no message received after long time
  • 25. Wait future notification "There should have imageCreated notification after image is created " should { " ok " in { val srcPid = DataPrepare.createPatient val msg = future(ActiveMQ.receive("topic.imageCreated")) val imgId = DataPrepare.prepareImage(srcPid)._1 //wait a 3 second awaitAll(3000,msg) foreach{ v => v match { case Some(m) => { m.toString must contain (srcPid) m.toString must contain (imgId) } case None => 1 must_== 2 } } } }
  • 27. EasyMock public void testTransferShouldDebitSourceAccount(){ AccountController controller = new AccountController(); Account from = createMock(Account.class) Account to = createMock(Account.class) from.debit(42); replay(from); replay(to); controller.transfer(from,to,42); verify(from); }
  • 28. jMock Mockery context = new Mockery(); public void testTransferShouldDebitSourceAccount(){ AccountController controller = new AccountController(); Account from = context.mock(Account.class) Account to = context.mock(Account.class) context.checking(new Expectations() {{ oneOf(from).debit(42); }} controller.transfer(from,to,42); context.assertIsSatisfied(); }
  • 29. mockito public void testTransferShouldDebitSourceAccount(){ AccountController controller = new AccountController(); Account from = mock(Account.class) Account to = mock(Account.class) controller.transfer(from,to,42); verify(from).debit(42); }
  • 30. public void testTransferShouldDebitSourceAccount(){ AccountController controller = new AccountController(); Account from = createMock(Account.class) Account to = createMock(Account.class) from.debit(42); replay(from); replay(to); controller.transfer(from,to,42); verify(from); } Mockery context = new Mockery(); public void testTransferShouldDebitSourceAccount(){ AccountController controller = new AccountController(); Account from = context.mock(Account.class) Account to = context.mock(Account.class) context.checking(new Expectations() {{ oneOf(from).debit(42); }} controller.transfer(from,to,42); context.assertIsSatisfied(); } public void testTransferShouldDebitSourceAccount(){ AccountController controller = new AccountController(); Account from = mock(Account.class) Account to = mock(Account.class) controller.transfer(from,to,42); verify(from).debit(42); }
  • 32. Environment and Context Name Location Interaction DB Internal JDBC connect with hibernate ActiveMQ Internal socket,ActiveMQ library Demo External cmd,socket Config file External read/write file Registration table External system tool,reg Schedule External trigger 2D External cmd,socket Object Applications External cmd
  • 33. Unit testing styles • BDD • Better test code • It’s better not only for developer. If P.O. can read our test code is better • The test code should like specifics
  • 34. Traditional Status assert test public void testAdd() { int num1 = 3; int num2 = 2; int total = 5; int sum = 0; sum = Math.add(num1, num2); assertEquals(sum, total); }
  • 35. BDD specifications style class HelloWorldSpec extends Specification { "The 'Hello world' string" should { "contain 11 characters" in { "Hello world" must have size(11) } "start with 'Hello'" in { "Hello world" must startWith("Hello") } "end with 'world'" in { "Hello world" must endWith("world") } } "The sum" should { “ equals total " in { val num1 = 2,num2 = 3, total = 5 Math.add(num1, num2) must equalsTo(total) } } }