SlideShare uma empresa Scribd logo
1 de 29
Test Automation with Cucumber JVM,
Selenium, and Mocha
Sanjay Gidwani, Salesforce.com, Director @gidzone
Shuji Ui, Sonoma Partners, Technical Solution Architect @shujiui
Safe harbor
Safe harbor statement under the Private Securities Litigation Reform Act of 1995:
This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties
materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results
expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be
deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other
financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any
statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.
The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new
functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our
operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any
litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our
relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of
our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to
larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is
included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent
fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor
Information section of our Web site.
Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently
available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions
based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these
forward-looking statements.
Shuji Ui
Sonoma Partners
Salesforce.com Technical Solution Architect
@shujiui
Sanjay Gidwani
Salesforce.com
Director of Salesforce.com team
@gidzone
Agenda
• Why test automation is important in Agile development?
• What is BDD?
• How did we automate tests?
 Cucumber JVM + Selenium
 Mocha
 Jenkins
Agile project and automation
• How many people are in Agile project right now?
• Does your development team write unit tests for non-Apex code?
• Does your QA team automate E2E tests?
• Continuous Integration?
Sprint 13 Agile project experience
• Each sprint is 2 weeks, 13 sprints Agile project
• Custom Visualforce / JavaScript project
• 5 developers + 3 QA + 1.5 QA automation developer
• JavaScript unit tests with Mocha
• Regression testing automation using Cucumber JVM + Selenium
 1.5 developers worked on implementing automation scripts and
code
 Write automation for previous sprint
Behavior-Driven Development
• By writing specs/test cases in plain text, developers, business analysts, and QAs
with shared tools and a shared process to collaborate on software development.
• Based on test-driven development – Write test first
http://en.wikipedia.org/wiki/Behavior-driven_development

Frameworks
Jasmine for JavaScript unit tests - http://pivotal.github.io/jasmine/
Mocha for JavaScript unit tests - http://visionmedia.github.io/mocha/
Cucumber for E2E tests - http://cukes.info/
Frank for iOS with Cucumber - http://www.testingwithfrank.com/
Cucumber JVM
Cucumber
•A testing framework based on BDD (Behavior-driven development)
•Writing test cases in plain text and then Cucumber generates Ruby, Java, .Net, Flex codes
•Generate reports
•Written in Ruby
http://cukes.info/
Cucumber JVM
A pure Java implementation of Cucumber
https://github.com/cucumber/cucumber-jvm
Selenium IDE and Remote Control
Selenium IDE
Firefox extension, allows you to record, edit, and debug selenium tests in
Firefox. It exports Selenium Remote Control Java code.
http://docs.seleniumhq.org/projects/ide/
Selenium Remote Control Java client and the server
Selenium Remote Control (RC) is a test tool that allows user to write automated
web application UI tests.
Selenium Remote Control
•IE8 was the browser requirement
•We created EC2 Windows
instance.
•Runing RC server on the Windows
instance.
•RC server starts up IE8.
Mocha
• JavaScript unit test framework
• The syntax is similar to Jasmin
•

We used Mocha because we used Brunch assembler for project. The assembler
came with Mocha.

• Running on Node.js
• Comes with several reporters
http://visionmedia.github.io/mocha/
How did we use Mocha unit tests? (Sanjay)
• Running Mocha in real browser, for example, IE8.
• Used for UI testing, e.g. filtering, displaying error based
on a condition…etc.
• QA Lead communicated to QA engineers and
developers to balance Mocha UI unit tests and e2e test
using Cucumber JVM + Selenium.
• Can generate report.
Continuous Integration with Jenkins (Sanjay)
•
•
•
•
•

Open source Continuous Integration tool written in Java.
The project was forked from Hudson.
Easy to set up and running.
Active plugin community.
Our team installed Jenkins in our EC2 Ubuntu instance.

http://jenkins-ci.org/
Cucumber JVM Jenkins Plugin
https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java
Demo: Testing Flexible Contact Chatter-Follow Sample
App with Cucumber JVM and Selenium
• Flexible Contact Chatter-Follow Sample App
• Write specs/tests in plain text and convert them to Java
code snippets.
• Selenium IDE and add Selenium IDE generated JUnit
code to the Java Code snippets.
• commit the code to git and run them with Jenkins.
• Cucumber JVM report.
Flexible Chatter Contact Follow App
1. One of our clients wants to use “Sync contacts users
follow in Chatter” option in Salesforce to Outlook
configurations
2. They want an app to make their assistants to control
chatter-follow for other people.
Flexible Chatter Contact Follow App Solution
1. Created a “Contacts Relationship” custom object as a
junction object between “Contact” and “User” objects.
2. When a “Contacts Relationship” record is created, an
Apex trigger is fired to make “User” follow “Contact”
relationship in Chatter.
User

Contacts Relationship

Contact

First Name

User

Name

Last Name

Contact

Account Name

Apex Trigger on"Contacts Relationship"
Agile project: Sprint 1 and User Story 001
Suppose we are in Sprint 1 of an Agile project and the Flex
Contact Chatter-Follow is User Story 001.
Here is what to do before writing code:
1. BA and TA gather requirements from client.
2. TA and Dev design solution and create mockup/diagram.
3. BA and Dev writes scenarios and confirm with QA.
4. QA writes test cases and confirms with BA and Dev.
BA, QA, and Dev write tests in plain text
Cucumber JVM generates snippets from the plain text
case
Selenium IDE to record a test case
Export JUnit code from Selenium IDE
Merge Selenium generated code to Cucumber generated
snippets
Dynamic generated IDs in SFDC
• When a client wants to run integration automation code in
2 different sandbox orgs. HTML DOM ids are different
between 2 sandbox orgs.

Workaround
• xpath option in Selenium instead of using IDs to locate
HTML tags.
•

QA automation developers need to learn xpath.

•

Depending on page xpath is difficult to maintain.
Run the test cases in Jenkins and generates report
Running Mocha and generating the report
Conclusion
End of the 13 sprints, QA developers wrote e2e test code for
about 90 User Stories and more than 200 test cases.
Developers wrote unit tests for all User Stories.
Jenkins run nightly and send report to QA/Dev team. The
automation saved significant amount of QA time and
delivered quality code to the client.
Sanjay Gidwani

Shuji Ui

Director
Salesforce.com
@gidzone

Technical Solution Architect
Sonoma Partners
@shujiui
Test Automation With Cucumber JVM, Selenium, and Mocha

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

QSpiders - Automation using Selenium
QSpiders - Automation using SeleniumQSpiders - Automation using Selenium
QSpiders - Automation using Selenium
 
Selenium Tutorial For Beginners | What Is Selenium? | Selenium Automation Tes...
Selenium Tutorial For Beginners | What Is Selenium? | Selenium Automation Tes...Selenium Tutorial For Beginners | What Is Selenium? | Selenium Automation Tes...
Selenium Tutorial For Beginners | What Is Selenium? | Selenium Automation Tes...
 
SELENIUM PPT.pdf
SELENIUM PPT.pdfSELENIUM PPT.pdf
SELENIUM PPT.pdf
 
Performance testing presentation
Performance testing presentationPerformance testing presentation
Performance testing presentation
 
Selenium
SeleniumSelenium
Selenium
 
Test automation proposal
Test automation proposalTest automation proposal
Test automation proposal
 
Selenium WebDriver training
Selenium WebDriver trainingSelenium WebDriver training
Selenium WebDriver training
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and Selenium
 
Perils of Page-Object Pattern
Perils of Page-Object PatternPerils of Page-Object Pattern
Perils of Page-Object Pattern
 
Automation Testing using Selenium Webdriver
Automation Testing using Selenium WebdriverAutomation Testing using Selenium Webdriver
Automation Testing using Selenium Webdriver
 
Introduction to Selenium Web Driver
Introduction to Selenium Web DriverIntroduction to Selenium Web Driver
Introduction to Selenium Web Driver
 
Selenium Concepts
Selenium ConceptsSelenium Concepts
Selenium Concepts
 
Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using Selenium
 
Introduction To Mobile-Automation
Introduction To Mobile-AutomationIntroduction To Mobile-Automation
Introduction To Mobile-Automation
 
Selenium Automation Framework
Selenium Automation  FrameworkSelenium Automation  Framework
Selenium Automation Framework
 
Application Performance Management - Solving the Performance Puzzle
Application Performance Management - Solving the Performance PuzzleApplication Performance Management - Solving the Performance Puzzle
Application Performance Management - Solving the Performance Puzzle
 
Test Automation Framework using Cucumber BDD overview (part 1)
Test Automation Framework using Cucumber BDD overview (part 1)Test Automation Framework using Cucumber BDD overview (part 1)
Test Automation Framework using Cucumber BDD overview (part 1)
 
Selenium- A Software Testing Tool
Selenium- A Software Testing ToolSelenium- A Software Testing Tool
Selenium- A Software Testing Tool
 
Selenium
SeleniumSelenium
Selenium
 
Automated Test Framework with Cucumber
Automated Test Framework with CucumberAutomated Test Framework with Cucumber
Automated Test Framework with Cucumber
 

Semelhante a Test Automation With Cucumber JVM, Selenium, and Mocha

Building JavaScript Applications on the Salesforce1 Platform
Building JavaScript Applications on the Salesforce1 PlatformBuilding JavaScript Applications on the Salesforce1 Platform
Building JavaScript Applications on the Salesforce1 Platform
Salesforce Developers
 

Semelhante a Test Automation With Cucumber JVM, Selenium, and Mocha (20)

Ashish Baraiya
Ashish BaraiyaAshish Baraiya
Ashish Baraiya
 
DevOps in Salesforce AppCloud
DevOps in Salesforce AppCloudDevOps in Salesforce AppCloud
DevOps in Salesforce AppCloud
 
Self-Service Secure Test and Release Pipelines
Self-Service Secure Test and Release PipelinesSelf-Service Secure Test and Release Pipelines
Self-Service Secure Test and Release Pipelines
 
Lightning web components - Episode 4 : Security and Testing
Lightning web components  - Episode 4 : Security and TestingLightning web components  - Episode 4 : Security and Testing
Lightning web components - Episode 4 : Security and Testing
 
Introduction to Javascript Unit Testing With xUnit.js
Introduction to Javascript Unit Testing With xUnit.jsIntroduction to Javascript Unit Testing With xUnit.js
Introduction to Javascript Unit Testing With xUnit.js
 
Sandboxes: The Future of App Development by Evan Barnet & Pam Barnet
Sandboxes: The Future of App Development by Evan Barnet & Pam BarnetSandboxes: The Future of App Development by Evan Barnet & Pam Barnet
Sandboxes: The Future of App Development by Evan Barnet & Pam Barnet
 
TDX19 - Accelerate DevOps with GitLab and Salesforce
TDX19 - Accelerate DevOps with GitLab and SalesforceTDX19 - Accelerate DevOps with GitLab and Salesforce
TDX19 - Accelerate DevOps with GitLab and Salesforce
 
How Developers and Quality Engineer Collaborate at Salesforce
How Developers and Quality Engineer Collaborate at SalesforceHow Developers and Quality Engineer Collaborate at Salesforce
How Developers and Quality Engineer Collaborate at Salesforce
 
Enterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web ComponentsEnterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web Components
 
Lightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionLightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An Introduction
 
Meet The Welkin Suite IDE: Product Overview
Meet The Welkin Suite IDE: Product OverviewMeet The Welkin Suite IDE: Product Overview
Meet The Welkin Suite IDE: Product Overview
 
Hands-on Workshop: Intermediate Development with Heroku and Force.com
Hands-on Workshop: Intermediate Development with Heroku and Force.comHands-on Workshop: Intermediate Development with Heroku and Force.com
Hands-on Workshop: Intermediate Development with Heroku and Force.com
 
AngularJS App In Two Weeks
AngularJS App In Two WeeksAngularJS App In Two Weeks
AngularJS App In Two Weeks
 
Java Best Practices - Tools, Performance, and Deployment
Java Best Practices - Tools, Performance, and DeploymentJava Best Practices - Tools, Performance, and Deployment
Java Best Practices - Tools, Performance, and Deployment
 
Summer '18 Developer Highlights
Summer '18 Developer HighlightsSummer '18 Developer Highlights
Summer '18 Developer Highlights
 
Building einstein analytics apps uk-compressed
Building einstein analytics apps   uk-compressedBuilding einstein analytics apps   uk-compressed
Building einstein analytics apps uk-compressed
 
Building JavaScript Applications on the Salesforce1 Platform
Building JavaScript Applications on the Salesforce1 PlatformBuilding JavaScript Applications on the Salesforce1 Platform
Building JavaScript Applications on the Salesforce1 Platform
 
San Francisco Jenkins Area Meetup October 2016: Self-service secure test and ...
San Francisco Jenkins Area Meetup October 2016: Self-service secure test and ...San Francisco Jenkins Area Meetup October 2016: Self-service secure test and ...
San Francisco Jenkins Area Meetup October 2016: Self-service secure test and ...
 
Ravi_Nelluri_QA
Ravi_Nelluri_QARavi_Nelluri_QA
Ravi_Nelluri_QA
 
Salesforce API Series: Release Management with the Metadata API webinar
Salesforce API Series: Release Management with the Metadata API webinarSalesforce API Series: Release Management with the Metadata API webinar
Salesforce API Series: Release Management with the Metadata API webinar
 

Mais de Salesforce Developers

Mais de Salesforce Developers (20)

Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce DevelopersSample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce Developers
 
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component PerformanceMaximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component Performance
 
Local development with Open Source Base Components
Local development with Open Source Base ComponentsLocal development with Open Source Base Components
Local development with Open Source Base Components
 
TrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsTrailheaDX India : Developer Highlights
TrailheaDX India : Developer Highlights
 
Why developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX IndiaWhy developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX India
 
CodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local DevelopmentCodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local Development
 
CodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web ComponentsCodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web Components
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer Highlights
 
Live coding with LWC
Live coding with LWCLive coding with LWC
Live coding with LWC
 
LWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura InteroperabilityLWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura Interoperability
 
Lightning web components episode 2- work with salesforce data
Lightning web components   episode 2- work with salesforce dataLightning web components   episode 2- work with salesforce data
Lightning web components episode 2- work with salesforce data
 
Migrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCPMigrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCP
 
Scale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in SalesforceScale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in Salesforce
 
Replicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data CaptureReplicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data Capture
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DX
 
Get Into Lightning Flow Development
Get Into Lightning Flow DevelopmentGet Into Lightning Flow Development
Get Into Lightning Flow Development
 
Integrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS ConnectIntegrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS Connect
 
Introduction to MuleSoft
Introduction to MuleSoftIntroduction to MuleSoft
Introduction to MuleSoft
 
Modern App Dev: Modular Development Strategies
Modern App Dev: Modular Development StrategiesModern App Dev: Modular Development Strategies
Modern App Dev: Modular Development Strategies
 
Dreamforce Developer Recap
Dreamforce Developer RecapDreamforce Developer Recap
Dreamforce Developer Recap
 

Último

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
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
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
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
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
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
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

Test Automation With Cucumber JVM, Selenium, and Mocha

  • 1. Test Automation with Cucumber JVM, Selenium, and Mocha Sanjay Gidwani, Salesforce.com, Director @gidzone Shuji Ui, Sonoma Partners, Technical Solution Architect @shujiui
  • 2. Safe harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
  • 3. Shuji Ui Sonoma Partners Salesforce.com Technical Solution Architect @shujiui
  • 4. Sanjay Gidwani Salesforce.com Director of Salesforce.com team @gidzone
  • 5. Agenda • Why test automation is important in Agile development? • What is BDD? • How did we automate tests?  Cucumber JVM + Selenium  Mocha  Jenkins
  • 6. Agile project and automation • How many people are in Agile project right now? • Does your development team write unit tests for non-Apex code? • Does your QA team automate E2E tests? • Continuous Integration?
  • 7. Sprint 13 Agile project experience • Each sprint is 2 weeks, 13 sprints Agile project • Custom Visualforce / JavaScript project • 5 developers + 3 QA + 1.5 QA automation developer • JavaScript unit tests with Mocha • Regression testing automation using Cucumber JVM + Selenium  1.5 developers worked on implementing automation scripts and code  Write automation for previous sprint
  • 8. Behavior-Driven Development • By writing specs/test cases in plain text, developers, business analysts, and QAs with shared tools and a shared process to collaborate on software development. • Based on test-driven development – Write test first http://en.wikipedia.org/wiki/Behavior-driven_development Frameworks Jasmine for JavaScript unit tests - http://pivotal.github.io/jasmine/ Mocha for JavaScript unit tests - http://visionmedia.github.io/mocha/ Cucumber for E2E tests - http://cukes.info/ Frank for iOS with Cucumber - http://www.testingwithfrank.com/
  • 9. Cucumber JVM Cucumber •A testing framework based on BDD (Behavior-driven development) •Writing test cases in plain text and then Cucumber generates Ruby, Java, .Net, Flex codes •Generate reports •Written in Ruby http://cukes.info/ Cucumber JVM A pure Java implementation of Cucumber https://github.com/cucumber/cucumber-jvm
  • 10. Selenium IDE and Remote Control Selenium IDE Firefox extension, allows you to record, edit, and debug selenium tests in Firefox. It exports Selenium Remote Control Java code. http://docs.seleniumhq.org/projects/ide/ Selenium Remote Control Java client and the server Selenium Remote Control (RC) is a test tool that allows user to write automated web application UI tests.
  • 11. Selenium Remote Control •IE8 was the browser requirement •We created EC2 Windows instance. •Runing RC server on the Windows instance. •RC server starts up IE8.
  • 12. Mocha • JavaScript unit test framework • The syntax is similar to Jasmin • We used Mocha because we used Brunch assembler for project. The assembler came with Mocha. • Running on Node.js • Comes with several reporters http://visionmedia.github.io/mocha/
  • 13. How did we use Mocha unit tests? (Sanjay) • Running Mocha in real browser, for example, IE8. • Used for UI testing, e.g. filtering, displaying error based on a condition…etc. • QA Lead communicated to QA engineers and developers to balance Mocha UI unit tests and e2e test using Cucumber JVM + Selenium. • Can generate report.
  • 14. Continuous Integration with Jenkins (Sanjay) • • • • • Open source Continuous Integration tool written in Java. The project was forked from Hudson. Easy to set up and running. Active plugin community. Our team installed Jenkins in our EC2 Ubuntu instance. http://jenkins-ci.org/ Cucumber JVM Jenkins Plugin https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java
  • 15. Demo: Testing Flexible Contact Chatter-Follow Sample App with Cucumber JVM and Selenium • Flexible Contact Chatter-Follow Sample App • Write specs/tests in plain text and convert them to Java code snippets. • Selenium IDE and add Selenium IDE generated JUnit code to the Java Code snippets. • commit the code to git and run them with Jenkins. • Cucumber JVM report.
  • 16. Flexible Chatter Contact Follow App 1. One of our clients wants to use “Sync contacts users follow in Chatter” option in Salesforce to Outlook configurations 2. They want an app to make their assistants to control chatter-follow for other people.
  • 17. Flexible Chatter Contact Follow App Solution 1. Created a “Contacts Relationship” custom object as a junction object between “Contact” and “User” objects. 2. When a “Contacts Relationship” record is created, an Apex trigger is fired to make “User” follow “Contact” relationship in Chatter. User Contacts Relationship Contact First Name User Name Last Name Contact Account Name Apex Trigger on"Contacts Relationship"
  • 18. Agile project: Sprint 1 and User Story 001 Suppose we are in Sprint 1 of an Agile project and the Flex Contact Chatter-Follow is User Story 001. Here is what to do before writing code: 1. BA and TA gather requirements from client. 2. TA and Dev design solution and create mockup/diagram. 3. BA and Dev writes scenarios and confirm with QA. 4. QA writes test cases and confirms with BA and Dev.
  • 19. BA, QA, and Dev write tests in plain text
  • 20. Cucumber JVM generates snippets from the plain text case
  • 21. Selenium IDE to record a test case
  • 22. Export JUnit code from Selenium IDE
  • 23. Merge Selenium generated code to Cucumber generated snippets
  • 24. Dynamic generated IDs in SFDC • When a client wants to run integration automation code in 2 different sandbox orgs. HTML DOM ids are different between 2 sandbox orgs. Workaround • xpath option in Selenium instead of using IDs to locate HTML tags. • QA automation developers need to learn xpath. • Depending on page xpath is difficult to maintain.
  • 25. Run the test cases in Jenkins and generates report
  • 26. Running Mocha and generating the report
  • 27. Conclusion End of the 13 sprints, QA developers wrote e2e test code for about 90 User Stories and more than 200 test cases. Developers wrote unit tests for all User Stories. Jenkins run nightly and send report to QA/Dev team. The automation saved significant amount of QA time and delivered quality code to the client.
  • 28. Sanjay Gidwani Shuji Ui Director Salesforce.com @gidzone Technical Solution Architect Sonoma Partners @shujiui