SlideShare a Scribd company logo
WSO2 Test Automation
Framework
Approach and Adoption
By
Dharshana Warusavitharana
Senior Software Engineer, Test Automation
What will be Automated at WSO2
● Platform scenarios.
● Integration scenarios.
● UI scenarios.
● Real world use cases.
● Performance and Security scenarios.
● Patches provided.
Basic Understanding - Unit Test
● Focused on testing behavior of a
particular class, module or method.
● Smallest part of the application.
● Fast (less than 0.1 second per test)
● No external implementation
dependencies
(filesystem, database, web services, etc.). All dependencies are
faked for the test context.
● Can easily be parallelized, since each test is atomic
Integration Test
● Focused on verifying the integration
of one or more components together.
● May have external dependencies.
● A test that takes longer than a unit
Test should
Integration Tests - with in WSO2
● Executes on product pack created by build.
● Not depending on other product environments.
● Independent.
● Lightweight.
● Covers only scenarios related to features on individual
product.
Overview of Automation Framework
Test Automation Framework is to make automation
● Eazy
● Organized
● Relevant
● Optimized
Technology Outline
Test Framework Build Systems
Code Coverage
Tooling Support
Execution Environment
Flexibilities Provided By Automation Framework
● Manage several products inside single test.
● Manage users in several product domains.
● Deployment of artifacts for different products under different
users.
● Automatic authentication.
● Configured admin service clients as test oriented API.
● Retrieving test environment configurations easily.
● Running same test in both local and Stratos environments.
● Reporting TestNg and surefire reports for all your tests.
● Tooling support of Selenium and Jmeter.
Architecture Overview
● Depends on TestNg Listeners.
● Platform wide single framework
● Context providing interfaces.
● Admin Service based Automation API.
● Selenium page object repository and element mapper.
● Automation framework Utils.
● Coverage and Reporting.
Why TestNG
● Link JUnit but not JUnit
● Annotation based Architecture
● Test Grouping
● Extensibility features
○ Listeners
○ Bean Shell
○ Annotation Transformers
● Easiness of managing Test cases.
● Failed test execution (Straight and easy)
Automation Framework Overall Architecture
user.csv /
tenant.csv
automation.
properties
instrument.txt
Result
Automation Framework CoreTest
Dashboard
Maven
Test
Managers
Test Suite
Surefire
TestNg Automation
Framework API
Automation
Framework Utills
User
Populator
Coverage
(emma
Server
manager
Custom
Reporter
Context
Provider
Framework Core
Core
PlatformExecutionManager
PlatformSuiteManager
PlatformTestManager
PlatformAnnotationTransferManag
er
PlatformInvokedMethodManager
PlatformReportManager
Environment
Context
Framework
Annotations
Artifact Management
User Management
Server Management
Coverage
Custom Error Reporting
Execution Template - TestNg
Execution Started
@BeforeSuite
@AfterSuite
Execution Closed
@BeforeTest
@AfterTest
@BeforeClass
@BeforeGroups
@BeforeMethod
@AfterMethod
@AfterGroups
@AfterClass
Reference:- http://www.ibm.
com/developerworks/java/library/j-testng/
TestNg Listeners
● Listeners are interfaces allows to modify TestNG's
behavior.
● Listeners are binned to a testNg execution.
● Listeners implement the interface org.testng.ITestListener
○ IExecutionListener
■ Triggers at start and end of any execution.
■ ISuiteListener.
○ ITestListner
■ Triggers at suite start and end.
■ Triggers at Test start, Finish, Failure, Skip and partial failure.
● Reporters implement the interface org.testng.IReporter
○ Notified when all the suites have been run by TestNG.
○ The IReporter instance receives a summary of entire test run
Usage of Listeners
● PlatformExecutionManager (IExecutionListener)
○ onExecutionStart()
■ Emma instrumentations
■ Server start
○ onExecutionFinish()
■ Server Shutdown
■ Emma report generation
● PlatformSuiteManager (ISuiteListener)
○ Set environment properties ex- Key Store Paths
○ Populate Users.
Usage of Listeners contd..
● PlatformReportManager (IReporter)
○ Generate TestNg Report
○ Generate surefire report
○ Export data for Dashboard
● PlatformInvokedMethodManager (InvokedMethodListener)
○ Artifact deployment in platform scenarios.
● PlatformAnnotationTransferManager (IAnnotationTransformer)
○ Annotation-Platform-user type based test selection.
Context providing interfaces
● Execution Based context - automation.properties
● Platform Based Context - automation.properties
● User Based Context - user.csv / tenant.csv
● Coverage Based Context - instrumentation.txt
Automation Properties
stratos.test=false
#execution.environment = integration|platform|stratos
execution.environment=integration
#execution.mode = user|tenant|all
execution.mode=user
port.enable=true
carbon.web.context.enable=false
service.deployment.delay=30000
cluster.enable=true
product.list=ESB
builder.enable=true
coverage.enable=true
● To configure Test framework
for the environment and
configure package details
● Contains all information about The environment.
Server Management
● Needs to configure the server and start the server with in the
test case.
● Most of the cases it might be
○ Single serve with single instance
○ Single server with multiple instance
○ Multiple product servers in a clustered environment.
● In this module framework is managing
○ Extract and configure the server.
○ Add offsets and deploy custom modules needs for the test.
Test Execution Modes
● Handled by a custom annotation introduced at test class and method level
●
●
●
● Annotations are based on the execution environment and the user type of the test
● Tests are skipped at the "PlatformAnnotationTransferManager"
● integration_all, integration_user, integration_tenant, platform_all, platform_user,
platform_tenant, stratos, all
@SetEnvironment(executionEnvironments = {ExecutionEnvironment.integration_all})
public void createGroup() throws Exception
{ }
#execution.environment = integration|platform|stratos
execution.environment=integration
#execution.mode = user|tenant|all
execution.mode=user
Automation Framework API
● Test Friendly api wrapping service stubs.
○ Depends on service stubs.
○ Provides unified approach for perform verify and assert
of each admin service.
● Encapsulates the complexity of changing all available tests
in a case of a stub change.
● Maintain Page object classes for Selenium Automation.
● Using UI maps to store locators required for test scripts.
● Updates with the relevant release version.
Automation Framework Utils
● Includes all utility classes that can play supportive role inside a
test.
○ Ex :-
■ Axis2 Client.
■ Wire message monitor.
■ Custom server startup scenarios (Axis2, Tomcat,Qpid).
■ Concurrency test scenarios.
● Provides common methodology for all development teams to
maintain a set of supportive classes without changing the Core.
● Reusability of utility methods in integration and platform tests.
Reporting
● Includes TestNg reports ,
SureFire report, And Emma
Coverage report
● Directories containing separate
results for each suite ( Directory
name is as same as the suite
name).
● Surefire reports.
● index.html (Dashboard for
executed test).
|-- reports
| |-- BPSStructuredSuite
| | |-- classes.html
| | |-- FlowClient.html
| | |-- FlowClient.properties
| | |-- FlowClient.xml
| | |-- ForEachClient.html
| | |-- ForEachClient.properties
| | |-- ForEachClient.xml
| |-- index.html
| |-- junitreports
| | |-- TEST-org.wso2.automation.
common.test.bps.mgts.
BpelStructAct_FlowClient.xml
| | |-- TEST-org.wso2.automation.
common.test.bps.mgtst.
BpelStructAct_forEachClient.xml
Platform Automated Test Suite
● Distribution contain product integration and platform test jars.
● ANT based test jar executor - using TestNg ant task
● Ability to execute tests on different environments.
● Provide options to run test suites, packages and individual
classes.
● TestNg reports.
● Generate mail with test results.
Project Structure of Automated Tests
Bit on Automation (Tips and Tricks)
Referance - “Pragmatic Unit Testing in Java with JUnit” -Andrew Hunt
and David Thomas
● Tip#1: One Assertion Per Test
● Tip #2: Write a Test, Then Fix it
● Tip #3: Keep Tests Independent
● Tip #4: Use Good Design in Code & Tests
● Tip #5: Test for Basic Correctness
● Tip #6: You have made a mess So clean it.
Questions?

More Related Content

PPTX
"Introduction to JMeter" @ CPTM 3rd Session
PDF
Performance testing with jmeter
PPTX
Using Jenkins and Jmeter to build a scalable Load Testing solution
PDF
Testing Web Apps with Spring Framework
PDF
Mykola Kovsh - Functional API automation with Jmeter
PDF
Load Testing with JMeter
PPT
Performance testing and reporting with JMeter
PPTX
Performance Testing using Jmeter and Capacity Testing
"Introduction to JMeter" @ CPTM 3rd Session
Performance testing with jmeter
Using Jenkins and Jmeter to build a scalable Load Testing solution
Testing Web Apps with Spring Framework
Mykola Kovsh - Functional API automation with Jmeter
Load Testing with JMeter
Performance testing and reporting with JMeter
Performance Testing using Jmeter and Capacity Testing

What's hot (20)

PPTX
Snow Leopard
PPTX
Perfromane Test Tool jmeter
PPTX
Introduction to jmeter & how to view jmeter Test Result in Real-Time
PPT
Performance testing and_reporting_with_j_meter by Le Van Nghi
PDF
Introduction to JMeter
PPTX
Load runner & win runner
PDF
Android Meetup Slovenija #3 - Testing with Robolectric by Ivan Kust
DOC
Winrunner
PPTX
Elments Used on Jmeter
PPTX
Prometheus workshop
PPT
QTP&UFT Automation Framework
PDF
Munit Mule ESB
PPTX
Win runner testing tool
PPT
Emulation Error Recovery
PPTX
How we can measure server performance using jmeter?
PPTX
C#on linux
PPSX
Automation Framework 042009 V2
PDF
Winrunner
PDF
Testing Web Apps with Spring Framework 3.2
ODP
Soft Test Ireland - Introduction to Jakarta Jmeter - Philip Bannon
Snow Leopard
Perfromane Test Tool jmeter
Introduction to jmeter & how to view jmeter Test Result in Real-Time
Performance testing and_reporting_with_j_meter by Le Van Nghi
Introduction to JMeter
Load runner & win runner
Android Meetup Slovenija #3 - Testing with Robolectric by Ivan Kust
Winrunner
Elments Used on Jmeter
Prometheus workshop
QTP&UFT Automation Framework
Munit Mule ESB
Win runner testing tool
Emulation Error Recovery
How we can measure server performance using jmeter?
C#on linux
Automation Framework 042009 V2
Winrunner
Testing Web Apps with Spring Framework 3.2
Soft Test Ireland - Introduction to Jakarta Jmeter - Philip Bannon
Ad

Viewers also liked (7)

PDF
Automation for developers
PPTX
Css selector - BNT 11
PPTX
Cross Platform Test Automation for Web and Android
DOCX
Multi tool test automation platform
PDF
WSO2 Test Automation Framework : Approach and Adoption
PPTX
Kubernetes your tests! automation with docker on google cloud platform
PPT
Test Automation Framework Designs
Automation for developers
Css selector - BNT 11
Cross Platform Test Automation for Web and Android
Multi tool test automation platform
WSO2 Test Automation Framework : Approach and Adoption
Kubernetes your tests! automation with docker on google cloud platform
Test Automation Framework Designs
Ad

Similar to Wso2 test automation framework internal training (20)

PDF
Quality for developers
PDF
Introduction to clarity
PPTX
Modern Testing Strategies for Evolving Ecosystems
PPTX
Application Performance Tuning Techniques
PPTX
Good vs power automation frameworks
PDF
Test automation - Building effective solutions
PPTX
Next-gen Automation Framework
PDF
05 test infrastructure
PPS
About Qtp_1 92
PPS
About QTP 9.2
PPS
About Qtp 92
PDF
КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...
PDF
C.V, Narayanan - Open Source Tools for Test Management - EuroSTAR 2010
PPTX
FUNTASY - Functional testing automated system
PDF
Continuous Performance Testing
PPTX
Automation testing
PPT
Qtp Basics
PDF
What is Automation Testing?
PPT
Hybrid framework
PDF
Sprint 12
Quality for developers
Introduction to clarity
Modern Testing Strategies for Evolving Ecosystems
Application Performance Tuning Techniques
Good vs power automation frameworks
Test automation - Building effective solutions
Next-gen Automation Framework
05 test infrastructure
About Qtp_1 92
About QTP 9.2
About Qtp 92
КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...
C.V, Narayanan - Open Source Tools for Test Management - EuroSTAR 2010
FUNTASY - Functional testing automated system
Continuous Performance Testing
Automation testing
Qtp Basics
What is Automation Testing?
Hybrid framework
Sprint 12

Wso2 test automation framework internal training

  • 1. WSO2 Test Automation Framework Approach and Adoption By Dharshana Warusavitharana Senior Software Engineer, Test Automation
  • 2. What will be Automated at WSO2 ● Platform scenarios. ● Integration scenarios. ● UI scenarios. ● Real world use cases. ● Performance and Security scenarios. ● Patches provided.
  • 3. Basic Understanding - Unit Test ● Focused on testing behavior of a particular class, module or method. ● Smallest part of the application. ● Fast (less than 0.1 second per test) ● No external implementation dependencies (filesystem, database, web services, etc.). All dependencies are faked for the test context. ● Can easily be parallelized, since each test is atomic
  • 4. Integration Test ● Focused on verifying the integration of one or more components together. ● May have external dependencies. ● A test that takes longer than a unit Test should Integration Tests - with in WSO2 ● Executes on product pack created by build. ● Not depending on other product environments. ● Independent. ● Lightweight. ● Covers only scenarios related to features on individual product.
  • 5. Overview of Automation Framework Test Automation Framework is to make automation ● Eazy ● Organized ● Relevant ● Optimized
  • 6. Technology Outline Test Framework Build Systems Code Coverage Tooling Support Execution Environment
  • 7. Flexibilities Provided By Automation Framework ● Manage several products inside single test. ● Manage users in several product domains. ● Deployment of artifacts for different products under different users. ● Automatic authentication. ● Configured admin service clients as test oriented API. ● Retrieving test environment configurations easily. ● Running same test in both local and Stratos environments. ● Reporting TestNg and surefire reports for all your tests. ● Tooling support of Selenium and Jmeter.
  • 8. Architecture Overview ● Depends on TestNg Listeners. ● Platform wide single framework ● Context providing interfaces. ● Admin Service based Automation API. ● Selenium page object repository and element mapper. ● Automation framework Utils. ● Coverage and Reporting.
  • 9. Why TestNG ● Link JUnit but not JUnit ● Annotation based Architecture ● Test Grouping ● Extensibility features ○ Listeners ○ Bean Shell ○ Annotation Transformers ● Easiness of managing Test cases. ● Failed test execution (Straight and easy)
  • 10. Automation Framework Overall Architecture user.csv / tenant.csv automation. properties instrument.txt Result Automation Framework CoreTest Dashboard Maven Test Managers Test Suite Surefire TestNg Automation Framework API Automation Framework Utills User Populator Coverage (emma Server manager Custom Reporter Context Provider
  • 12. Execution Template - TestNg Execution Started @BeforeSuite @AfterSuite Execution Closed @BeforeTest @AfterTest @BeforeClass @BeforeGroups @BeforeMethod @AfterMethod @AfterGroups @AfterClass Reference:- http://www.ibm. com/developerworks/java/library/j-testng/
  • 13. TestNg Listeners ● Listeners are interfaces allows to modify TestNG's behavior. ● Listeners are binned to a testNg execution. ● Listeners implement the interface org.testng.ITestListener ○ IExecutionListener ■ Triggers at start and end of any execution. ■ ISuiteListener. ○ ITestListner ■ Triggers at suite start and end. ■ Triggers at Test start, Finish, Failure, Skip and partial failure. ● Reporters implement the interface org.testng.IReporter ○ Notified when all the suites have been run by TestNG. ○ The IReporter instance receives a summary of entire test run
  • 14. Usage of Listeners ● PlatformExecutionManager (IExecutionListener) ○ onExecutionStart() ■ Emma instrumentations ■ Server start ○ onExecutionFinish() ■ Server Shutdown ■ Emma report generation ● PlatformSuiteManager (ISuiteListener) ○ Set environment properties ex- Key Store Paths ○ Populate Users.
  • 15. Usage of Listeners contd.. ● PlatformReportManager (IReporter) ○ Generate TestNg Report ○ Generate surefire report ○ Export data for Dashboard ● PlatformInvokedMethodManager (InvokedMethodListener) ○ Artifact deployment in platform scenarios. ● PlatformAnnotationTransferManager (IAnnotationTransformer) ○ Annotation-Platform-user type based test selection.
  • 16. Context providing interfaces ● Execution Based context - automation.properties ● Platform Based Context - automation.properties ● User Based Context - user.csv / tenant.csv ● Coverage Based Context - instrumentation.txt
  • 17. Automation Properties stratos.test=false #execution.environment = integration|platform|stratos execution.environment=integration #execution.mode = user|tenant|all execution.mode=user port.enable=true carbon.web.context.enable=false service.deployment.delay=30000 cluster.enable=true product.list=ESB builder.enable=true coverage.enable=true ● To configure Test framework for the environment and configure package details ● Contains all information about The environment.
  • 18. Server Management ● Needs to configure the server and start the server with in the test case. ● Most of the cases it might be ○ Single serve with single instance ○ Single server with multiple instance ○ Multiple product servers in a clustered environment. ● In this module framework is managing ○ Extract and configure the server. ○ Add offsets and deploy custom modules needs for the test.
  • 19. Test Execution Modes ● Handled by a custom annotation introduced at test class and method level ● ● ● ● Annotations are based on the execution environment and the user type of the test ● Tests are skipped at the "PlatformAnnotationTransferManager" ● integration_all, integration_user, integration_tenant, platform_all, platform_user, platform_tenant, stratos, all @SetEnvironment(executionEnvironments = {ExecutionEnvironment.integration_all}) public void createGroup() throws Exception { } #execution.environment = integration|platform|stratos execution.environment=integration #execution.mode = user|tenant|all execution.mode=user
  • 20. Automation Framework API ● Test Friendly api wrapping service stubs. ○ Depends on service stubs. ○ Provides unified approach for perform verify and assert of each admin service. ● Encapsulates the complexity of changing all available tests in a case of a stub change. ● Maintain Page object classes for Selenium Automation. ● Using UI maps to store locators required for test scripts. ● Updates with the relevant release version.
  • 21. Automation Framework Utils ● Includes all utility classes that can play supportive role inside a test. ○ Ex :- ■ Axis2 Client. ■ Wire message monitor. ■ Custom server startup scenarios (Axis2, Tomcat,Qpid). ■ Concurrency test scenarios. ● Provides common methodology for all development teams to maintain a set of supportive classes without changing the Core. ● Reusability of utility methods in integration and platform tests.
  • 22. Reporting ● Includes TestNg reports , SureFire report, And Emma Coverage report ● Directories containing separate results for each suite ( Directory name is as same as the suite name). ● Surefire reports. ● index.html (Dashboard for executed test). |-- reports | |-- BPSStructuredSuite | | |-- classes.html | | |-- FlowClient.html | | |-- FlowClient.properties | | |-- FlowClient.xml | | |-- ForEachClient.html | | |-- ForEachClient.properties | | |-- ForEachClient.xml | |-- index.html | |-- junitreports | | |-- TEST-org.wso2.automation. common.test.bps.mgts. BpelStructAct_FlowClient.xml | | |-- TEST-org.wso2.automation. common.test.bps.mgtst. BpelStructAct_forEachClient.xml
  • 23. Platform Automated Test Suite ● Distribution contain product integration and platform test jars. ● ANT based test jar executor - using TestNg ant task ● Ability to execute tests on different environments. ● Provide options to run test suites, packages and individual classes. ● TestNg reports. ● Generate mail with test results.
  • 24. Project Structure of Automated Tests
  • 25. Bit on Automation (Tips and Tricks) Referance - “Pragmatic Unit Testing in Java with JUnit” -Andrew Hunt and David Thomas ● Tip#1: One Assertion Per Test ● Tip #2: Write a Test, Then Fix it ● Tip #3: Keep Tests Independent ● Tip #4: Use Good Design in Code & Tests ● Tip #5: Test for Basic Correctness ● Tip #6: You have made a mess So clean it.