28
Speakers: Continuous Integration in the Cloud Conference Track: Developer James Hatton & Alexis Williams

Continuous Integration In The Cloud Final (1)

Embed Size (px)

DESCRIPTION

Continuous integration of cloud based applications using a combination of technologies: Visual Force, Apex, Selenium, Jenkins, Ant, & YUI test framework

Citation preview

Page 1: Continuous Integration In The Cloud Final (1)

Speakers:

Continuous Integration in the Cloud

Conference Track: Developer

James Hatton & Alexis Williams

Page 2: Continuous Integration In The Cloud Final (1)

James Hatton

Senior Member of Technical Staff

Page 3: Continuous Integration In The Cloud Final (1)

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 intellectual property and other litigation, risks associated with 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-Q for the most recent fiscal quarter ended April 30, 2011. This 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.

Page 4: Continuous Integration In The Cloud Final (1)

Agenda

What is Continuous Integration and why do I need it?

How do I set it up?

How do I extend it to meet my needs in the future?

Page 5: Continuous Integration In The Cloud Final (1)

Question

Are you using a form of source control such as

Subversion, CVS, Perforce etc?

Page 6: Continuous Integration In The Cloud Final (1)

Human’s are not good at boring tasks

Page 7: Continuous Integration In The Cloud Final (1)

Running tests is boring

So Running tests manually is boring and you forget.

Tests break and you don’t know which change broke

what.

The longer it takes your to discover a test failure the

longer it will take to find the root cause and fix it.

So if your too bored to run the tests who will?

An Intern? The pointy haired boss? Or…

Page 8: Continuous Integration In The Cloud Final (1)

A Robot!

Page 9: Continuous Integration In The Cloud Final (1)

Think friendly Robot

Page 10: Continuous Integration In The Cloud Final (1)

Not

Page 11: Continuous Integration In The Cloud Final (1)

Your Development Cycle:

Multiple team members check in code to your version

control system

Have a robot integrate your team’s changes and run

your tests to make sure they are compatible.

If they are compatible release the changes to a test org

If they are not compatible and tests fail alert the person

who broke the tests and optionally the team.

Page 12: Continuous Integration In The Cloud Final (1)

O.K I’m interested.

• Most popular Continuous Integration server in use

today is called “Jenkins”.

• Open Source with a rich set of plugin’s available to

extend it’s functionality.

• They went with the “butler” metaphor instead of “robots”

in their Logo but otherwise I recommend it

Page 13: Continuous Integration In The Cloud Final (1)

Moving Parts

force.com migration tool

Source Control Repository (Subversion, CVS, perforce etc)

Email Notification

Page 14: Continuous Integration In The Cloud Final (1)

Lets go Shopping

We need to download the following:

Java JDK http://www.oracle.com/technetwork/java

Apache Ant http://ant.apache.org

Force.com Migration tool (via the Setup menu)

Jenkins http://jenkins-ci.org/

Page 15: Continuous Integration In The Cloud Final (1)

What’s with all this software?

You came to the cloud to get away from installing

software.

The good news is your actual tests will execute in the

cloud using salesforce.com servers for the heavy lifting.

No need for a beefy build server

Proof: Win XP VM with 1 GB RAM

Page 16: Continuous Integration In The Cloud Final (1)

DEMO 1

Configuring Jenkins

Page 17: Continuous Integration In The Cloud Final (1)

Alexis Williams

Senior Member of Technical Staff

Page 18: Continuous Integration In The Cloud Final (1)

Java Script & VF

Who use’s Java script in their visual force pages:

frameworks, home grown, or combinations?

Who’s ever had an error in their Java script?

How was it found: QA, you, or a customer?

Page 19: Continuous Integration In The Cloud Final (1)

Java Script Testing with YUI Test

Handles: dependencies upon page events

Execution types: synchronous & asynchronous

Simulation of actions: mouse & keyboard

Page 20: Continuous Integration In The Cloud Final (1)

YUI Test – Test Case & Test Method

Page 21: Continuous Integration In The Cloud Final (1)

Enter The YUI Tests & Visual Force

Harness the power of YUI Test on a VF page

Page 22: Continuous Integration In The Cloud Final (1)

Selenium to the Rescue

Selenium IDE – Firefox add on that allows you to easily

create, run, & export test cases with test methods

Selenium RC Server – Server that allows you to run

your Selenium tests especially once they’ve been

converted to Java or another language

Page 23: Continuous Integration In The Cloud Final (1)

Selenium IDE

Page 24: Continuous Integration In The Cloud Final (1)

Selenium & Eclipse & Selenium RC Server

Copy & paste the primer code from the IDE

Page 25: Continuous Integration In The Cloud Final (1)

The Whole Enchilada

Page 26: Continuous Integration In The Cloud Final (1)

DEMO 2

Jenkins Advanced

YUI Tests

Selenium (IDE / RC)

Ant

Page 27: Continuous Integration In The Cloud Final (1)

Resources

http://jenkins-ci.org/

http://seleniumhq.org/

http://developer.yahoo.com/yui/3/test/

http://ant.apache.org/

http://maven.apache.org/

http://git-scm.com/

http://www.perforce.com/

Page 28: Continuous Integration In The Cloud Final (1)

Questions?

Now or on the Chatter Feed…