23
Advanced Testing & Debugging Getting the Most from the Developer Console Josh Kaplan, Salesforce.com, Sr. Product Manager @Josh SFDC Tony Tonev, Salesforce.com, Software Engineer

Advanced Testing and Debugging using the Developer Console webinar

Embed Size (px)

DESCRIPTION

The Developer Console is your one-stop shop for developing on the Force.com platform. This application allows you to author and debug Apex code, create Visualforce pages, run tests on your programmatic artifacts, and to inspect your org data via query. Join us as we dig deeper into the comprehensive debugging, profiling, and testing capabilities of the Developer Console. Watch this webinar to: Learn how to run tests using the Developer Console See how to examine log results using the Developer Console Understand how to analyze the performance of your org’s operations Learn about checkpoints, the Force.com equivalent of breakpoints, for debugging Explore the query editor functionality to get better access to your data

Citation preview

Page 1: Advanced Testing and Debugging using the Developer Console webinar

Advanced Testing & Debugging Getting the Most from the Developer Console

Josh Kaplan, Salesforce.com, Sr. Product Manager @Josh SFDC Tony Tonev, Salesforce.com, Software Engineer

Page 2: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

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 July 31, 2012. 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 3: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar Join the conversation: #forcewebinar

Josh Kaplan

Sr. Product Manager, @JoshSFDC

Tony Tonev

Software Engineer

Speakers

Page 4: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Follow Developer Force for the latest news

@forcedotcom / #forcewebinar

Developer Force group

Developer Force – Force.com Community

+Developer Force – Force.com Community

Developer Force

Page 5: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar Join the conversation: #forcewebinar

Have questions?

§  We have an expert support team at the ready to answer your questions during the webinar.

§  Ask your questions via the GoToWebinar Questions Pane.

§  The speaker(s) will choose top questions to answer live at the end of the webinar.

§  Please post your questions as we go along!

§  Only post your question once; we’ll get to it as we go down the list.

Page 6: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar Join the conversation: #forcewebinar

Agenda

§  Testing Apex •  Why test?

•  When test?

•  How test?

§  Code Coverage

§  Advanced Debugging •  Log Inspector

•  Checkpoints

–  Set checkpoints

–  View memory contents

–  Inject logic

Page 7: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar Join the conversation: #forcewebinar

Assumptions

This webinar assumes the following: §  You know…

•  …what Apex code is

•  …how to launch the Developer Console

§  You have… •  …used the Developer Console before

•  …done debugging before

But don’t worry, you can catch up via these resources: http://wiki.developerforce.com/page/Webinar:_Intro_to_Apex_Code_(2012-July)

Page 8: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar Join the conversation: #forcewebinar

Why test?

Page 9: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Testing Protects You From Others

Page 10: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Testing Protects You From Us

Page 11: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

When should I test?

Write tests throughout development §  Before development

§  After development

§  In their own @isTest classes

You should test frequently! §  During development §  Before deployment

§  During deployment

§  During release preview window

Page 12: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

How can I run tests on my code?

Salesforce provides several avenues for test execution §  Developer Console

§  “Setup” User Interface

§  Automatically during deployment

§  Through the Tooling API *COMING SOON!*

Page 13: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Developer Console

Page 14: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Testing in “Setup” User Interface

Page 15: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Asynchronous Test Execution

Salesforce runs your tests in the background so they can be processed as resources allow.

§  Asyncronous testing runs tests in no particular order

§  It allows you to see status of tests as they complete

§  The process is integrated into developer console

Page 16: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Code Coverage

We store the results of your testing to calculate code coverage, and show you these stored results in the developer console.

§  Aggregate coverage for each class and trigger

§  Coverage by each test method on each class and trigger

§  CAUTION! These results are stale as soon as you change the test or the class

Page 17: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Let’s See The Demo Already!

Page 18: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Use Case: UberJet

Page 19: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Debugging Code

Page 20: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

Debugging with the Log Inspector

§  Execution Log •  The entire transaction, line by line and more

§  Source / Variables •  Current code location and variable values

§  Stack •  How you got where you are

•  How long each step took

§  Execution Overview •  Limits

•  Performance per action, per method

Page 21: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar

When the log is not enough…checkpoints!

A checkpoint is like a breakpoint, but cloud-approved §  Heap

•  Provide a view into the memory at the checkpoint

§  SOQL query •  Run a SOQL query at the checkpoint

§  Apex Code •  Inject a miniature apex snippet at the checkpoint

Page 22: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar Join the conversation: #forcewebinar

Recap

§  Testing Is Important, Testing Is Easy •  Test always

•  Use the Developer Console to see results and code coverage statistics

§  Debugging Is Hard, Debugging Can Be Easier •  The Log Inspector provides many views into the haystack

•  Use Checkpoints to see the state of the world at a critical point

Page 23: Advanced Testing and Debugging using the Developer Console webinar

Join the conversation: #forcewebinar Join the conversation: #forcewebinar

Resources

§  Developer Console topic page: http://wiki.developerforce.com/page/Developer_Console

§  Next Steps •  Write More Tests!

•  Use Developer Console To Run Your Tests

•  Use Developer Console To Debug Your Code\