Gozengo sauce presentation

17
Continuous Deployment at Gozengo How we implemented CD as a culture from our inception Daniel Straus Director of QA Linkedin: https://www.linkedin.com/pub/dan iel-straus/3/300/8b2

Transcript of Gozengo sauce presentation

Page 1: Gozengo sauce presentation

Continuous Deployment at Gozengo

How we implemented CD as a culture from our inception

Daniel StrausDirector of QA

Linkedin: https://www.linkedin.com/pub/daniel-

straus/3/300/8b2

Page 2: Gozengo sauce presentation

OverviewWhat is Gozengo?Why Continuous Deployment?Getting Buy InChallenges to ImplementationWhy Selenium WebDriver?Ruby/Rpsec/Page Objects Jenkins/SaucelabsHow it worksDemoCode ExampleThe future

Page 3: Gozengo sauce presentation

What is Gozengo An online vacation shopping site

We sell hotel and vacation packages

Currently we offer trips to areas in the Caribbean with more destinations around the world to come.

Page 4: Gozengo sauce presentation

Our Tech TeamCurrently about 12 Devs3 QA engineers4 Ops

Page 5: Gozengo sauce presentation

So why Continuous Deployment?

I started 3 months into GozengoNo product at that pointCD was a decision we made because:

Would gets us into the habit of working and pushing code quickly (make it the culture).

Would make Devs more responsible for checking their stuff at earlier stages (unit tests, spot checks on local environments, cross browser checks)

Would allow us to be more Agile in our development process (Design, Dev, QA and on to “Prod” quickly so we could iterate).

Every change would be checked so if something breaks it would be easier to track down the source of the breakage and revert or fix quickly.

Page 6: Gozengo sauce presentation

So how does it all work?Github

Devs work in branches and create pull requestsAll PRs are reviewed by at least 1 other Dev. Items

checked for in the PRsCorrectnessTestabilityUnit Tests (where applicable)Feature Flags (where applicable)

Page 7: Gozengo sauce presentation

So how does it all work? (Part 2)

Selenium. Why? Well supported with a large community Supports numerous languages (Ruby, Java, Python, etc) Supports most browsers (Safari, FF, Chrome, IE, Safari, etc) Works on Mac, Windows and Linux SauceLabs

Automation framework - Ruby/Rspec/Page Objects Use the Selenium Ruby bindings Rspec – Make for really nice English readable test which are self

documenting Page Objects – Easier code maintainability

CI/CD Server - Jenkins Manage all our builds/tests Allows for parallelism (speeds up testing) Works seamlessly with Saucelabs

Page 8: Gozengo sauce presentation

CDing Ain’t EasyLaunching builds

To start only 1 dev held the keys. Not very scalable.Any dev should be able to deploy but how? Initial solution was a simply shell script that

deploys code to a box. Ok but kind of a pain as you had to:SSH to boxBecome a specific user Run scriptMake sure build worked and if it did not investigate

why via the console. Improvements - Worked with Dev team to

implement Hubot (https://hubot.github.com/) for deploys via our hipchat client.

Page 9: Gozengo sauce presentation

CDing Ain’t Easy (cont’d)Dev testing responsibility

Devs write code but what should they test? Unit testing is keyDealing with 3rd party dependencies (Mocks away)FE devs need to check stuff cross browser

Where to testSince FE devs need to test cross browser how do we

give them access to all versions we support? Saucelabs!Sandbox environments

Stand alone environments that devs can push local code toHas a copy of the staging DB (refreshed every evening)Allows for incremental testing and updating of tests prior to

merging code.

Page 10: Gozengo sauce presentation

CDing Ain’t Easy (cont’d)What to test

Test everything?????Critical Path

Who writes the Selenium tests and why?QA Centralized ownershipDevs can concentrate on writing code/unit testsQA has a better understanding of the application

as a wholeWrite the tests in a way that makes it easy for the

Devs to work with if updates are needed (DSL).

Page 11: Gozengo sauce presentation

WorkflowPull

Request

PR Approved

?

Deploy to Staging

using Hubot

The above PR approval process includes 1. Unit tests

added 2. All existing

unit tests passing.

3. Feature flag created (if needed)

Run Regression

tests (Critical Path) via

Jenkins/SauceLabs)

Page 12: Gozengo sauce presentation

Deploying to Staging

Queue – Devs get in line when. To try and keep the queue moving as quickly as possible CP must run under 8 mins. Devs can agree to push 2 or 3 PRs at one time but one Dev must take ownership of the deploy (with the other Devs available if needed).

Page 13: Gozengo sauce presentation

DEMO

Page 14: Gozengo sauce presentation

Example Test OutputENVIRONMENT=staging_customer WHICH_BROWSER=chrome rspec landing_page_b2c/footer_links_spec.rb --format documentation

Footer Links Visit footer links Should display landing page if 'Gozengo.com' is clicked Should display about page if 'About' is clicked Should display privacy policy page when 'Privacy Policy' is clicked Should display Terms and Conditions page when 'Terms and Conditions is clicked Should display Contact page when 'Contact' is clicked Email Sign-Up Should display the Email Sign-up page when 'Email Sign-Up' is 404 page Should take the user the 404 page

Page 15: Gozengo sauce presentation

Getting to Prod

Deploy to Staging

Run Regression

tests (Critical Path) via

Jenkins/SauceLabs)

CP Passed

?

All existing functionality is working properly and new features are turned off behind a feature flag.

Deploy to Prod using

Hubot

Page 16: Gozengo sauce presentation

The FutureMobile Web (Appium)Native Applications (Appium)Visual Diff Testing (Applitools)Improve the Queuing systemAlways refining the process (not 1 size fits all)

Page 17: Gozengo sauce presentation