SlideShare a Scribd company logo
1 of 24
Download to read offline
OpenERP Testing Tools
Unittest, YAML, OERPScenario
Alexandre Fayolle <alexandre.fayolle@camptocamp.com>
2/24www.camptocamp.com /
Manual testing
■ Is boring
■ Is error prone
■ Is repetitive
■ Is boring
■ Is tedious
■ Is repetitive
3/24www.camptocamp.com /
What is automated testing?
■ Our job as software developers is to teach the
computer how to do the boring, tedious, repetitive
stuff
■ And then watch the computer do it for us
○ Again
○ And again
○ And again
4/24www.camptocamp.com /
What is this talk not about?
■ Exploratory testing
■ QA
■ Arguing about what is unit testing vs. integration
testing vs. behavior testing vs. Younameit testing
■ Arguing about all the bad reasons you come up with
imagine for not writing tests
5/24www.camptocamp.com /
So what is it about?
■ Testing as part of the process of writing and
maintaining code
■ Convince you of the importance of writing automated
tests
■ Show you tools that will help you write and run tests
■ Help you enhance the quality of your development
with tests
6/24www.camptocamp.com /
Your duty as a software developer
■ Write maintainable code
■ Write tests for that code
○ Tests help understand the intent of a piece of code
○ Tests help understand the impact of a modification
■ Even better: write the test for a feature / bug first, and then
the code that makes the test pass, TDD style
■ Write automated tests for bugs you see
■ Ensure your code fixes the tests
7/24www.camptocamp.com /
TDD rhythm
■ Write new test : Red
■ Make test pass : Green
■ Refactor : Green
■ Start again !
Image source:
http://www.peterprovost.org/blog/2012/05/02/kata-the-only-way-to-learn-tdd
8/24www.camptocamp.com /
Testing tools : unittest
■ Written in Python, using the well known unittest2 stdlib module
■ Extensions to unittest2 available in openerp.test.common
○ new base test case class TransactionCase:
- self.cr, self.uid
- rollbacks between each tests method
○ new base test case class SingleTransactionTestCase:
- self.cr, self.uid
- one big transaction for all the test methods (caution there)
■ Write the setUp method (don't forget to call super(YourClass, self).setUp()
■ Write the different tests methods you want on the objects created in setUp
■ Don't forget to add your test module in tests/__init__.py, generally in the checks suite
■ Lots of information available on https://doc.openerp.com/trunk/server/05_test_framework/
9/24www.camptocamp.com /
Unittest example
lunch/tests/test_lunch.py
10/24www.camptocamp.com /
Testing tools : YAML tests
■ Written in YAML
■ YAML node shortcuts provided by OpenERP to:
○ create records (!record), with support for refering to
other models by XML ID
○ send workflow messages (!workflow)
○ make testing assertions (!assert)
○ write raw Python in YAML blocks (!python)
11/24www.camptocamp.com /
YAML test example
sale_stock/test/picking_order_policy.yml
12/24www.camptocamp.com /
Testing tools : BDD (behave / OERPScenario)
■ Behavior Driven Development style
■ Possible to decouple the behavior of the test from
the implementation
■ Reusable DSL for common operations
■ Interface between the end user and the developer
13/24www.camptocamp.com /
Behave
■ Behave is a Python project bringing the Gherkin language (used by Ruby
project Cucumber to express test features) to the Python world
■ Features:
○ Implementation of Gherkin (Feature, Scenario, tags...)
○ Tabular data
○ Text blocks
○ Test feature discovery
○ Step definition helpers (Python decorators)
○ Test runner, with scenario selection using tags in the Feature definitions, optional
syntax coloring, reports...
14/24www.camptocamp.com /
OERPScenario
■ OERPScenario is a project by Camptocamp to help write BDD features for OpenERP,
○ Original version written in Ruby + OOoR (OpenObject on Rails) for Cucumber
○ Ported to Python using ERPPeek as the low level layer for interacting with OpenERP
○ Port got inspiration from openobject-mirliton project
https://github.com/florentx/openobject-mirliton
■ Can use run OpenERP inside the test process
○ Or connect to remote instance
■ Extensible library of steps / phrases for use in tests and instance configuration
■ Helpers to refer to other records by name or by xml id
15/24www.camptocamp.com /
BDD example : feature definition
16/24www.camptocamp.com /
BDD example : step definition
17/24www.camptocamp.com /
Choosing the right tool
Use unittest when:
■ you want to test a specific method of a model
■ your testing needs the full flexibility of Python
■ you need to see that the test pass on
http://runbot.openerp.com
18/24www.camptocamp.com /
Choosing the right tool
Use YAML tests when:
■ you need to create a complex setup, with different objects
■ you need to test workflows
■ the size of !python blocks you need to write is manageable
■ you need to see that the test pass on
http://runbot.openerp.com
19/24www.camptocamp.com /
Choosing the right tool
Use behave/OERPScenario tests when:
■ you need to validate a feature with your customer
■ you want to capture customer requirements
○ possibly long before implementation is starts
■ you want to write cross module tests
■ you need to abstract the implementation away from
the test specification
20/24www.camptocamp.com /
Current state of testing in OpenERP 7
■ There is an existing test base in the framework and the addons
○ The runbot ensures that they pass
○ Caution: the presence of YAML tests files in the sources of an addon does not
mean that the tests are run
○ There are some unittests (less than 20 standard addons)
○ Hard to get an idea of the coverage
■ The state of community addons is alarming!
○ Almost no YAML tests or unittests
○ Some behave tests available
○ No support of runbot for community addons
21/24www.camptocamp.com /
Bug reports, patches and tests
■ In an ideal world, each bug fix comes with one or more tests that the developer added
to reproduce the bug, and then check that the bug was fixed
○ When you report a bug against openobject­server or openobject­addons, try to
include in addition to the "steps to reproduce" an automated test, to help the support team
reproduce your issue
○ Same thing for community addons
■ When you submit a patch, please make sure your patch includes a test showing what
you are fixing
○ This greatly eases the work of the reviewers, and the backporting to the OCB branches
■ When you submit new community modules, try to provide some tests
■ When you submit patches to community modules, tests are appreciated too
22/24www.camptocamp.com /
How MP without tests should be handled
Message:
Please add at least one automated
test showing the code works as intended
Review: needs fixing
23/24www.camptocamp.com /
URLs
■ Projects
○ http://launchpad.net/oerpscenario
○ https://pypi.python.org/pypi/unittest2
○ https://doc.openerp.com/trunk/server/05_test_framework/
○ https://pypi.python.org/pypi/behave
○ https://pypi.python.org/pypi/anybox.recipe.openerp/
■ Development philosophies
○ http://en.wikipedia.org/wiki/Test_Driven_Development
○ http://en.wikipedia.org/wiki/Behavior_driven_development
■ Testing
○ http://tap.szabgab.com/
○ http://en.wikipedia.org/wiki/Exploratory_testing
24/24www.camptocamp.com /
Questions
■ If time allows...

More Related Content

What's hot

Object Oriented Programming with Laravel - Session 2
Object Oriented Programming with Laravel - Session 2Object Oriented Programming with Laravel - Session 2
Object Oriented Programming with Laravel - Session 2
Shahrzad Peyman
 

What's hot (20)

Impact of the New ORM on Your Modules
Impact of the New ORM on Your ModulesImpact of the New ORM on Your Modules
Impact of the New ORM on Your Modules
 
laravel.pptx
laravel.pptxlaravel.pptx
laravel.pptx
 
Odoo implementation
Odoo implementationOdoo implementation
Odoo implementation
 
Auditing and Monitoring PostgreSQL/EPAS
Auditing and Monitoring PostgreSQL/EPASAuditing and Monitoring PostgreSQL/EPAS
Auditing and Monitoring PostgreSQL/EPAS
 
Efficiencie solutions odoo erp presentation
Efficiencie solutions odoo erp presentationEfficiencie solutions odoo erp presentation
Efficiencie solutions odoo erp presentation
 
Sql ppt
Sql pptSql ppt
Sql ppt
 
Backup & recovery with rman
Backup & recovery with rmanBackup & recovery with rman
Backup & recovery with rman
 
Ansible
AnsibleAnsible
Ansible
 
Laravel Routing and Query Building
Laravel   Routing and Query BuildingLaravel   Routing and Query Building
Laravel Routing and Query Building
 
Odoo's Test Framework - Learn Best Practices
Odoo's Test Framework - Learn Best PracticesOdoo's Test Framework - Learn Best Practices
Odoo's Test Framework - Learn Best Practices
 
Deploying & Scaling your Odoo Server
Deploying & Scaling your Odoo ServerDeploying & Scaling your Odoo Server
Deploying & Scaling your Odoo Server
 
Always on in sql server 2017
Always on in sql server 2017Always on in sql server 2017
Always on in sql server 2017
 
Odoo presentation
Odoo presentationOdoo presentation
Odoo presentation
 
MYSQL-Database
MYSQL-DatabaseMYSQL-Database
MYSQL-Database
 
Object Oriented Programming with Laravel - Session 2
Object Oriented Programming with Laravel - Session 2Object Oriented Programming with Laravel - Session 2
Object Oriented Programming with Laravel - Session 2
 
Percona server for MySQL 제품 소개
Percona server for MySQL 제품 소개Percona server for MySQL 제품 소개
Percona server for MySQL 제품 소개
 
Laravel Blade Template
Laravel Blade TemplateLaravel Blade Template
Laravel Blade Template
 
Odoo Online platform: architecture and challenges
Odoo Online platform: architecture and challengesOdoo Online platform: architecture and challenges
Odoo Online platform: architecture and challenges
 
Introduction to NodeJS
Introduction to NodeJSIntroduction to NodeJS
Introduction to NodeJS
 
MySQL8.0_performance_schema.pptx
MySQL8.0_performance_schema.pptxMySQL8.0_performance_schema.pptx
MySQL8.0_performance_schema.pptx
 

Similar to Why and how to develop OpenERP test scenarios (in python and using OERPScenario), Alexandre Fayolle, Camptocamp

Best practices for JavaScript RIAs
Best practices for JavaScript RIAsBest practices for JavaScript RIAs
Best practices for JavaScript RIAs
Carlos Ble
 
Tips and Tricks for Testing Lambda Expressions in Android
Tips and Tricks for Testing Lambda Expressions in AndroidTips and Tricks for Testing Lambda Expressions in Android
Tips and Tricks for Testing Lambda Expressions in Android
David Carver
 

Similar to Why and how to develop OpenERP test scenarios (in python and using OERPScenario), Alexandre Fayolle, Camptocamp (20)

How to establish ways of working that allows shifting-left of the automation ...
How to establish ways of working that allows shifting-left of the automation ...How to establish ways of working that allows shifting-left of the automation ...
How to establish ways of working that allows shifting-left of the automation ...
 
Write unit test from scratch
Write unit test from scratchWrite unit test from scratch
Write unit test from scratch
 
Unit testing (eng)
Unit testing (eng)Unit testing (eng)
Unit testing (eng)
 
Evolve with laravel
Evolve with laravelEvolve with laravel
Evolve with laravel
 
Continuous Integration In Php
Continuous Integration In PhpContinuous Integration In Php
Continuous Integration In Php
 
[SRD UGM] Sharing Session - Software Testing
[SRD UGM] Sharing Session - Software Testing[SRD UGM] Sharing Session - Software Testing
[SRD UGM] Sharing Session - Software Testing
 
Software Testing and Debugging
Software Testing and DebuggingSoftware Testing and Debugging
Software Testing and Debugging
 
Automated testing
Automated testingAutomated testing
Automated testing
 
Test all the things! Automated testing with Drupal 8
Test all the things! Automated testing with Drupal 8Test all the things! Automated testing with Drupal 8
Test all the things! Automated testing with Drupal 8
 
Dot all 2019 | Testing with Craft | Giel Tettelar
Dot all 2019 | Testing with Craft | Giel TettelarDot all 2019 | Testing with Craft | Giel Tettelar
Dot all 2019 | Testing with Craft | Giel Tettelar
 
HKG15-411: Browser Testing Framework for LHG
HKG15-411: Browser Testing Framework for LHGHKG15-411: Browser Testing Framework for LHG
HKG15-411: Browser Testing Framework for LHG
 
Boosting individual feedback with AutoFeedback
Boosting individual feedback with AutoFeedbackBoosting individual feedback with AutoFeedback
Boosting individual feedback with AutoFeedback
 
Best practices for JavaScript RIAs
Best practices for JavaScript RIAsBest practices for JavaScript RIAs
Best practices for JavaScript RIAs
 
UPC Plone Testing Talk
UPC Plone Testing TalkUPC Plone Testing Talk
UPC Plone Testing Talk
 
Containerize your Blackbox tests
Containerize your Blackbox testsContainerize your Blackbox tests
Containerize your Blackbox tests
 
Tips and Tricks for Testing Lambda Expressions in Android
Tips and Tricks for Testing Lambda Expressions in AndroidTips and Tricks for Testing Lambda Expressions in Android
Tips and Tricks for Testing Lambda Expressions in Android
 
Lessons learned on software testing automation
Lessons learned on software testing automationLessons learned on software testing automation
Lessons learned on software testing automation
 
Testing Spring Applications
Testing Spring ApplicationsTesting Spring Applications
Testing Spring Applications
 
Codeception: introduction to php testing (v2 - Aberdeen php)
Codeception: introduction to php testing (v2 - Aberdeen php)Codeception: introduction to php testing (v2 - Aberdeen php)
Codeception: introduction to php testing (v2 - Aberdeen php)
 
Software Testing & Debugging
Software Testing & DebuggingSoftware Testing & Debugging
Software Testing & Debugging
 

More from Odoo

More from Odoo (20)

Timesheet Workshop: The Timesheet App People Love!
Timesheet Workshop: The Timesheet App People Love!Timesheet Workshop: The Timesheet App People Love!
Timesheet Workshop: The Timesheet App People Love!
 
Odoo 3D Product View with Google Model-Viewer
Odoo 3D Product View with Google Model-ViewerOdoo 3D Product View with Google Model-Viewer
Odoo 3D Product View with Google Model-Viewer
 
Keynote - Vision & Strategy
Keynote - Vision & StrategyKeynote - Vision & Strategy
Keynote - Vision & Strategy
 
Opening Keynote - Unveilling Odoo 14
Opening Keynote - Unveilling Odoo 14Opening Keynote - Unveilling Odoo 14
Opening Keynote - Unveilling Odoo 14
 
Extending Odoo with a Comprehensive Budgeting and Forecasting Capability
Extending Odoo with a Comprehensive Budgeting and Forecasting CapabilityExtending Odoo with a Comprehensive Budgeting and Forecasting Capability
Extending Odoo with a Comprehensive Budgeting and Forecasting Capability
 
Managing Multi-channel Selling with Odoo
Managing Multi-channel Selling with OdooManaging Multi-channel Selling with Odoo
Managing Multi-channel Selling with Odoo
 
Product Configurator: Advanced Use Case
Product Configurator: Advanced Use CaseProduct Configurator: Advanced Use Case
Product Configurator: Advanced Use Case
 
Accounting Automation: How Much Money We Saved and How?
Accounting Automation: How Much Money We Saved and How?Accounting Automation: How Much Money We Saved and How?
Accounting Automation: How Much Money We Saved and How?
 
Rock Your Logistics with Advanced Operations
Rock Your Logistics with Advanced OperationsRock Your Logistics with Advanced Operations
Rock Your Logistics with Advanced Operations
 
Transition from a cost to a flow-centric organization
Transition from a cost to a flow-centric organizationTransition from a cost to a flow-centric organization
Transition from a cost to a flow-centric organization
 
Synchronization: The Supply Chain Response to Overcome the Crisis
Synchronization: The Supply Chain Response to Overcome the CrisisSynchronization: The Supply Chain Response to Overcome the Crisis
Synchronization: The Supply Chain Response to Overcome the Crisis
 
Running a University with Odoo
Running a University with OdooRunning a University with Odoo
Running a University with Odoo
 
Down Payments on Purchase Orders in Odoo
Down Payments on Purchase Orders in OdooDown Payments on Purchase Orders in Odoo
Down Payments on Purchase Orders in Odoo
 
Odoo Implementation in Phases - Success Story of a Retail Chain 3Sach food
Odoo Implementation in Phases - Success Story of a Retail Chain 3Sach foodOdoo Implementation in Phases - Success Story of a Retail Chain 3Sach food
Odoo Implementation in Phases - Success Story of a Retail Chain 3Sach food
 
Migration from Salesforce to Odoo
Migration from Salesforce to OdooMigration from Salesforce to Odoo
Migration from Salesforce to Odoo
 
Preventing User Mistakes by Using Machine Learning
Preventing User Mistakes by Using Machine LearningPreventing User Mistakes by Using Machine Learning
Preventing User Mistakes by Using Machine Learning
 
Becoming an Odoo Expert: How to Prepare for the Certification
Becoming an Odoo Expert: How to Prepare for the Certification Becoming an Odoo Expert: How to Prepare for the Certification
Becoming an Odoo Expert: How to Prepare for the Certification
 
Instant Printing of any Odoo Report or Shipping Label
Instant Printing of any Odoo Report or Shipping LabelInstant Printing of any Odoo Report or Shipping Label
Instant Printing of any Odoo Report or Shipping Label
 
How Odoo helped an Organization Grow 3 Fold
How Odoo helped an Organization Grow 3 FoldHow Odoo helped an Organization Grow 3 Fold
How Odoo helped an Organization Grow 3 Fold
 
From Shopify to Odoo
From Shopify to OdooFrom Shopify to Odoo
From Shopify to Odoo
 

Recently uploaded

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 

Recently uploaded (20)

Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
"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 ...
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
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
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
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
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
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
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
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, ...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
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
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 

Why and how to develop OpenERP test scenarios (in python and using OERPScenario), Alexandre Fayolle, Camptocamp

  • 1. OpenERP Testing Tools Unittest, YAML, OERPScenario Alexandre Fayolle <alexandre.fayolle@camptocamp.com>
  • 2. 2/24www.camptocamp.com / Manual testing ■ Is boring ■ Is error prone ■ Is repetitive ■ Is boring ■ Is tedious ■ Is repetitive
  • 3. 3/24www.camptocamp.com / What is automated testing? ■ Our job as software developers is to teach the computer how to do the boring, tedious, repetitive stuff ■ And then watch the computer do it for us ○ Again ○ And again ○ And again
  • 4. 4/24www.camptocamp.com / What is this talk not about? ■ Exploratory testing ■ QA ■ Arguing about what is unit testing vs. integration testing vs. behavior testing vs. Younameit testing ■ Arguing about all the bad reasons you come up with imagine for not writing tests
  • 5. 5/24www.camptocamp.com / So what is it about? ■ Testing as part of the process of writing and maintaining code ■ Convince you of the importance of writing automated tests ■ Show you tools that will help you write and run tests ■ Help you enhance the quality of your development with tests
  • 6. 6/24www.camptocamp.com / Your duty as a software developer ■ Write maintainable code ■ Write tests for that code ○ Tests help understand the intent of a piece of code ○ Tests help understand the impact of a modification ■ Even better: write the test for a feature / bug first, and then the code that makes the test pass, TDD style ■ Write automated tests for bugs you see ■ Ensure your code fixes the tests
  • 7. 7/24www.camptocamp.com / TDD rhythm ■ Write new test : Red ■ Make test pass : Green ■ Refactor : Green ■ Start again ! Image source: http://www.peterprovost.org/blog/2012/05/02/kata-the-only-way-to-learn-tdd
  • 8. 8/24www.camptocamp.com / Testing tools : unittest ■ Written in Python, using the well known unittest2 stdlib module ■ Extensions to unittest2 available in openerp.test.common ○ new base test case class TransactionCase: - self.cr, self.uid - rollbacks between each tests method ○ new base test case class SingleTransactionTestCase: - self.cr, self.uid - one big transaction for all the test methods (caution there) ■ Write the setUp method (don't forget to call super(YourClass, self).setUp() ■ Write the different tests methods you want on the objects created in setUp ■ Don't forget to add your test module in tests/__init__.py, generally in the checks suite ■ Lots of information available on https://doc.openerp.com/trunk/server/05_test_framework/
  • 10. 10/24www.camptocamp.com / Testing tools : YAML tests ■ Written in YAML ■ YAML node shortcuts provided by OpenERP to: ○ create records (!record), with support for refering to other models by XML ID ○ send workflow messages (!workflow) ○ make testing assertions (!assert) ○ write raw Python in YAML blocks (!python)
  • 11. 11/24www.camptocamp.com / YAML test example sale_stock/test/picking_order_policy.yml
  • 12. 12/24www.camptocamp.com / Testing tools : BDD (behave / OERPScenario) ■ Behavior Driven Development style ■ Possible to decouple the behavior of the test from the implementation ■ Reusable DSL for common operations ■ Interface between the end user and the developer
  • 13. 13/24www.camptocamp.com / Behave ■ Behave is a Python project bringing the Gherkin language (used by Ruby project Cucumber to express test features) to the Python world ■ Features: ○ Implementation of Gherkin (Feature, Scenario, tags...) ○ Tabular data ○ Text blocks ○ Test feature discovery ○ Step definition helpers (Python decorators) ○ Test runner, with scenario selection using tags in the Feature definitions, optional syntax coloring, reports...
  • 14. 14/24www.camptocamp.com / OERPScenario ■ OERPScenario is a project by Camptocamp to help write BDD features for OpenERP, ○ Original version written in Ruby + OOoR (OpenObject on Rails) for Cucumber ○ Ported to Python using ERPPeek as the low level layer for interacting with OpenERP ○ Port got inspiration from openobject-mirliton project https://github.com/florentx/openobject-mirliton ■ Can use run OpenERP inside the test process ○ Or connect to remote instance ■ Extensible library of steps / phrases for use in tests and instance configuration ■ Helpers to refer to other records by name or by xml id
  • 17. 17/24www.camptocamp.com / Choosing the right tool Use unittest when: ■ you want to test a specific method of a model ■ your testing needs the full flexibility of Python ■ you need to see that the test pass on http://runbot.openerp.com
  • 18. 18/24www.camptocamp.com / Choosing the right tool Use YAML tests when: ■ you need to create a complex setup, with different objects ■ you need to test workflows ■ the size of !python blocks you need to write is manageable ■ you need to see that the test pass on http://runbot.openerp.com
  • 19. 19/24www.camptocamp.com / Choosing the right tool Use behave/OERPScenario tests when: ■ you need to validate a feature with your customer ■ you want to capture customer requirements ○ possibly long before implementation is starts ■ you want to write cross module tests ■ you need to abstract the implementation away from the test specification
  • 20. 20/24www.camptocamp.com / Current state of testing in OpenERP 7 ■ There is an existing test base in the framework and the addons ○ The runbot ensures that they pass ○ Caution: the presence of YAML tests files in the sources of an addon does not mean that the tests are run ○ There are some unittests (less than 20 standard addons) ○ Hard to get an idea of the coverage ■ The state of community addons is alarming! ○ Almost no YAML tests or unittests ○ Some behave tests available ○ No support of runbot for community addons
  • 21. 21/24www.camptocamp.com / Bug reports, patches and tests ■ In an ideal world, each bug fix comes with one or more tests that the developer added to reproduce the bug, and then check that the bug was fixed ○ When you report a bug against openobject­server or openobject­addons, try to include in addition to the "steps to reproduce" an automated test, to help the support team reproduce your issue ○ Same thing for community addons ■ When you submit a patch, please make sure your patch includes a test showing what you are fixing ○ This greatly eases the work of the reviewers, and the backporting to the OCB branches ■ When you submit new community modules, try to provide some tests ■ When you submit patches to community modules, tests are appreciated too
  • 22. 22/24www.camptocamp.com / How MP without tests should be handled Message: Please add at least one automated test showing the code works as intended Review: needs fixing
  • 23. 23/24www.camptocamp.com / URLs ■ Projects ○ http://launchpad.net/oerpscenario ○ https://pypi.python.org/pypi/unittest2 ○ https://doc.openerp.com/trunk/server/05_test_framework/ ○ https://pypi.python.org/pypi/behave ○ https://pypi.python.org/pypi/anybox.recipe.openerp/ ■ Development philosophies ○ http://en.wikipedia.org/wiki/Test_Driven_Development ○ http://en.wikipedia.org/wiki/Behavior_driven_development ■ Testing ○ http://tap.szabgab.com/ ○ http://en.wikipedia.org/wiki/Exploratory_testing