SlideShare uma empresa Scribd logo
1 de 24
Baixar para ler 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...

Mais conteúdo relacionado

Mais procurados

Using runbot to test all your developments automatically
Using runbot to test all your developments automaticallyUsing runbot to test all your developments automatically
Using runbot to test all your developments automaticallyOdoo
 
Scalable Django Architecture
Scalable Django ArchitectureScalable Django Architecture
Scalable Django ArchitectureRami Sayar
 
Security: Odoo Code Hardening
Security: Odoo Code HardeningSecurity: Odoo Code Hardening
Security: Odoo Code HardeningOdoo
 
A Basic Django Introduction
A Basic Django IntroductionA Basic Django Introduction
A Basic Django IntroductionGanga Ram
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to DjangoKnoldus Inc.
 
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-ViewerOdoo
 
How to Design Resilient Odoo Crons
How to Design Resilient Odoo CronsHow to Design Resilient Odoo Crons
How to Design Resilient Odoo CronsOdoo
 
Introduction to flutter's basic concepts
Introduction to flutter's basic conceptsIntroduction to flutter's basic concepts
Introduction to flutter's basic conceptsKumaresh Chandra Baruri
 
Javascript Module Patterns
Javascript Module PatternsJavascript Module Patterns
Javascript Module PatternsNicholas Jansma
 
What Is Express JS?
What Is Express JS?What Is Express JS?
What Is Express JS?Simplilearn
 
Odoo Experience 2018 - Code Profiling in Odoo
Odoo Experience 2018 - Code Profiling in OdooOdoo Experience 2018 - Code Profiling in Odoo
Odoo Experience 2018 - Code Profiling in OdooElínAnna Jónasdóttir
 
Understanding angular js
Understanding angular jsUnderstanding angular js
Understanding angular jsAayush Shrestha
 
An Introduction To NoSQL & MongoDB
An Introduction To NoSQL & MongoDBAn Introduction To NoSQL & MongoDB
An Introduction To NoSQL & MongoDBLee Theobald
 
What is Node.js | Node.js Tutorial for Beginners | Node.js Modules | Node.js ...
What is Node.js | Node.js Tutorial for Beginners | Node.js Modules | Node.js ...What is Node.js | Node.js Tutorial for Beginners | Node.js Modules | Node.js ...
What is Node.js | Node.js Tutorial for Beginners | Node.js Modules | Node.js ...Edureka!
 
Json in Postgres - the Roadmap
 Json in Postgres - the Roadmap Json in Postgres - the Roadmap
Json in Postgres - the RoadmapEDB
 
Using Sinatra to Build REST APIs in Ruby
Using Sinatra to Build REST APIs in RubyUsing Sinatra to Build REST APIs in Ruby
Using Sinatra to Build REST APIs in RubyLaunchAny
 
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...Edureka!
 

Mais procurados (20)

Using runbot to test all your developments automatically
Using runbot to test all your developments automaticallyUsing runbot to test all your developments automatically
Using runbot to test all your developments automatically
 
Expressjs
ExpressjsExpressjs
Expressjs
 
Scalable Django Architecture
Scalable Django ArchitectureScalable Django Architecture
Scalable Django Architecture
 
Security: Odoo Code Hardening
Security: Odoo Code HardeningSecurity: Odoo Code Hardening
Security: Odoo Code Hardening
 
A Basic Django Introduction
A Basic Django IntroductionA Basic Django Introduction
A Basic Django Introduction
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
 
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
 
How to Design Resilient Odoo Crons
How to Design Resilient Odoo CronsHow to Design Resilient Odoo Crons
How to Design Resilient Odoo Crons
 
Express JS
Express JSExpress JS
Express JS
 
Introduction to flutter's basic concepts
Introduction to flutter's basic conceptsIntroduction to flutter's basic concepts
Introduction to flutter's basic concepts
 
Javascript Module Patterns
Javascript Module PatternsJavascript Module Patterns
Javascript Module Patterns
 
Apache airflow
Apache airflowApache airflow
Apache airflow
 
What Is Express JS?
What Is Express JS?What Is Express JS?
What Is Express JS?
 
Odoo Experience 2018 - Code Profiling in Odoo
Odoo Experience 2018 - Code Profiling in OdooOdoo Experience 2018 - Code Profiling in Odoo
Odoo Experience 2018 - Code Profiling in Odoo
 
Understanding angular js
Understanding angular jsUnderstanding angular js
Understanding angular js
 
An Introduction To NoSQL & MongoDB
An Introduction To NoSQL & MongoDBAn Introduction To NoSQL & MongoDB
An Introduction To NoSQL & MongoDB
 
What is Node.js | Node.js Tutorial for Beginners | Node.js Modules | Node.js ...
What is Node.js | Node.js Tutorial for Beginners | Node.js Modules | Node.js ...What is Node.js | Node.js Tutorial for Beginners | Node.js Modules | Node.js ...
What is Node.js | Node.js Tutorial for Beginners | Node.js Modules | Node.js ...
 
Json in Postgres - the Roadmap
 Json in Postgres - the Roadmap Json in Postgres - the Roadmap
Json in Postgres - the Roadmap
 
Using Sinatra to Build REST APIs in Ruby
Using Sinatra to Build REST APIs in RubyUsing Sinatra to Build REST APIs in Ruby
Using Sinatra to Build REST APIs in Ruby
 
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
 

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

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 ...Max Barrass
 
Write unit test from scratch
Write unit test from scratchWrite unit test from scratch
Write unit test from scratchWen-Shih Chao
 
Continuous Integration In Php
Continuous Integration In PhpContinuous Integration In Php
Continuous Integration In PhpWilco Jansen
 
[SRD UGM] Sharing Session - Software Testing
[SRD UGM] Sharing Session - Software Testing[SRD UGM] Sharing Session - Software Testing
[SRD UGM] Sharing Session - Software TestingAhmad Widardi
 
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 8Sam Becker
 
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 TettelarGiel Tettelaar
 
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 LHGLinaro
 
Boosting individual feedback with AutoFeedback
Boosting individual feedback with AutoFeedbackBoosting individual feedback with AutoFeedback
Boosting individual feedback with AutoFeedbackAntonio García-Domínguez
 
Best practices for JavaScript RIAs
Best practices for JavaScript RIAsBest practices for JavaScript RIAs
Best practices for JavaScript RIAsCarlos Ble
 
Containerize your Blackbox tests
Containerize your Blackbox testsContainerize your Blackbox tests
Containerize your Blackbox testsKevin Beeman
 
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 AndroidDavid Carver
 
Lessons learned on software testing automation
Lessons learned on software testing automationLessons learned on software testing automation
Lessons learned on software testing automationgaoliang641
 
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)Engineor
 
Software Testing & Debugging
Software Testing & DebuggingSoftware Testing & Debugging
Software Testing & DebuggingComputing Cage
 

Semelhante a 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
 

Mais de Odoo

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
 
Keynote - Vision & Strategy
Keynote - Vision & StrategyKeynote - Vision & Strategy
Keynote - Vision & StrategyOdoo
 
Opening Keynote - Unveilling Odoo 14
Opening Keynote - Unveilling Odoo 14Opening Keynote - Unveilling Odoo 14
Opening Keynote - Unveilling Odoo 14Odoo
 
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 CapabilityOdoo
 
Managing Multi-channel Selling with Odoo
Managing Multi-channel Selling with OdooManaging Multi-channel Selling with Odoo
Managing Multi-channel Selling with OdooOdoo
 
Product Configurator: Advanced Use Case
Product Configurator: Advanced Use CaseProduct Configurator: Advanced Use Case
Product Configurator: Advanced Use CaseOdoo
 
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?Odoo
 
Rock Your Logistics with Advanced Operations
Rock Your Logistics with Advanced OperationsRock Your Logistics with Advanced Operations
Rock Your Logistics with Advanced OperationsOdoo
 
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 organizationOdoo
 
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 CrisisOdoo
 
Running a University with Odoo
Running a University with OdooRunning a University with Odoo
Running a University with OdooOdoo
 
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 OdooOdoo
 
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 foodOdoo
 
Migration from Salesforce to Odoo
Migration from Salesforce to OdooMigration from Salesforce to Odoo
Migration from Salesforce to OdooOdoo
 
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 LearningOdoo
 
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 Odoo
 
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 LabelOdoo
 
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 FoldOdoo
 
From Shopify to Odoo
From Shopify to OdooFrom Shopify to Odoo
From Shopify to OdooOdoo
 
Digital Transformation at Old MacDonald Farms: A Personal Story
Digital Transformation at Old MacDonald Farms: A Personal StoryDigital Transformation at Old MacDonald Farms: A Personal Story
Digital Transformation at Old MacDonald Farms: A Personal StoryOdoo
 

Mais 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!
 
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
 
Digital Transformation at Old MacDonald Farms: A Personal Story
Digital Transformation at Old MacDonald Farms: A Personal StoryDigital Transformation at Old MacDonald Farms: A Personal Story
Digital Transformation at Old MacDonald Farms: A Personal Story
 

Último

Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
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.pdfsudhanshuwaghmare1
 
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 2024Victor Rentea
 
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 Pakistandanishmna97
 
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 FMESafe Software
 
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 REVIEWERMadyBayot
 
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 2024The Digital Insurer
 
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 AmsterdamUiPathCommunity
 
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...DianaGray10
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
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 DiscoveryTrustArc
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
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, ...apidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
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 challengesrafiqahmad00786416
 
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 connectorsNanddeep Nachan
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
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 Processorsdebabhi2
 

Último (20)

Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
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
 
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
 
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
 
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
 
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
 
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
 
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
 
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...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
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
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
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, ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
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
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
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
 

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