SlideShare une entreprise Scribd logo
1  sur  24
Télécharger pour lire hors ligne
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...

Contenu connexe

Tendances

Advanced Postgres Monitoring
Advanced Postgres MonitoringAdvanced Postgres Monitoring
Advanced Postgres Monitoring
Denish Patel
 

Tendances (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
 
Security: Odoo Code Hardening
Security: Odoo Code HardeningSecurity: Odoo Code Hardening
Security: Odoo Code Hardening
 
Shell scripting
Shell scriptingShell scripting
Shell scripting
 
An in Depth Journey into Odoo's ORM
An in Depth Journey into Odoo's ORMAn in Depth Journey into Odoo's ORM
An in Depth Journey into Odoo's ORM
 
Learn flask in 90mins
Learn flask in 90minsLearn flask in 90mins
Learn flask in 90mins
 
Odoo - From v7 to v8: the new api
Odoo - From v7 to v8: the new apiOdoo - From v7 to v8: the new api
Odoo - From v7 to v8: the new api
 
Tuning Apache/MySQL/PHP para desenvolvedores
Tuning Apache/MySQL/PHP para desenvolvedoresTuning Apache/MySQL/PHP para desenvolvedores
Tuning Apache/MySQL/PHP para desenvolvedores
 
Powershell Demo Presentation
Powershell Demo PresentationPowershell Demo Presentation
Powershell Demo Presentation
 
MongoDB Performance Tuning
MongoDB Performance TuningMongoDB Performance Tuning
MongoDB Performance Tuning
 
Advanced PHPUnit Testing
Advanced PHPUnit TestingAdvanced PHPUnit Testing
Advanced PHPUnit Testing
 
Deep dive into PostgreSQL statistics.
Deep dive into PostgreSQL statistics.Deep dive into PostgreSQL statistics.
Deep dive into PostgreSQL statistics.
 
Odoo Experience 2018 - The Odoo JS Framework
Odoo Experience 2018 - The Odoo JS FrameworkOdoo Experience 2018 - The Odoo JS Framework
Odoo Experience 2018 - The Odoo JS Framework
 
Odoo - Create themes for website
Odoo - Create themes for websiteOdoo - Create themes for website
Odoo - Create themes for website
 
Cron
CronCron
Cron
 
Advanced Postgres Monitoring
Advanced Postgres MonitoringAdvanced Postgres Monitoring
Advanced Postgres Monitoring
 
Improving the performance of Odoo deployments
Improving the performance of Odoo deploymentsImproving the performance of Odoo deployments
Improving the performance of Odoo deployments
 
[DrupalCampSpain2022] Introducción al desarrollo de módulos en Drupal 9
[DrupalCampSpain2022] Introducción al desarrollo de módulos en Drupal 9[DrupalCampSpain2022] Introducción al desarrollo de módulos en Drupal 9
[DrupalCampSpain2022] Introducción al desarrollo de módulos en Drupal 9
 
JavaScript - An Introduction
JavaScript - An IntroductionJavaScript - An Introduction
JavaScript - An Introduction
 
Regular Expressions in PHP
Regular Expressions in PHPRegular Expressions in PHP
Regular Expressions in PHP
 
2017 Pycon KR - Django/AWS 를 이용한 쇼핑몰 서비스 구축
2017 Pycon KR - Django/AWS 를 이용한 쇼핑몰 서비스 구축2017 Pycon KR - Django/AWS 를 이용한 쇼핑몰 서비스 구축
2017 Pycon KR - Django/AWS 를 이용한 쇼핑몰 서비스 구축
 

Similaire à 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
 

Similaire à 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
 

Plus de Odoo

Plus de 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
 

Dernier

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Dernier (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 

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