SlideShare a Scribd company logo
Continuous
Delivery
@wajrcs
folio3, 26 Jan 2017
https://github.com/waqar-alamgir/learning-travis
Case
Studies
Agile 101
&
The first sprint of a Team
Iteration
Analysis + Design
Development
Testing + Showcase
0 1 2 3 4
Integration + QA Release and operation
Customer
Centralized QA IT Operations
"Agile" team
The "last mile"
Agile 101
Barnes&Noble | NOOK
disrupting traditional businesses
http://code.flickr.net/
Flickr, a Yahoo company - Web 2.0
Why
Releasing
Frequently?
1. Build the right thing
Eric Ries, “The Lean Startup” http://bit.ly/8ZoX5F
Customer
development
Agile product
development
Releasing Frequently
Do Less
“Far More than 50% of functionality in
the Software is never or rarely used.
Many are no value features.”
• Create hypothesis
• Deliver minimum viable product
• Get feedback (repeat)
Eric Ries, “The Lean Startup” http://bit.ly/8ZoX5F
Data
Ideas
BuildLearn
Scientific Method
Measure
Code
“How long would it take your
organization to deploy a change that
involved just one single line of code? Do
you do this on a repeatable, reliable
basis?”
Mary and Tom Poppendieck, Implementing Lean Software Development, p59.
Ask this Question
1. build the right thing
2. reduce risk of release
John Allspaw: “Ops Metametrics”http://slidesha.re/dsSZIr
Releasing Frequently
Optimize for MTRS
Mean Time
Between Failures
Mean Time
Restore Service
John Allspaw: “Building Resilience in Web Development and Operations”
http://www.usievents.com/en/conferences/8-paris-usi-2011/sessions/968-john-allspaw
Optimize for MTRS
1. build the right thing
2. reduce risk of release
3. real project progress
Releasing Frequently
Continuous Delivery - Automate & Build Better Software with Travis CI
Releasing Frequently
Our highest priority is to satisfy
the customer through early and
continuous delivery of valuable
software
Agile Manifesto
Software always be production ready.
Releases tied to business needs, not operational
constraints.
Continuous Delivery
Fast, automated feedback on
the production readiness of
your applications every time
there is a change - to code,
infrastructure, or configuration
Production-ready Software
automation
patterns and practices
collaboration
Continuous Delivery
configuration management
More:
http://www.slideshare.net/wajrcs/infrastructure-automation-with-chef-ansible
continuous integration
automated testing
Ingredients
Develop
Build
Mainline
Server
Build
pull
Local
Workstation
Build
push
✔
Done!
“Cease dependence on
mass inspection to
achieve quality.
Improve the process
and build quality into
the product in the first
place”
W. Edwards Deming
Build quality
Business facing
Technology facing
Critiqueproject
Supportprogramming
AUTOMATED
Functional
acceptance tests
MANUAL
Showcases
Usability
testing
Exploratory
testing
Unit tests Non-functional
Integration tests acceptance tests
System tests (performance, scaling, ...)
AUTOMATED MANUAL /AUTOMATED
Diagram invented by Brian Marick
Different Kinds of Testing
an automated implementation of your
system’s build, deploy, test, release process
visibility
feedback
control
Deployment pipeline
Delivery team Version control Build & unit
tests
Automated
acceptance tests
User acceptance
tests
Release
Check in
Feedback
Trigger
Check in
Feedback
Trigger
Trigger
Check in
Trigger
Trigger
Approval
Approval
Feedback
Feedback
Feedback
Feedback
Deployment Pipeline
Why?
• Easier to test
• Easier to measure
• Easier to follow
• Streamlines the development process
Code Quality
When someone doesn’t follow the coding style guidelines
• PEAR coding standard -
http://pear.php.net/manual/en/standards.php
• PEAR2 coding standard -
http://pear.php.net/manual/en/pear2cs.rules.
php
• PHP Standards Working Group -
http://groups.google.com/group/php-
standards
Measuring Code Quality
• Use an indent of 4 spaces, with no tabs.
• Control Structures:
<?php
if ((condition1) || (condition2)) {
action1;
} elseif ((condition3) && (condition4)) {
action2;
} else {
defaultAction;
}
?>
PEAR Coding Standard
• Broad
• Strict, but flexible
• Based on a “standard” standard
• Everyone must follow
Custom Standards
"tokenises your PHP, JavaScript and CSS files and
detects violations of a defined set of coding
standards“
http://pear.php.net/package/PHP_CodeSniffer
• PEAR package
• Single file or entire directory
• Preset and customizable
PHP_CodeSniffer
$ phpcs /myDir/myFile.php
FILE: /myDir/myFile.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
2 | ERROR | Missing file doc comment
20 | ERROR | PHP keywords must be lowercase;
expected "false" but found "FALSE"
47 | ERROR | Line not indented correctly;
expected 4 spaces but found 1
--------------------------------------------------------------------------------
Output
• Unit - the smallest piece of testable code
within my application or script.
• Unit test - a piece of code that executes the
unit and then evaluates the result returned.
Unit Tests
• Make sure the unit is small enough so the test
is testing a single function.
• Make sure the test is efficient enough to run
repeatedly, perhaps even a thousand times a
day.
• Make sure the tests do not depend on each
other. Each test should be able to run
completely separately from other tests.
Tips
function validateName($name) {
if ((strlen($name) > 1) && (strlen($name) < 50)) {
if (ctype_alpha(str_replace(array(" ",",","-","'"),"",$name))) {
return true;
}
else {
return false;
}
}
else {
return false;
}
}
assert(validateName("Beth's Test Name"));
How Many Tests?
Enough to test every basic function of the code.
• Standardize test format
• Easily run tests
• Analyze results
Testing Frameworks
PHPUnit - http://www.phpunit.de
Pros:
• Good documentation
• Lots of examples online
• Integrates with many other popular tools and
platforms
Cons:
• Command line only
SimpleTest - http://www.simpletest.org/
Pros:
• Run on command line or in browser
• Can test front-end functionality
Cons:
• Not as integrated as PHPUnit
Selenium - http://seleniumhq.org/
Pros:
• Can test front-end functionality
• Selenium-WebDriver (makes direct calls to the
browser using each browser’s native support
for automation)
Cons:
• Not a native PHP tool, but bindings are
available from several third-parties
• Perform a DB query to update the schema,
clear a cache, upload files, run cron tasks, etc.
Automate The Build
Phing - http://phing.info
• PHP project build system
• Based on Apache Ant
• XML build files and PHP "task" classes
• Integrates with both PHPUnit and SimpleTest
as well as phpDocumentor
• Platform independent
• No required external dependencies
PhingBuildfile:
<?xml version="1.0" encoding="UTF-8"?>
<project name="FooBar" default="dist">
<!-- ============================================ -->
<!-- Target: prepare -->
<!-- ============================================ -->
<target name="prepare">
<echo msg="Making directory ./build" />
<mkdir dir="./build" />
</target>
<!-- ============================================ -->
<!-- Target: build -->
<!-- ============================================ -->
<target name="build" depends="prepare">
<echo msg="Copying ./about.php to ./build directory..." />
<copy file="./about.php" tofile="./build/about.php" />
</target>
<!-- ============================================ -->
<!-- (DEFAULT) Target: dist -->
<!-- ============================================ -->
<target name="dist" depends="build">
<echo msg="Creating archive..." />
<tar destfile="./build/build.tar.gz"
compression="gzip">
<fileset dir="./build">
<include name="*" />
</fileset>
</tar>
<echo msg="Files copied and compressed in build
directory OK!"/>
</target>
</project>
Maven - http://maven.apache.org
• Supports Ant tasks
• Large library of third-party plug-ins to
integrate other continuous integration tools
• Helps shield you from the details of the build
• For Java-based projects, so you’ll need Maven
for PHP: http://www.php-maven.org/
Capistrano - http://www.capistranorb.com
• A remote server automation and
deployment tool written in Ruby.
Capistrano File:
set :application, "yii_blog" #Edit your app name
set :repo_url, "https://github.com/waqar-alamgir/yii-capistrano.git" # EDIT your git repository
if ENV['user']
set :repo_url, "https://" + ENV['user'] + "@github.com/waqar-alamgir/yii-capistrano.git" # EDIT your git repository
end
set :deploy_to, "/var/www/html/yii-capistrano/" # EDIT folder where files should be deployed to
set :scm, "git"
set :branch, ENV['branch'] || "master"
namespace :deploy do
# Writing permissions to /protected/runtime/ and /assets/
desc "Restart"
after :updated, :build do
on roles(:app) do
within release_path do
execute :chmod, "-R 777 #{release_path}/protected/runtime/"
execute :chmod, "-R 777 #{release_path}/assets/"
end
end
end
# Copy yii configuration files /protected/config/
desc "Copy config file"
after :updated, :build do
on roles(:all) do |host|
%w[ yii-config/main.php , yii-config/console.php ].each do |f|
upload! "" + f , "#{release_path}/protected/config/" + f
end
end
end
# Run yii database migrations
desc "Build"
after :updated, :build do
on roles(:app) do
within release_path do
execute :php, "#{release_path}/protected/yiic migrate --interactive=0"
end
end
end
end
https://github.com/waqar-alamgir/yii-capistrano
• phpDocumentor 2:
http://www.phpdoc.org/
• Merging phpDocumentor and DocBlox
• Automates documentation
• Tutorial:
http://manual.phpdoc.org/HTMLSmartyConverte
r/HandS/phpDocumentor/tutorial_phpDocument
or.howto.pkg.html
Documentation
http://stackoverflow.com/questions/1310050/php-function-comments/3823007#3823007
/**
* Does something interesting
*
* @param Place $where Where something interesting takes place
* @param integer $repeat How many times something interesting should happen
*
* @throws Some_Exception_Class If something interesting cannot happen
* @author Waqar Alamgir <bonjour@waqaralamgir.t>
* @return Status
*/
/**
* Short description for class
*
* Long description for class (if any)...
*
* @copyright 2016 Zend Technologies
* @license http://www.zend.com/license/3_0.txt PHP License 7.0
* @version Release: @package_version@
* @link http://dev.zend.com/package/PackageName
* @since Class available since Release 1.2.0
*/
Continuous Delivery - Automate & Build Better Software with Travis CI
Continuous Delivery - Automate & Build Better Software with Travis CI
Technical Debt
Assigns a technical debt value
• The debt
• The cost to reimburse
• The work to reimburse
• The breakdown
When the technical debt unrolls
1. Email plugin
Sends a build status email.
2. Lint plugin/ Php parallel lint plugin
This plugin runs PHP's built in Lint (syntax / error check) functionality.
Similar to the standard PHP Lint plugin, except that it uses the PHP Parallel Lint project to run.
3. Pdepend plugin
Runs PDepend software metrics.
4. PHP Code Sniffer plugin
Runs PHP Code Sniffer against your build.
5. Php copy paste detector plugin
Runs PHP Copy / Paste Detector against your build.
6. PHP Docblock Checker
Runs the PHP Docblock Checker against your build. This tool verifies that all classes and methods have
docblocks.
7. Php loc plugin
Runs PHPLoc against your project and records some key metrics.
8. Php mess detector plugin
Runs PHP Mess Detector against your build. Records some key metrics, and also reports errors and warnings.
9. PhpUnit Plugin
Runs PHPUnit tests against your build.
10. Technical Debt Plugin
Checks all files in your project for TODOs and other technical debt.
• Cruise Control
• Hudson / Jenkins
• PHP CI
• Travis CI
Continuous Integration Tools
PHPCI - Reporting
• Project is small, budget is small…
• Evaluate which tools are worthwhile to your
specific project.
Yes, But…
• Consider including unit tests or code
cost/coverage reports in your deliverables to
your customers as an added value to them
(and you down the road).
Make It a Deliverable
Project:
A customer hires you to create a registration
form for a one-time event. It’s a small
customer with a small budget. It should take a
couple hundred lines of code in a single file,
results will be e-mailed. It will be tested by the
event staff and the marketing department on
the live site as they do not have a test
environment, and it will only be live for two
months.
What they need:
1. If they do not have an in-house standard for
you to follow, write it using one of the main
coding standards, like PEAR.
2. Create unit tests for it.
What they don’t need:
1. In-depth reporting
2. Full automation, including build.
3. Documentation
Project:
A customer hires you for an ongoing project. On
the 15th of every month, they need you to go
in and add a new survey to collect data and
write it to a database. The previous month’s
survey data needs to be backed up and
cleared out of the database when the new
survey goes live.
What they need:
1. If they do not have an in-house standard for
you to follow, write it using one of the main
coding standards, like PEAR.
2. Create unit tests for it and use a testing
framework.
3. Automate the build.
What they don’t need:
1. In-depth reporting (Maybe)
2. Documentation (Maybe)
Project:
A customer hires you to write one part of a very
large application. Other consultants that you
do not have access to will be working on other
parts of the application at the same time.
What they need:
1. All of it
In this situation, see if you can convince them to
get everyone working on a unified
continuous integration platform utilizing a
complete suite of continuous integration
tools from standards to documentation and
fully automated everywhere in between.
Not everything is beneficial
enough to use in every
situation, so choose the right
tools for your project and
needs.
Take Away #1
The fewer steps I have to
remember to do manually, the
more successful my project will
be.
Take Away #2
release ! = deployment
No builds. No change. No upgrades. Is it read-only Day?
NAH! NOT NECESSARILY
Take Away #3
[featureToggles]
wobblyFoobars: true
flightyForkHandles: false
Config File
<?if ($wobblyFoobars) {?>
... various UI elements
<?}?>
some.php
$fork_handle = ($featureConfig->isOn(‘flightlyForkHandles‘)) ?
new flightyForkHander(aCandle) :
new forkHandler(aCandle);
other.php
Stolen from Martin Fowler http://martinfowler.com/bliki/FeatureToggle.html
Feature Toggles
https://github.com/waqar-alamgir/learning-travis
Travis Demo
Resources
• CruiseControl - http://cruisecontrol.sourceforge.net
• Guide to writing your own PHP_CodeSniffer standards (Official) -
http://pear.php.net/manual/en/package.php.php-codesniffer.coding-standard-tutorial.php
• Guide to writing your own PHP_CodeSniffer standards (Alternate) - http://luhman.org/blog/2009/12/17/setting-
custom-coding-standards-php-codesniffer
• Hudson - http://hudson-ci.org
• Jenkins - http://jenkins-ci.org
• Maven - http://www.php-maven.org
• PEAR coding standard - http://pear.php.net/manual/en/standards.php
• PEAR Package Manager Installation - http://pear.php.net/manual/en/installation.php
• PEAR Packages Installation - http://pear.php.net/manual/en/guide.users.commandline.installing.php
• PEAR2 coding standard - http://pear.php.net/manual/en/pear2cs.rules.php
• Phing - http://phing.info
• PHP Standards Working Group - http://groups.google.com/group/php-standards
• PHP_CodeSniffer - http://pear.php.net/package/PHP_CodeSniffer
• phpDocumentor 2 - http://www.phpdoc.org/
• PHPUnit - http://www.phpunit.de/manual/3.6/en/automating-tests.html
• phpUnderControl - http://phpundercontrol.org
• Selenium - http://seleniumhq.org/
• SimpleTest - http://www.simpletest.org
• Sonar - http://www.sonarsource.org
• Sonar PHP Plug-in - http://docs.codehaus.org/display/SONAR/PHP+Plugin
• Sonar Technical Debt Plugin - http://docs.codehaus.org/display/SONAR/Technical+Debt+Plugin
• Template for Jenkins Jobs for PHP Projects by Sebastian Bergmann - http://jenkins-php.org
QA
Please send your Feedback at
@wajrcs / walamgir@folio3.com
Thank Y u

More Related Content

PPT
How to Build and Maintain Quality Drupal Sites with Automated Testing
PDF
Auditing Drupal Sites
PDF
Drupal 7 ci and testing
PDF
How To Use Selenium Successfully (Java Edition)
PDF
Using Selenium to Improve a Teams Development Cycle
ODP
Integration Testing in Python
ZIP
Five Easy Ways to QA Your Drupal Site
PDF
Selenium Frameworks
How to Build and Maintain Quality Drupal Sites with Automated Testing
Auditing Drupal Sites
Drupal 7 ci and testing
How To Use Selenium Successfully (Java Edition)
Using Selenium to Improve a Teams Development Cycle
Integration Testing in Python
Five Easy Ways to QA Your Drupal Site
Selenium Frameworks

What's hot (20)

PDF
Integration testing - A&BP CC
PPTX
PowerShell Plus v4.7 Overview
PPTX
JavaLand - Integration Testing How-to
PDF
Automated Visual Regression Testing by Dave Sadlon
PDF
The Seven Habits of Highly Effective Puppet Users - PuppetConf 2014
PDF
Create, test, secure, repeat
PDF
How To Find Information On Your Own
PPT
Testing Java Web Apps With Selenium
PDF
Behat bdd training (php) course slides pdf
PDF
Unit testing - A&BP CC
PPTX
Riga Dev Day - Automated Android Continuous Integration
PDF
Rspec and Capybara Intro Tutorial at RailsConf 2013
PPTX
DevOps & Security: Here & Now
PPTX
Continuous Security Testing in a Devops World #OWASPHelsinki
PDF
Continuous Deployment at Etsy — TimesOpen NYC
PDF
Security DevOps - Staying secure in agile projects // OWASP AppSecEU 2015 - A...
PDF
DevSecCon London 2017: Permitting agility whilst enforcing security by Alina ...
PPTX
JNation - Integration Testing from the Trenches Rebooted
PPTX
Breaking Dependencies to Allow Unit Testing - DevIntersection Spring 2016
PPTX
Jbehave selenium
Integration testing - A&BP CC
PowerShell Plus v4.7 Overview
JavaLand - Integration Testing How-to
Automated Visual Regression Testing by Dave Sadlon
The Seven Habits of Highly Effective Puppet Users - PuppetConf 2014
Create, test, secure, repeat
How To Find Information On Your Own
Testing Java Web Apps With Selenium
Behat bdd training (php) course slides pdf
Unit testing - A&BP CC
Riga Dev Day - Automated Android Continuous Integration
Rspec and Capybara Intro Tutorial at RailsConf 2013
DevOps & Security: Here & Now
Continuous Security Testing in a Devops World #OWASPHelsinki
Continuous Deployment at Etsy — TimesOpen NYC
Security DevOps - Staying secure in agile projects // OWASP AppSecEU 2015 - A...
DevSecCon London 2017: Permitting agility whilst enforcing security by Alina ...
JNation - Integration Testing from the Trenches Rebooted
Breaking Dependencies to Allow Unit Testing - DevIntersection Spring 2016
Jbehave selenium
Ad

Viewers also liked (9)

PPTX
1, 2, 3 build - continuous integration für mobile apps
PPTX
Continuous Delivery for Open Source Java projects
PDF
Continuous integration
PDF
Java and DevOps: Supercharge Your Delivery Pipeline with Containers
PDF
Cloudschool 2014
PPT
Continuous integration
PPTX
Continuous Delivery
PDF
Continuous Integration 101
PPT
CI and CD with Jenkins
1, 2, 3 build - continuous integration für mobile apps
Continuous Delivery for Open Source Java projects
Continuous integration
Java and DevOps: Supercharge Your Delivery Pipeline with Containers
Cloudschool 2014
Continuous integration
Continuous Delivery
Continuous Integration 101
CI and CD with Jenkins
Ad

Similar to Continuous Delivery - Automate & Build Better Software with Travis CI (20)

PPTX
Continuous feature-development
PDF
No Devops Without Continuous Testing
PDF
KrishnaToolComparisionPPT.pdf
PPTX
Cerberus_Presentation1
PPTX
Cerberus : Framework for Manual and Automated Testing (Web Application)
PPTX
Beginners overview of automated testing with Rspec
PPTX
How do you tame a big ball of mud? One test at a time.
PPTX
Getting Started with Test-Driven Development at PHPtek 2023
PDF
Automated Developer Testing: Achievements and Challenges
PDF
QuerySurge for DevOps
PDF
How to use selenium successfully
PPTX
Automated Acceptance Tests & Tool choice
PPTX
Best Practices for Building WordPress Applications
PDF
Workshop quality assurance for php projects - phpdublin
PPTX
Windows 2012 R2 Multi Server Management
PDF
May: Automated Developer Testing: Achievements and Challenges
PDF
Unit Testing in R with Testthat - HRUG
PPTX
Salesforce Continuous Integration with AutoRABIT
PDF
Infinum Android Talks #13 - Developing Android Apps Like Navy Seals by Ivan Kušt
PDF
Simplified DevOps Bliss -with OpenAI API
Continuous feature-development
No Devops Without Continuous Testing
KrishnaToolComparisionPPT.pdf
Cerberus_Presentation1
Cerberus : Framework for Manual and Automated Testing (Web Application)
Beginners overview of automated testing with Rspec
How do you tame a big ball of mud? One test at a time.
Getting Started with Test-Driven Development at PHPtek 2023
Automated Developer Testing: Achievements and Challenges
QuerySurge for DevOps
How to use selenium successfully
Automated Acceptance Tests & Tool choice
Best Practices for Building WordPress Applications
Workshop quality assurance for php projects - phpdublin
Windows 2012 R2 Multi Server Management
May: Automated Developer Testing: Achievements and Challenges
Unit Testing in R with Testthat - HRUG
Salesforce Continuous Integration with AutoRABIT
Infinum Android Talks #13 - Developing Android Apps Like Navy Seals by Ivan Kušt
Simplified DevOps Bliss -with OpenAI API

Recently uploaded (20)

PPTX
Transform Your Business with a Software ERP System
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
top salesforce developer skills in 2025.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PPTX
Introduction to Artificial Intelligence
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
history of c programming in notes for students .pptx
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
medical staffing services at VALiNTRY
PDF
Designing Intelligence for the Shop Floor.pdf
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
assetexplorer- product-overview - presentation
PDF
Nekopoi APK 2025 free lastest update
Transform Your Business with a Software ERP System
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Upgrade and Innovation Strategies for SAP ERP Customers
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Odoo POS Development Services by CandidRoot Solutions
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
top salesforce developer skills in 2025.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PTS Company Brochure 2025 (1).pdf.......
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
Introduction to Artificial Intelligence
Reimagine Home Health with the Power of Agentic AI​
history of c programming in notes for students .pptx
Computer Software and OS of computer science of grade 11.pptx
medical staffing services at VALiNTRY
Designing Intelligence for the Shop Floor.pdf
Softaken Excel to vCard Converter Software.pdf
assetexplorer- product-overview - presentation
Nekopoi APK 2025 free lastest update

Continuous Delivery - Automate & Build Better Software with Travis CI

  • 1. Continuous Delivery @wajrcs folio3, 26 Jan 2017 https://github.com/waqar-alamgir/learning-travis
  • 3. Agile 101 & The first sprint of a Team
  • 4. Iteration Analysis + Design Development Testing + Showcase 0 1 2 3 4 Integration + QA Release and operation Customer Centralized QA IT Operations "Agile" team The "last mile" Agile 101
  • 8. 1. Build the right thing Eric Ries, “The Lean Startup” http://bit.ly/8ZoX5F Customer development Agile product development Releasing Frequently
  • 9. Do Less “Far More than 50% of functionality in the Software is never or rarely used. Many are no value features.”
  • 10. • Create hypothesis • Deliver minimum viable product • Get feedback (repeat) Eric Ries, “The Lean Startup” http://bit.ly/8ZoX5F Data Ideas BuildLearn Scientific Method Measure Code
  • 11. “How long would it take your organization to deploy a change that involved just one single line of code? Do you do this on a repeatable, reliable basis?” Mary and Tom Poppendieck, Implementing Lean Software Development, p59. Ask this Question
  • 12. 1. build the right thing 2. reduce risk of release John Allspaw: “Ops Metametrics”http://slidesha.re/dsSZIr Releasing Frequently
  • 14. Mean Time Between Failures Mean Time Restore Service John Allspaw: “Building Resilience in Web Development and Operations” http://www.usievents.com/en/conferences/8-paris-usi-2011/sessions/968-john-allspaw Optimize for MTRS
  • 15. 1. build the right thing 2. reduce risk of release 3. real project progress Releasing Frequently
  • 18. Our highest priority is to satisfy the customer through early and continuous delivery of valuable software Agile Manifesto
  • 19. Software always be production ready. Releases tied to business needs, not operational constraints. Continuous Delivery
  • 20. Fast, automated feedback on the production readiness of your applications every time there is a change - to code, infrastructure, or configuration Production-ready Software
  • 24. “Cease dependence on mass inspection to achieve quality. Improve the process and build quality into the product in the first place” W. Edwards Deming Build quality
  • 25. Business facing Technology facing Critiqueproject Supportprogramming AUTOMATED Functional acceptance tests MANUAL Showcases Usability testing Exploratory testing Unit tests Non-functional Integration tests acceptance tests System tests (performance, scaling, ...) AUTOMATED MANUAL /AUTOMATED Diagram invented by Brian Marick Different Kinds of Testing
  • 26. an automated implementation of your system’s build, deploy, test, release process visibility feedback control Deployment pipeline
  • 27. Delivery team Version control Build & unit tests Automated acceptance tests User acceptance tests Release Check in Feedback Trigger Check in Feedback Trigger Trigger Check in Trigger Trigger Approval Approval Feedback Feedback Feedback Feedback Deployment Pipeline
  • 28. Why? • Easier to test • Easier to measure • Easier to follow • Streamlines the development process Code Quality When someone doesn’t follow the coding style guidelines
  • 29. • PEAR coding standard - http://pear.php.net/manual/en/standards.php • PEAR2 coding standard - http://pear.php.net/manual/en/pear2cs.rules. php • PHP Standards Working Group - http://groups.google.com/group/php- standards Measuring Code Quality
  • 30. • Use an indent of 4 spaces, with no tabs. • Control Structures: <?php if ((condition1) || (condition2)) { action1; } elseif ((condition3) && (condition4)) { action2; } else { defaultAction; } ?> PEAR Coding Standard
  • 31. • Broad • Strict, but flexible • Based on a “standard” standard • Everyone must follow Custom Standards
  • 32. "tokenises your PHP, JavaScript and CSS files and detects violations of a defined set of coding standards“ http://pear.php.net/package/PHP_CodeSniffer • PEAR package • Single file or entire directory • Preset and customizable PHP_CodeSniffer
  • 33. $ phpcs /myDir/myFile.php FILE: /myDir/myFile.php -------------------------------------------------------------------------------- FOUND 3 ERROR(S) AFFECTING 3 LINE(S) -------------------------------------------------------------------------------- 2 | ERROR | Missing file doc comment 20 | ERROR | PHP keywords must be lowercase; expected "false" but found "FALSE" 47 | ERROR | Line not indented correctly; expected 4 spaces but found 1 -------------------------------------------------------------------------------- Output
  • 34. • Unit - the smallest piece of testable code within my application or script. • Unit test - a piece of code that executes the unit and then evaluates the result returned. Unit Tests
  • 35. • Make sure the unit is small enough so the test is testing a single function. • Make sure the test is efficient enough to run repeatedly, perhaps even a thousand times a day. • Make sure the tests do not depend on each other. Each test should be able to run completely separately from other tests. Tips
  • 36. function validateName($name) { if ((strlen($name) > 1) && (strlen($name) < 50)) { if (ctype_alpha(str_replace(array(" ",",","-","'"),"",$name))) { return true; } else { return false; } } else { return false; } } assert(validateName("Beth's Test Name"));
  • 37. How Many Tests? Enough to test every basic function of the code.
  • 38. • Standardize test format • Easily run tests • Analyze results Testing Frameworks
  • 39. PHPUnit - http://www.phpunit.de Pros: • Good documentation • Lots of examples online • Integrates with many other popular tools and platforms Cons: • Command line only
  • 40. SimpleTest - http://www.simpletest.org/ Pros: • Run on command line or in browser • Can test front-end functionality Cons: • Not as integrated as PHPUnit
  • 41. Selenium - http://seleniumhq.org/ Pros: • Can test front-end functionality • Selenium-WebDriver (makes direct calls to the browser using each browser’s native support for automation) Cons: • Not a native PHP tool, but bindings are available from several third-parties
  • 42. • Perform a DB query to update the schema, clear a cache, upload files, run cron tasks, etc. Automate The Build
  • 43. Phing - http://phing.info • PHP project build system • Based on Apache Ant • XML build files and PHP "task" classes • Integrates with both PHPUnit and SimpleTest as well as phpDocumentor • Platform independent • No required external dependencies
  • 44. PhingBuildfile: <?xml version="1.0" encoding="UTF-8"?> <project name="FooBar" default="dist"> <!-- ============================================ --> <!-- Target: prepare --> <!-- ============================================ --> <target name="prepare"> <echo msg="Making directory ./build" /> <mkdir dir="./build" /> </target> <!-- ============================================ --> <!-- Target: build --> <!-- ============================================ --> <target name="build" depends="prepare"> <echo msg="Copying ./about.php to ./build directory..." /> <copy file="./about.php" tofile="./build/about.php" /> </target> <!-- ============================================ --> <!-- (DEFAULT) Target: dist --> <!-- ============================================ --> <target name="dist" depends="build"> <echo msg="Creating archive..." /> <tar destfile="./build/build.tar.gz" compression="gzip"> <fileset dir="./build"> <include name="*" /> </fileset> </tar> <echo msg="Files copied and compressed in build directory OK!"/> </target> </project>
  • 45. Maven - http://maven.apache.org • Supports Ant tasks • Large library of third-party plug-ins to integrate other continuous integration tools • Helps shield you from the details of the build • For Java-based projects, so you’ll need Maven for PHP: http://www.php-maven.org/
  • 46. Capistrano - http://www.capistranorb.com • A remote server automation and deployment tool written in Ruby.
  • 47. Capistrano File: set :application, "yii_blog" #Edit your app name set :repo_url, "https://github.com/waqar-alamgir/yii-capistrano.git" # EDIT your git repository if ENV['user'] set :repo_url, "https://" + ENV['user'] + "@github.com/waqar-alamgir/yii-capistrano.git" # EDIT your git repository end set :deploy_to, "/var/www/html/yii-capistrano/" # EDIT folder where files should be deployed to set :scm, "git" set :branch, ENV['branch'] || "master" namespace :deploy do # Writing permissions to /protected/runtime/ and /assets/ desc "Restart" after :updated, :build do on roles(:app) do within release_path do execute :chmod, "-R 777 #{release_path}/protected/runtime/" execute :chmod, "-R 777 #{release_path}/assets/" end end end # Copy yii configuration files /protected/config/ desc "Copy config file" after :updated, :build do on roles(:all) do |host| %w[ yii-config/main.php , yii-config/console.php ].each do |f| upload! "" + f , "#{release_path}/protected/config/" + f end end end # Run yii database migrations desc "Build" after :updated, :build do on roles(:app) do within release_path do execute :php, "#{release_path}/protected/yiic migrate --interactive=0" end end end end https://github.com/waqar-alamgir/yii-capistrano
  • 48. • phpDocumentor 2: http://www.phpdoc.org/ • Merging phpDocumentor and DocBlox • Automates documentation • Tutorial: http://manual.phpdoc.org/HTMLSmartyConverte r/HandS/phpDocumentor/tutorial_phpDocument or.howto.pkg.html Documentation
  • 49. http://stackoverflow.com/questions/1310050/php-function-comments/3823007#3823007 /** * Does something interesting * * @param Place $where Where something interesting takes place * @param integer $repeat How many times something interesting should happen * * @throws Some_Exception_Class If something interesting cannot happen * @author Waqar Alamgir <[email protected]> * @return Status */ /** * Short description for class * * Long description for class (if any)... * * @copyright 2016 Zend Technologies * @license http://www.zend.com/license/3_0.txt PHP License 7.0 * @version Release: @package_version@ * @link http://dev.zend.com/package/PackageName * @since Class available since Release 1.2.0 */
  • 52. Technical Debt Assigns a technical debt value • The debt • The cost to reimburse • The work to reimburse • The breakdown When the technical debt unrolls
  • 53. 1. Email plugin Sends a build status email. 2. Lint plugin/ Php parallel lint plugin This plugin runs PHP's built in Lint (syntax / error check) functionality. Similar to the standard PHP Lint plugin, except that it uses the PHP Parallel Lint project to run. 3. Pdepend plugin Runs PDepend software metrics. 4. PHP Code Sniffer plugin Runs PHP Code Sniffer against your build. 5. Php copy paste detector plugin Runs PHP Copy / Paste Detector against your build. 6. PHP Docblock Checker Runs the PHP Docblock Checker against your build. This tool verifies that all classes and methods have docblocks. 7. Php loc plugin Runs PHPLoc against your project and records some key metrics. 8. Php mess detector plugin Runs PHP Mess Detector against your build. Records some key metrics, and also reports errors and warnings. 9. PhpUnit Plugin Runs PHPUnit tests against your build. 10. Technical Debt Plugin Checks all files in your project for TODOs and other technical debt.
  • 54. • Cruise Control • Hudson / Jenkins • PHP CI • Travis CI Continuous Integration Tools
  • 56. • Project is small, budget is small… • Evaluate which tools are worthwhile to your specific project. Yes, But…
  • 57. • Consider including unit tests or code cost/coverage reports in your deliverables to your customers as an added value to them (and you down the road). Make It a Deliverable
  • 58. Project: A customer hires you to create a registration form for a one-time event. It’s a small customer with a small budget. It should take a couple hundred lines of code in a single file, results will be e-mailed. It will be tested by the event staff and the marketing department on the live site as they do not have a test environment, and it will only be live for two months.
  • 59. What they need: 1. If they do not have an in-house standard for you to follow, write it using one of the main coding standards, like PEAR. 2. Create unit tests for it. What they don’t need: 1. In-depth reporting 2. Full automation, including build. 3. Documentation
  • 60. Project: A customer hires you for an ongoing project. On the 15th of every month, they need you to go in and add a new survey to collect data and write it to a database. The previous month’s survey data needs to be backed up and cleared out of the database when the new survey goes live.
  • 61. What they need: 1. If they do not have an in-house standard for you to follow, write it using one of the main coding standards, like PEAR. 2. Create unit tests for it and use a testing framework. 3. Automate the build. What they don’t need: 1. In-depth reporting (Maybe) 2. Documentation (Maybe)
  • 62. Project: A customer hires you to write one part of a very large application. Other consultants that you do not have access to will be working on other parts of the application at the same time.
  • 63. What they need: 1. All of it In this situation, see if you can convince them to get everyone working on a unified continuous integration platform utilizing a complete suite of continuous integration tools from standards to documentation and fully automated everywhere in between.
  • 64. Not everything is beneficial enough to use in every situation, so choose the right tools for your project and needs. Take Away #1
  • 65. The fewer steps I have to remember to do manually, the more successful my project will be. Take Away #2
  • 66. release ! = deployment No builds. No change. No upgrades. Is it read-only Day? NAH! NOT NECESSARILY Take Away #3
  • 67. [featureToggles] wobblyFoobars: true flightyForkHandles: false Config File <?if ($wobblyFoobars) {?> ... various UI elements <?}?> some.php $fork_handle = ($featureConfig->isOn(‘flightlyForkHandles‘)) ? new flightyForkHander(aCandle) : new forkHandler(aCandle); other.php Stolen from Martin Fowler http://martinfowler.com/bliki/FeatureToggle.html Feature Toggles
  • 69. Resources • CruiseControl - http://cruisecontrol.sourceforge.net • Guide to writing your own PHP_CodeSniffer standards (Official) - http://pear.php.net/manual/en/package.php.php-codesniffer.coding-standard-tutorial.php • Guide to writing your own PHP_CodeSniffer standards (Alternate) - http://luhman.org/blog/2009/12/17/setting- custom-coding-standards-php-codesniffer • Hudson - http://hudson-ci.org • Jenkins - http://jenkins-ci.org • Maven - http://www.php-maven.org • PEAR coding standard - http://pear.php.net/manual/en/standards.php • PEAR Package Manager Installation - http://pear.php.net/manual/en/installation.php • PEAR Packages Installation - http://pear.php.net/manual/en/guide.users.commandline.installing.php • PEAR2 coding standard - http://pear.php.net/manual/en/pear2cs.rules.php • Phing - http://phing.info • PHP Standards Working Group - http://groups.google.com/group/php-standards • PHP_CodeSniffer - http://pear.php.net/package/PHP_CodeSniffer • phpDocumentor 2 - http://www.phpdoc.org/ • PHPUnit - http://www.phpunit.de/manual/3.6/en/automating-tests.html • phpUnderControl - http://phpundercontrol.org • Selenium - http://seleniumhq.org/ • SimpleTest - http://www.simpletest.org • Sonar - http://www.sonarsource.org • Sonar PHP Plug-in - http://docs.codehaus.org/display/SONAR/PHP+Plugin • Sonar Technical Debt Plugin - http://docs.codehaus.org/display/SONAR/Technical+Debt+Plugin • Template for Jenkins Jobs for PHP Projects by Sebastian Bergmann - http://jenkins-php.org
  • 70. QA Please send your Feedback at @wajrcs / [email protected] Thank Y u