agile testing anti-patterns and rescue strategies (version2)

Post on 29-Nov-2014

517 Views

Category:

Technology

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

Abstract: A lot of them going by the catchy buzz-words adopt practices and end-up paying a lot of price either in terms of un-sustainability or cost-heavy maintenance. This talk is all about learning the things that go wrong in automation testing strategies. We'll then go on to learn how to go the right way about automation testing. Lastly, how do we recover from the elephantine automation test-suite that is killing the team. We'll learn theory. Reflect on our practices to see where we stand. Finally walk away with techniques for theory meeting practice.

TRANSCRIPT

Next  Genera*on  Tes*ng  Conference  (c)

Agile  Tes)ngAn)-­‐Pa.erns  &  Rescue  Strategies

by

Karthik  SirasanagandlaAgile  Coach

Independent  Consultant  |  Industrial  Logic

Again  on  21st  October  2013  |  Hotel  Savera,  Chennai

What do you expect out of this session?

Is anyone having a painful story to share?

The Big Things That Go Wrong..

The Details That Go Awry...

The Rescue Strategies..

The Big Things That Go Wrong!

It’s So SCARY!!!

• Nothing in life is to be feared, it is only to be understood. -- Marie Curie– You’re not afraid to try again, you’re just afraid of

getting hurt.

• In Everyday Scripting with Ruby, Brian Marick advises to learn to program by writing one. #FailProof

• Learn By Doing

Quiz: Guess the reason for this!

Silos

Scrum MasterManager DeveloperQA

...

Results Over Reasoning

• Cost: Manual Versus Automation• Business Value of Deliverable• Automate Everything That Is Repeatable

Discontinuous Integration

CI in Progress

What’s Your Test Architecture?

Quiz Time• What is the wolf that can huff and puff your hay stack in

your test pyramid?

• What is the wolf that can break your wooden stack in your test pyramid?

• Who is the wolf that can break you brick stack in your test pyramid?

• What is the moral of the story? Just build unit tests???

Old Is Gold

One Huge Monolithic Test Suite

The Details That Go Awry!

www.unicomlearning.com

I Love Se IDE

X-Path Rocks

Where’re The Page Objects?

Page-Object Littered With Assertions

Bad Code#my_target_page.rbdef verify_edit_link_presence //BAD: Assertion in Page-Object has_link?("Edit").should be_true end

#my_target_specit "blah blah blah" @my_target_page.do_some_action @my_target_page.verify_edit_link_presenceend

Good Code#my_target_page.rbdef has_edit_link? has_link?("Edit")end

 #my_target_specit "blah blah blah" @my_target_page.do_some_action @my_target_page.has_edit_link?.should be_trueend

I love to sleep

Scenario To Code: Good Versus BadAs a userI should be able to add notes to the tableso that the information is recorded for future reference.

def add_and_save_notes notes fill_in("my_target_text_box", :with => notes) click_button "Save" # This makes an AJAX request and adds new row to the table upon successfully saving sleep(3) #<-- This is BAD code.end

def add_and_save_notes notes ... wait_until { has_text?(notes) } #<-- This is GOOD practice that enables test stability and hence faith in test resultsend

Asserting message for exactness • #my_target_spec.rb describe "save notes" do it "should add notes as new row to table upon successful save" do notes = "sample notes" expected_update_message = "Your note is added successfully!" @my_target_page. add_and_save_notes notes @my_target_page.update_message.should == expected_update_message endend

Why measure exactness???

Duplication makes life easy

Long live dead code!!!

Rescue Strategies

Didn’t we discuss about it all the way?...Do you want to know anything more?

References Resources

• Agile Testing by Lisa Crispin and Janet Gregory

• http://patrickwilsonwelsh.com/• http://kartzontech.blogspot.in/• http://blogs.agilefaqs.com/2011/02/01/

inverting-the-testing-pyramid/• Everyday scripting with Ruby for Teams,

Testers and You.

Karthik SirasanagandlaAgile | Lean Coach

Images Sources:http://www.geograph.org.uk/photo/122440http://www.flickr.com/photos/philipbitnar/3194364095/http://www.flickr.com/photos/un_photo/3331240051/in/photostream/http://www.synnovatia.com/business-coaching-blog/bid/132417/Getting-Past-Your-Fears-and-Growing-a-Successful-Businesshttp://www.global-integration.com/cartoons/silos/http://www.kent.ac.uk/secl/philosophy/jw/reasoning/club/http://www.freefoto.com/preview/904-22-3505/White-clouds-and-blue-skyhttp://www.flickr.com/photos/nagesh_kamath/4714936714/http://blogs.agilefaqs.com/2011/02/01/inverting-the-testing-pyramid/http://www.flickr.com/photos/w9ned/3958782404/http://commons.wikimedia.org/wiki/File:Selenium_IDE.pnghttp://commons.wikimedia.org/wiki/File:XPath_example.svghttp://www.flickr.com/photos/betobaibich/266557188/http://commons.wikimedia.org/wiki/File:Littering_in_Stockholm.jpghttp://commons.wikimedia.org/wiki/File:Gray_paper_bag_with_sad_smiley_over_head.jpghttp://www.flickr.com/photos/byronpeebles/3337412761/in/photostream/http://www.fotopedia.com/items/flickr-24930799http://www.flickr.com/photos/asterix611/5120445522/in/photostream/http://philby.deviantart.com/art/Threatening-Behaviour-lines-72724012http://martinfowler.com/bliki/TestPyramid.html

@kartzontech

top related