SlideShare a Scribd company logo
Automated Test Hell
Wojciech Seliga
wojciech.seliga@spartez.com
@wseliga
Our Journey
About me
• Coding for 30 years, now only in "free time"
• Agile Practices (inc.TDD) since 2003
• Dev Nerd,Tech Leader,Agile Coach,
Speaker, PHB
• 6 years with Atlassian (JIRA Dev Manager)
• Spartez Co-founder & CEO
XP Promise
CostofChange
Time
Waterfall
XP
1.5 year ago
Almost 10 years
of accumulating
garbage automatic tests
About 20 000 tests
on all levels of abstraction
Very slow (even hours)
and fragile feedback loop
Serious performance and
reliability issues
Dispirited devs
accepting RED as a norm
Feedback
Speed
`
Test
Quality
Test Code is Not
Trash
Design
Maintain
Refactor
Share
Review
Prune
Respect
Discuss
Restructure
Test Pyramid
Unit Tests (including QUnit)
REST / HTML Tests
Selenium
Optimum Balance
Isolation Speed Coverage Level Access Effort
Dangerous to temper with
MaintainabilityQuality / Determinism
Now
People - Motivation
Making GREEN the norm
Shades of Red
Shades of Green
Pragmatic CI Health
Build Tiers and Policy
Tier A1 - green soon after all commits
Tier A2 - green at the end of the day
Tier A3 - green at the end of the iteration
unit tests and functional* tests
WebDriver and bundled plugins tests
supported platforms tests, compatibility tests
Wallboards:
Constant
Awareness
Extensive Training
• assertThat over assertTrue/False and
assertEquals
• avoiding races - Atlassian Selenium with its
TimedElement
• Favouring unit tests over functional tests
• Promoting Page Objects
• Brownbags, blogs, code reviews
Quality
Automatic Flakiness Detection
Quarantine
Re-run failed tests and see if they pass
Quarantine - Healing
SlowMo - expose races
Selenium 1
Selenium ditching
Sky did not fall in
Ditching - benefits
• Freed build agents - better system throughput
• Boosted morale
• Gazillion of developer hours saved
• Money saved on infrastructure
Ditching - due diligence
• conducting the audit - analysis of the
coverage we lost
• determining which tests needs to rewritten
(e.g. security related)
• rewriting some of the tests (good job for
new hires + a senior mentor)
Flaky Browser-based Tests
Races between test code and asynchronous page logic
Playing with "loading" CSS class does not really help
Races Removal with Tracing
// in the browser:
function mySearchClickHandler() {
    doSomeXhr().always(function() {
        // This executes when the XHR has completed (either success or failure)
        JIRA.trace("search.completed");
    });
}
// In production code JIRA.trace is a no-op
// in my page object:
@Inject
TraceContext traceContext;
 
public SearchResults doASearch() {
    Tracer snapshot = traceContext.checkpoint();
    getSearchButton().click(); // causes mySearchClickHandler to be invoked
    // This waits until the "search.completed"
// event has been emitted, *after* previous snapshot    
    traceContext.waitFor(snapshot, "search.completed");
    return pageBinder.bind(SearchResults.class);
}
Can we halve our build times?
Speed
Parallel Execution - Theory
End of Build
Batches
Start of Build Time
Parallel Execution
End of Build
Batches
Start of Build Time
Parallel Execution -
Reality Bites
End of Build
Batches
Start of Build
Agent
availability
Time
Dynamic Test Execution
Dispatch - Hallelujah
"You can't manage what
you can't measure."
not by W. Edwards Deming
If you believe just in it
you are doomed.
You can't improve something
if you can't measure it
Profiler, Build statistics, Logs, statsd → Graphite
Anatomy of Build*
Compilation
Packaging
Executing Tests
Fetching Dependencies
*Any resemblance to maven build is entirely accidental
SCM Update
Agent Availability/Setup
Publishing Results
JIRA Unit Tests Build
Compilation (7min)
Packaging (0min)
Executing Tests (7min)
Fetching Dependencies (1.5min)
SCM Update (2min)
Agent Availability/Setup (mean 10min)
Publishing Results (1min)
Decreasing
Test Execution Time
to ZERRO
alone would not let us
achieve our goal!
Agent Availability/Setup
• starved builds due to
busy agents building
very long builds
• time synchronization
issue - NTPD problem
Fixes applied
• Proximity of SCM repo
• shallow git clones are not so fast and lightweight +
generating extra git server CPU load
• git clone per agent/plan + git pull + git clone per build
(hard links!)
• Atlassian Stash was thankful (queue)
SCM Update - Checkout time
2 min → 5 seconds
Trade disk space
for speed
Escaping Test Hell - Our Journey - XPDays Ukraine 2013
• Fix Predator
• Sandboxing/isolation agent trade-off:
rm -rf $HOME/.m2/repository/com/atlassian/*
into
find $HOME/.m2/repository/com/atlassian/
-name “*SNAPSHOT*” | xargs rm
• Network hardware failure found
(dropping packets)
Fetching Dependencies
1.5 min → 10 seconds
Compilation
• Restructuring multi-pom maven project
and dependencies
• Maven 3 parallel compilation FTW
-T 1.5C
*optimal factor thanks to scientific trial and error research
7 min → 1 min
Unit Test Execution
• Splitting unit tests into 2 buckets: good and
legacy (much longer)
• Maven 3 parallel test execution (-T 1.5C)
7 min → 5 min
3000 poor tests
(5min)
11000 good tests
(1.5min)
Functional Tests
• Selenium 1 removal did help
• Faster reset/restore (avoid unnecessary
stuff, intercepting SQL operations for debug
purposes - building stacktraces is costly)
• Restoring via Backdoor REST API
• Using REST API for common setup/
teardown operations
Functional Tests
We like this trend
Publishing Results
• Server log allocation per test → using now
Backdoor REST API (was Selenium)
• Bamboo DB performance degradation for
rich build history - to be addressed
1 min → 40 s
Unexpected Problem
• Stability issues with our CI server
• The bottleneck changed from I/O to CPU
• Too many agents per physical machine
JIRA Unit Tests Build Improved
Compilation (1min)
Packaging (0min)
Executing Tests (5min)
Fetching Dependencies (10sec)
SCM Update (5sec)
Agent Availability/Setup (3min)*
Publishing Results (40sec)
Improvements Summary
Tests Before After Improvement %
Unit tests 29 min 17 min 41%
Functional tests 56 min 34 min 39%
WebDriver tests 39 min 21 min 46%
Overall 124 min 72 min 42%
* Additional ca. 5% improvement expected once new git clone
strategy is consistently rolled-out everywhere
The Quality Follows
But that's still bad
We want CI feedback loop in a few minutes maximum
Splitting The Codebase
Codebase Split - Problems
• Organizational concerns - understanding,
managing, integrating, releasing
• Mindset change - if something worked for
10 years why to change it?
• We damned ourselves with big buckets for
all tests - where do they belong to?
Splitting code base
• Step 0 - JIRA Importers Plugin (3.5 years ago)
• Step 1- New IssueView and Navigator
JIRA 6.0
We are still escaping hell.
Hell sucks in your soul.
Conclusions
• Visibility and problem awareness help
• Maintaing huge testbed is difficult and costly
• Measure the problem, measure improvements
• No prejudice - no sacred cows
• Automated tests are not one-off investment,
it's a continuous journey
• Performance is a damn important feature
Revised XP Promise
CostofChange
Time
Waterfall
XP
Sad Reality
Interested in such stuff?
Talk to me at the conference or visit http://www.spartez.com/careers
We are hiring in Gdańsk
• Turtle - by Jonathan Zander, CC-BY-SA-3.0
• Loading - by MatthewJ13, CC-SA-3.0
• Magic Potion - by Koolmann1, CC-BY-SA-2.0
• Merlin Tool - by By L. Mahin, CC-BY-SA-3.0
• Choose Pills - by *rockysprings, CC-BY-SA-3.0
• Flashing Red Light - bt Chris Phan, CC BY 2.0
Images - Credits
ThankYou!
Tweet your feedback at @wseliga

More Related Content

PDF
Selenium Frameworks
PDF
Scaling mobile automation by Pavel Kulagin
KEY
Enterprise Strength Mobile JavaScript
PPTX
Growing Trends of Open Source UI Frameworks
PDF
Building Atlassian Plugins with Groovy - Atlassian Summit 2010 - Lightning Talks
PPTX
Testing Java EE apps with Arquillian
PDF
PPTX
Exactpro Systems for KSTU Students in Kostroma
Selenium Frameworks
Scaling mobile automation by Pavel Kulagin
Enterprise Strength Mobile JavaScript
Growing Trends of Open Source UI Frameworks
Building Atlassian Plugins with Groovy - Atlassian Summit 2010 - Lightning Talks
Testing Java EE apps with Arquillian
Exactpro Systems for KSTU Students in Kostroma

What's hot (20)

PDF
Continuous Delivery: The Dirty Details
PPTX
10 Reasons Your Software Sucks 2014 - Tax Day Edition!
PDF
Agile Infrastructure Velocity 09
PDF
Web Performance & You - HighEdWeb Arkansas Version
PDF
Dev and Ops Collaboration and Awareness at Etsy and Flickr
PDF
Introduction to jest
PDF
Automation Abstraction Layers: Page Objects and Beyond
PDF
Resilience Engineering: A field of study, a community, and some perspective s...
PDF
Web Test Automation Framework - IndicThreads Conference
PDF
Selenium RC: Automated Testing of Modern Web Applications
PPTX
Continuous Delivery - Automate & Build Better Software with Travis CI
PDF
Getting By Without "QA"
PDF
Better Page Object Handling with Loadable Component Pattern
PDF
Test and Behaviour Driven Development (TDD/BDD)
PPTX
Breaking Dependencies to Allow Unit Testing - DevIntersection Spring 2016
PPTX
A. De Biase/C. Quatrini/M. Barsocchi - API Release Process: how to make peopl...
PDF
How To Use Selenium Successfully (Java Edition)
PDF
Current Testing Challenges Ireland
PPTX
Automate testing with behat, selenium, phantom js and nightwatch.js (5)
PDF
Introduction To Web Application Testing
Continuous Delivery: The Dirty Details
10 Reasons Your Software Sucks 2014 - Tax Day Edition!
Agile Infrastructure Velocity 09
Web Performance & You - HighEdWeb Arkansas Version
Dev and Ops Collaboration and Awareness at Etsy and Flickr
Introduction to jest
Automation Abstraction Layers: Page Objects and Beyond
Resilience Engineering: A field of study, a community, and some perspective s...
Web Test Automation Framework - IndicThreads Conference
Selenium RC: Automated Testing of Modern Web Applications
Continuous Delivery - Automate & Build Better Software with Travis CI
Getting By Without "QA"
Better Page Object Handling with Loadable Component Pattern
Test and Behaviour Driven Development (TDD/BDD)
Breaking Dependencies to Allow Unit Testing - DevIntersection Spring 2016
A. De Biase/C. Quatrini/M. Barsocchi - API Release Process: how to make peopl...
How To Use Selenium Successfully (Java Edition)
Current Testing Challenges Ireland
Automate testing with behat, selenium, phantom js and nightwatch.js (5)
Introduction To Web Application Testing
Ad

Similar to Escaping Test Hell - Our Journey - XPDays Ukraine 2013 (20)

PDF
Heavenly hell – automated tests at scale wojciech seliga
PDF
Escaping Test Hell - ACCU 2014
PDF
Escaping Automated Test Hell - One Year Later
PDF
Continuous Testing
PDF
Performance Test Driven Development with Oracle Coherence
PDF
What is this agile thing anyway
PDF
Advanced A/B Testing at Wix - Aviran Mordo and Sagy Rozman, Wix.com
PPTX
Testing API's: Tools & Tips & Tricks (Oh My!)
KEY
33rd degree
PDF
AWS Lambda from the Trenches
PDF
Droidcon Spain 2016 - The Pragmatic Android Programmer: from hype to reality
PPTX
BTD2015 - Your Place In DevTOps is Finding Solutions - Not Just Bugs!
PPTX
All you need is fast feedback loop, fast feedback loop, fast feedback loop is...
PPTX
Road to Continuous Delivery - Wix.com
PPTX
Continuous Testing 2016
PPTX
Continuous Testing
PPTX
Test Driven Development & CI/CD
PPTX
Cloudstack Continuous Delivery
PDF
How to use selenium successfully
PDF
Developers Testing - Girl Code at bloomon
Heavenly hell – automated tests at scale wojciech seliga
Escaping Test Hell - ACCU 2014
Escaping Automated Test Hell - One Year Later
Continuous Testing
Performance Test Driven Development with Oracle Coherence
What is this agile thing anyway
Advanced A/B Testing at Wix - Aviran Mordo and Sagy Rozman, Wix.com
Testing API's: Tools & Tips & Tricks (Oh My!)
33rd degree
AWS Lambda from the Trenches
Droidcon Spain 2016 - The Pragmatic Android Programmer: from hype to reality
BTD2015 - Your Place In DevTOps is Finding Solutions - Not Just Bugs!
All you need is fast feedback loop, fast feedback loop, fast feedback loop is...
Road to Continuous Delivery - Wix.com
Continuous Testing 2016
Continuous Testing
Test Driven Development & CI/CD
Cloudstack Continuous Delivery
How to use selenium successfully
Developers Testing - Girl Code at bloomon
Ad

More from Wojciech Seliga (20)

PDF
Sprzedawanie własnego biznesu IT - Confitura 2023.pdf
PDF
Jak być zarąbistym developerem w oczach szefa i ... klienta
PDF
How to impress your boss and your customer in a modern software development c...
PDF
Developer plantations - colonialism of XXI century (GeeCON 2017)
PDF
SFI 2017 Plantacje Programistów (Developers Plantations) - Colonialism in XXI...
PDF
Ten lessons I painfully learnt while moving from software developer
to entrep...
PDF
Ten lessons I painfully learnt while moving from software developer to entrep...
PDF
10 bezcennych lekcji dla software developera stającego się szefem firmy
PDF
5-10-15 years of Java developer career - Warszawa JUG 2015
PDF
Devoxx Poland 2015: 5-10-15 years with Java
PDF
Spartez Open Day March 13th 2015
PDF
Software Development Innovation in Practice - 33rd Degree 2014
PDF
Innowacja w praktyce - Infoshare 2014
PDF
Confitura 2013 Software Developer Career Unplugged
PDF
Software Developer Career Unplugged - GeeCon 2013
PDF
AtlasCamp 2012 - Testing JIRA plugins smarter with TestKit
PDF
How to be Awesome at a Java Developer Job Interview (Confitura 2012, Polish)
PDF
InfoShare 2012 efektywne przeglądy kodu w zespołach agile [Polish]
KEY
Better Front-end Development in Atlassian Plugins
ODP
Bringing Effectiveness and Sanity to Highly Distributed Agile Teams
Sprzedawanie własnego biznesu IT - Confitura 2023.pdf
Jak być zarąbistym developerem w oczach szefa i ... klienta
How to impress your boss and your customer in a modern software development c...
Developer plantations - colonialism of XXI century (GeeCON 2017)
SFI 2017 Plantacje Programistów (Developers Plantations) - Colonialism in XXI...
Ten lessons I painfully learnt while moving from software developer
to entrep...
Ten lessons I painfully learnt while moving from software developer to entrep...
10 bezcennych lekcji dla software developera stającego się szefem firmy
5-10-15 years of Java developer career - Warszawa JUG 2015
Devoxx Poland 2015: 5-10-15 years with Java
Spartez Open Day March 13th 2015
Software Development Innovation in Practice - 33rd Degree 2014
Innowacja w praktyce - Infoshare 2014
Confitura 2013 Software Developer Career Unplugged
Software Developer Career Unplugged - GeeCon 2013
AtlasCamp 2012 - Testing JIRA plugins smarter with TestKit
How to be Awesome at a Java Developer Job Interview (Confitura 2012, Polish)
InfoShare 2012 efektywne przeglądy kodu w zespołach agile [Polish]
Better Front-end Development in Atlassian Plugins
Bringing Effectiveness and Sanity to Highly Distributed Agile Teams

Recently uploaded (20)

PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Big Data Technologies - Introduction.pptx
PPT
Teaching material agriculture food technology
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Unlocking AI with Model Context Protocol (MCP)
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Chapter 3 Spatial Domain Image Processing.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Spectral efficient network and resource selection model in 5G networks
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Dropbox Q2 2025 Financial Results & Investor Presentation
Diabetes mellitus diagnosis method based random forest with bat algorithm
Empathic Computing: Creating Shared Understanding
Big Data Technologies - Introduction.pptx
Teaching material agriculture food technology
MYSQL Presentation for SQL database connectivity
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Advanced methodologies resolving dimensionality complications for autism neur...
Digital-Transformation-Roadmap-for-Companies.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
Network Security Unit 5.pdf for BCA BBA.
Unlocking AI with Model Context Protocol (MCP)
The AUB Centre for AI in Media Proposal.docx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Chapter 3 Spatial Domain Image Processing.pdf

Escaping Test Hell - Our Journey - XPDays Ukraine 2013

  • 1. Automated Test Hell Wojciech Seliga wojciech.seliga@spartez.com @wseliga Our Journey
  • 2. About me • Coding for 30 years, now only in "free time" • Agile Practices (inc.TDD) since 2003 • Dev Nerd,Tech Leader,Agile Coach, Speaker, PHB • 6 years with Atlassian (JIRA Dev Manager) • Spartez Co-founder & CEO
  • 5. Almost 10 years of accumulating garbage automatic tests
  • 6. About 20 000 tests on all levels of abstraction
  • 7. Very slow (even hours) and fragile feedback loop
  • 11. Test Code is Not Trash Design Maintain Refactor Share Review Prune Respect Discuss Restructure
  • 12. Test Pyramid Unit Tests (including QUnit) REST / HTML Tests Selenium
  • 13. Optimum Balance Isolation Speed Coverage Level Access Effort
  • 14. Dangerous to temper with MaintainabilityQuality / Determinism
  • 15. Now
  • 16. People - Motivation Making GREEN the norm
  • 19. Build Tiers and Policy Tier A1 - green soon after all commits Tier A2 - green at the end of the day Tier A3 - green at the end of the iteration unit tests and functional* tests WebDriver and bundled plugins tests supported platforms tests, compatibility tests
  • 21. Extensive Training • assertThat over assertTrue/False and assertEquals • avoiding races - Atlassian Selenium with its TimedElement • Favouring unit tests over functional tests • Promoting Page Objects • Brownbags, blogs, code reviews
  • 23. Automatic Flakiness Detection Quarantine Re-run failed tests and see if they pass
  • 28. Ditching - benefits • Freed build agents - better system throughput • Boosted morale • Gazillion of developer hours saved • Money saved on infrastructure
  • 29. Ditching - due diligence • conducting the audit - analysis of the coverage we lost • determining which tests needs to rewritten (e.g. security related) • rewriting some of the tests (good job for new hires + a senior mentor)
  • 30. Flaky Browser-based Tests Races between test code and asynchronous page logic Playing with "loading" CSS class does not really help
  • 31. Races Removal with Tracing // in the browser: function mySearchClickHandler() {     doSomeXhr().always(function() {         // This executes when the XHR has completed (either success or failure)         JIRA.trace("search.completed");     }); } // In production code JIRA.trace is a no-op // in my page object: @Inject TraceContext traceContext;   public SearchResults doASearch() {     Tracer snapshot = traceContext.checkpoint();     getSearchButton().click(); // causes mySearchClickHandler to be invoked     // This waits until the "search.completed" // event has been emitted, *after* previous snapshot         traceContext.waitFor(snapshot, "search.completed");     return pageBinder.bind(SearchResults.class); }
  • 32. Can we halve our build times? Speed
  • 33. Parallel Execution - Theory End of Build Batches Start of Build Time
  • 34. Parallel Execution End of Build Batches Start of Build Time
  • 35. Parallel Execution - Reality Bites End of Build Batches Start of Build Agent availability Time
  • 37. "You can't manage what you can't measure." not by W. Edwards Deming If you believe just in it you are doomed.
  • 38. You can't improve something if you can't measure it Profiler, Build statistics, Logs, statsd → Graphite
  • 39. Anatomy of Build* Compilation Packaging Executing Tests Fetching Dependencies *Any resemblance to maven build is entirely accidental SCM Update Agent Availability/Setup Publishing Results
  • 40. JIRA Unit Tests Build Compilation (7min) Packaging (0min) Executing Tests (7min) Fetching Dependencies (1.5min) SCM Update (2min) Agent Availability/Setup (mean 10min) Publishing Results (1min)
  • 41. Decreasing Test Execution Time to ZERRO alone would not let us achieve our goal!
  • 42. Agent Availability/Setup • starved builds due to busy agents building very long builds • time synchronization issue - NTPD problem Fixes applied
  • 43. • Proximity of SCM repo • shallow git clones are not so fast and lightweight + generating extra git server CPU load • git clone per agent/plan + git pull + git clone per build (hard links!) • Atlassian Stash was thankful (queue) SCM Update - Checkout time 2 min → 5 seconds Trade disk space for speed
  • 45. • Fix Predator • Sandboxing/isolation agent trade-off: rm -rf $HOME/.m2/repository/com/atlassian/* into find $HOME/.m2/repository/com/atlassian/ -name “*SNAPSHOT*” | xargs rm • Network hardware failure found (dropping packets) Fetching Dependencies 1.5 min → 10 seconds
  • 46. Compilation • Restructuring multi-pom maven project and dependencies • Maven 3 parallel compilation FTW -T 1.5C *optimal factor thanks to scientific trial and error research 7 min → 1 min
  • 47. Unit Test Execution • Splitting unit tests into 2 buckets: good and legacy (much longer) • Maven 3 parallel test execution (-T 1.5C) 7 min → 5 min 3000 poor tests (5min) 11000 good tests (1.5min)
  • 48. Functional Tests • Selenium 1 removal did help • Faster reset/restore (avoid unnecessary stuff, intercepting SQL operations for debug purposes - building stacktraces is costly) • Restoring via Backdoor REST API • Using REST API for common setup/ teardown operations
  • 50. Publishing Results • Server log allocation per test → using now Backdoor REST API (was Selenium) • Bamboo DB performance degradation for rich build history - to be addressed 1 min → 40 s
  • 51. Unexpected Problem • Stability issues with our CI server • The bottleneck changed from I/O to CPU • Too many agents per physical machine
  • 52. JIRA Unit Tests Build Improved Compilation (1min) Packaging (0min) Executing Tests (5min) Fetching Dependencies (10sec) SCM Update (5sec) Agent Availability/Setup (3min)* Publishing Results (40sec)
  • 53. Improvements Summary Tests Before After Improvement % Unit tests 29 min 17 min 41% Functional tests 56 min 34 min 39% WebDriver tests 39 min 21 min 46% Overall 124 min 72 min 42% * Additional ca. 5% improvement expected once new git clone strategy is consistently rolled-out everywhere
  • 55. But that's still bad We want CI feedback loop in a few minutes maximum
  • 57. Codebase Split - Problems • Organizational concerns - understanding, managing, integrating, releasing • Mindset change - if something worked for 10 years why to change it? • We damned ourselves with big buckets for all tests - where do they belong to?
  • 58. Splitting code base • Step 0 - JIRA Importers Plugin (3.5 years ago) • Step 1- New IssueView and Navigator JIRA 6.0
  • 59. We are still escaping hell. Hell sucks in your soul.
  • 60. Conclusions • Visibility and problem awareness help • Maintaing huge testbed is difficult and costly • Measure the problem, measure improvements • No prejudice - no sacred cows • Automated tests are not one-off investment, it's a continuous journey • Performance is a damn important feature
  • 62. Interested in such stuff? Talk to me at the conference or visit http://www.spartez.com/careers We are hiring in Gdańsk
  • 63. • Turtle - by Jonathan Zander, CC-BY-SA-3.0 • Loading - by MatthewJ13, CC-SA-3.0 • Magic Potion - by Koolmann1, CC-BY-SA-2.0 • Merlin Tool - by By L. Mahin, CC-BY-SA-3.0 • Choose Pills - by *rockysprings, CC-BY-SA-3.0 • Flashing Red Light - bt Chris Phan, CC BY 2.0 Images - Credits