SlideShare a Scribd company logo
Test State Pattern
Roi Ashkenazi
Elad Benitah
roia@wix.com
eladb@wix.com
WixAutomation
Wix Automation - Test State Pattern - 11.9.16
01 / The Problem
E2E tests have more
breaking points.
New E2E tests are
even more fragile.
Pass locally, fail remotely
● Timing issues
● Remote connection issues
● Bad luck
We try to avoid …
False positives
Causes lack of trust
Noise
Analysis becomes difficult
Shame
@Test
@Test
@Test
Release
Unstable tests
running in
production
02 / Solution: @BetaTest
@BetaTest
@BetaTest
@BetaTest
Beta
@Test
@Test
@Test
Release
Split the tests into 2 “run groups”
@BetaTest(owner = "tzipi")
public void newTest() {
…
}
@BetaTest
@BetaTest
@BetaTest
Beta
@Test
@Test
@Test
Release
Results
Beta run group reports results to server
@BetaTest
@BetaTest
@BetaTest
Beta
@Test
@Test
@Test
Release
Run groups in different configurations
Results
@Override
public void beforeTest(Description description) {
if (isBetaTestInReleaseRunMode(description) ||
isNonBetaTestInBetaRunMode(description)) {
TestUtils.ignoreTest();
}
}
@BetaTest
@BetaTest
@BetaTest
Beta
@Test
@Test
@Test
Release
“Approve” stable BetaTests
Results
How do we find
the stable ones?
Results
Tests that pass X times in a row,
with maximum Y failures.
How do we find
the stable ones?
So, for each stable test
notify the owner to replace
@BetaTest with @Test
Wix Automation - Test State Pattern - 11.9.16
03 / We Can Do Better
@Test
@Test
@Test
Beta
@Test
@Test
@Test
Release
No need for special @BetaTest
annotation
Results
Beta
Each test begins with a Beta state
Beta
Remains in Beta state for some time
Beta
And (hopefully) changes to stable
Stable
pass X times
@Override
public void beforeTest(Description description) {
TestState state = getTestState(description);
if (isBetaTestInReleaseRunMode(description, state) ||
isNonBetaTestInBetaRunMode(description, state)) {
TestUtils.ignoreTest();
}
}
Run tests according to their state
What happens if a test keeps failing?
Beta
fail X times
What happens if a test keeps failing?
Beta
Failed
Beta
fail X times
Failed beta - manual fix
Beta
Failed
Beta
fail X times
manual fix
Beta
What happens if a stable test
starts to “act weird”?
Stable
pass X times
Beta Stable
FlakyFlak
y
Become
unstable
pass X times
pass X times
What happens if a stable test
starts to “act weird”?
Beta
Full pattern
Failed
Beta
fail X times
Stable
FlakyFlak
y
Become
unstable
pass X times
pass X times
manual fix
Stable automation is possible!
Results
@Test
@Test
@Test
Beta
@Test
@Test
@Test
Release
@Test
@Test
@Test
Flak
y
Failed Beta
04 / Architecture
API Core Web
DB
Web View
Java Client
Test Observer
- testStarted
- testIgnored
- testFailed
- testPassed
Test
- Name*
- State**
- Creation date
- Update date
- Annotations
Object modeling
Run Result
- Test Name
- Passed / failed
- Creation date
- Configuration***
1 n
05 / Live Demo
Wix Automation - Test State Pattern - 11.9.16
This is where you are going to present your final words.
This slide is not meant to have a lot of text.Thank You!

More Related Content

PDF
Mockito 2.x Migration - Droidcon UK 2018
PDF
Maintaining Your Tests At Scale
PPTX
Testing React Applications
PDF
Core Java Programming Language (JSE) : Chapter VIII - Exceptions and Assertions
PPTX
Angular Unit Test
PPTX
Testing 101
PPTX
Selenium TestNG
PPTX
The sweet smell of jasmine for testing JavaScript
Mockito 2.x Migration - Droidcon UK 2018
Maintaining Your Tests At Scale
Testing React Applications
Core Java Programming Language (JSE) : Chapter VIII - Exceptions and Assertions
Angular Unit Test
Testing 101
Selenium TestNG
The sweet smell of jasmine for testing JavaScript

What's hot (20)

PDF
Test Driven Development for PLSQL with utPLSQL v3
PPTX
Angular Unit Testing
PPT
Google mock for dummies
PDF
One mock to far
PDF
C++ Unit Test with Google Testing Framework
PPTX
utPLSQL: Unit Testing for Oracle PL/SQL
PDF
prohuddle-utPLSQL v3 - Ultimate unit testing framework for Oracle
PDF
Manage Selenium Grid with Terraform by Omkar Khatavkar (https://www.linkedin....
PPTX
Unit testing of java script and angularjs application using Karma Jasmine Fra...
KEY
iOS Unit Testing
PPTX
Angular Unit Testing
PPTX
Wix Automation - The False Positive Paradox
PPTX
Q unit
PDF
Adding Unit Test To Legacy Code
PPTX
Unit Testing in Java
PPTX
TDD Basics with Angular.js and Jasmine
PPT
Unit testing with java
PPT
JMockit
PPT
Intro to junit
PDF
Unit testing, principles
Test Driven Development for PLSQL with utPLSQL v3
Angular Unit Testing
Google mock for dummies
One mock to far
C++ Unit Test with Google Testing Framework
utPLSQL: Unit Testing for Oracle PL/SQL
prohuddle-utPLSQL v3 - Ultimate unit testing framework for Oracle
Manage Selenium Grid with Terraform by Omkar Khatavkar (https://www.linkedin....
Unit testing of java script and angularjs application using Karma Jasmine Fra...
iOS Unit Testing
Angular Unit Testing
Wix Automation - The False Positive Paradox
Q unit
Adding Unit Test To Legacy Code
Unit Testing in Java
TDD Basics with Angular.js and Jasmine
Unit testing with java
JMockit
Intro to junit
Unit testing, principles
Ad

Viewers also liked (20)

PPTX
Google, quality and you
PPTX
Selenium Automation at Incapsula
PDF
Selenium Israel Meetup
PPTX
An Overview of Selenium
PPTX
Appium overview (Selenium Israel #2, Feb. 2014)
PPTX
Wix automation
PPTX
Wix Automation Infrastructure
PDF
Jenkins & Selenium
PPTX
Selenium Based Visual Test Automation
PPTX
Build mobile application that is easy to automate
PPTX
Selenium meetup docker
PPTX
MyHeritage - End 2 End testing Infra
PDF
Gett - Mobile automation 2015
PDF
Selenium Tips & Tricks, presented at the Tel Aviv Selenium Meetup
PPTX
Media question 3
PDF
Niho Scottish Garden 3 Bhk Flats For Sale in Indirapuram
PPTX
Calor y temperatura
PPTX
INNOVATIVE IDEAS .........
DOCX
Evaluation Question One.
PPTX
11кл жив през
Google, quality and you
Selenium Automation at Incapsula
Selenium Israel Meetup
An Overview of Selenium
Appium overview (Selenium Israel #2, Feb. 2014)
Wix automation
Wix Automation Infrastructure
Jenkins & Selenium
Selenium Based Visual Test Automation
Build mobile application that is easy to automate
Selenium meetup docker
MyHeritage - End 2 End testing Infra
Gett - Mobile automation 2015
Selenium Tips & Tricks, presented at the Tel Aviv Selenium Meetup
Media question 3
Niho Scottish Garden 3 Bhk Flats For Sale in Indirapuram
Calor y temperatura
INNOVATIVE IDEAS .........
Evaluation Question One.
11кл жив през
Ad

Similar to Wix Automation - Test State Pattern - 11.9.16 (20)

PPTX
QA Evening Максим Колотилкин - Test State Pattern
PPTX
Dev labs alliance top 20 testng interview questions for sdet
PPTX
Testing with VS2010 - A Bugs Life
PDF
Clean Unit Test Patterns
PDF
Unit testing 101
PDF
Developer Tests - Things to Know (Vilnius JUG)
PPT
New Features Of Test Unit 2.x
PDF
open sta testing Certification
PPTX
Creating testing tools to support development
ZIP
Automated Frontend Testing
PPT
Automated Unit Testing
PPT
Optimizing Your Agile Testing Processes
KEY
Testing w-mocks
PDF
1 aleksandr gritsevski - attd example using
PDF
Effective Unit Test Style Guide
PDF
PPTX
Unit test
PPT
Google test training
PDF
軟體測試是在測試什麼?
ODP
Unit testing: unitils & dbmaintain
QA Evening Максим Колотилкин - Test State Pattern
Dev labs alliance top 20 testng interview questions for sdet
Testing with VS2010 - A Bugs Life
Clean Unit Test Patterns
Unit testing 101
Developer Tests - Things to Know (Vilnius JUG)
New Features Of Test Unit 2.x
open sta testing Certification
Creating testing tools to support development
Automated Frontend Testing
Automated Unit Testing
Optimizing Your Agile Testing Processes
Testing w-mocks
1 aleksandr gritsevski - attd example using
Effective Unit Test Style Guide
Unit test
Google test training
軟體測試是在測試什麼?
Unit testing: unitils & dbmaintain

More from Efrat Attas (6)

PDF
Wix Engineering - How We Automated GitHub Services
PPTX
Wix Automation - Core
PPTX
Wix Automation - DIY - Testing BI Events
PPTX
Wix Automation - It's That Easy!
PPTX
Wix Automation - Automation Manager
PPSX
Wix Automation Infrastructure
Wix Engineering - How We Automated GitHub Services
Wix Automation - Core
Wix Automation - DIY - Testing BI Events
Wix Automation - It's That Easy!
Wix Automation - Automation Manager
Wix Automation Infrastructure

Recently uploaded (20)

PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
Well-logging-methods_new................
PPT
Project quality management in manufacturing
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
PPT on Performance Review to get promotions
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Geodesy 1.pptx...............................................
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
web development for engineering and engineering
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
additive manufacturing of ss316l using mig welding
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Well-logging-methods_new................
Project quality management in manufacturing
Automation-in-Manufacturing-Chapter-Introduction.pdf
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PPT on Performance Review to get promotions
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Operating System & Kernel Study Guide-1 - converted.pdf
Geodesy 1.pptx...............................................
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
R24 SURVEYING LAB MANUAL for civil enggi
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
web development for engineering and engineering
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
additive manufacturing of ss316l using mig welding
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx

Wix Automation - Test State Pattern - 11.9.16