software engineering six easy pieces
play

Software Engineering Six easy pieces Bertrand Meyer LASER, - PowerPoint PPT Presentation

Software Engineering Six easy pieces Bertrand Meyer LASER, Biodola, September 2006 Software Engineering 3 Contracts and tests The cluster model Dealing with events Dealing with Void Open-sourcing EiffelStudio Towards an


  1. Software Engineering

  2. Six easy pieces Bertrand Meyer LASER, Biodola, September 2006 Software Engineering

  3. 3  Contracts and tests  The cluster model  Dealing with events  Dealing with Void  Open-sourcing EiffelStudio  Towards an O-O process Chair of Software Engineering

  4. Goals and techniques Correctness Deferred Objects Robustness classes Classes Security Information Exceptions hiding Extendibility Genericity Agents Inheritance Reusability (consumer, Once producer) Renaming routines GC “Maintainability” Multiple Portability inheritance Scalability Polymorphism Constrained genericity Dynamic binding 4 Software Engineering

  5. Design by Contract Every software element is intended to satisfy a certain goal, for the benefit of other software elements (and ultimately of human users). This goal is the element’s contract. The contract of any software element should be  Explicit  Part of the software element itself 5 Software Engineering

  6. Components Component = Contract + Implementation + Proof obligation 6 Software Engineering

  7. Design by Contract: the underlying view Software construction consists of building systems as structured collections of cooperating software elements — suppliers and clients — cooperating on the basis of clear definitions of obligations and benefits These definitions are the contracts 7 Software Engineering

  8. The three questions  What does it expect?  What does it promise?  What does it maintain? 8 Software Engineering

  9. What we do with contracts today Write better software (since we know what we are doing) Do serious analysis  Do serious design  Do serious reuse  Do serious implementation  Avoid bugs  Document software automatically Help project managers do their job (with run-time monitoring) Perform systematic testing Guide the debugging process 9 Software Engineering

  10. A class with contracts class ACCOUNT create make feature { NONE } -- Initialization make ( initial_amount : INTEGER ) -- Set up account with initial_amount . require large_enough: initial_amount >= Minimum_balance do balance := initial_amount ensure balance_set: balance = initial_amount end 10 Software Engineering

  11. A class with contracts feature -- Access balance : INTEGER -- Balance Minimum_balance : INTEGER = 1000 -- Minimum balance feature { NONE } -- Implementation of deposit and withdrawal add ( sum : INTEGER ) -- Add sum to the balance (secret procedure). do balance := balance + sum ensure increased: balance = old balance + sum end 11 Software Engineering

  12. A class with contracts feature -- Deposit and withdrawal operations deposit ( sum : INTEGER ) -- Deposit sum into the account. require not_too_small: sum >= 0 do add ( sum ) ensure increased: balance = old balance + sum end 12 Software Engineering

  13. A class with contracts withdraw ( sum : INTEGER ) -- Withdraw sum from the account. require not_too_small: sum >= 0 not_too_big: sum <= balance – Minimum_balance do add (– sum ) -- i.e. balance := balance – sum ensure decreased: balance = old balance - sum end 13 Software Engineering

  14. A class with contracts (end) may_withdraw ( sum : INTEGER ): BOOLEAN -- Is it permitted to withdraw sum from the -- account? do Result := ( balance - sum >= Minimum_balance ) end invariant not_under_minimum: balance >= Minimum_balance end 14 Software Engineering

  15. The correctness of a class create a . make (…) S 1 a . f (…) For every creation procedure cp : S 2 {pre cp } do cp {post cp and INV} a . g (…) S 3 For every exported routine r : a . f (…) S {INV and pre r } do r {post r and INV} 4 15 Software Engineering

  16. Contracts for analysis, specification deferred class VAT inherit TANK feature in_valve , out_valve : VALVE fill is -- Fill the vat. require in_valve . open out_valve . closed deferred ensure in_valve . closed out_valve . closed is_full end empty , is_full , is_empty , gauge , maximum , ... [Other features] ... invariant is_full = ( gauge >= 0.97 ∗ maximum ) and ( gauge <= 1.03 ∗ maximum ) end 16 Software Engineering

  17. Contracts and inheritance r is A C require a1 : A α … ensure a1 . r (…) β Correct call in C: if a1 . α then r ++ D B a1 . r (...) r is -- Here a1 . β holds require γ end ensure ++ Redefinition Client δ Inheritance 17 Software Engineering

  18. Contracts as a management tool High-level view of modules for the manager:  Follow what’s going on without reading the code  Enforce strict rules of cooperation between units of the system  Control outsourcing 18 Software Engineering

  19. Contracts for testing and debugging Contracts provide the right basis:  Testing is there to find bugs  A bug is a discrepancy between intent and reality  Contracts describe intent A contract violation always signals a bug:  Precondition violation: bug in client  Postcondition violation: bug in routine In EiffelStudio: select compilation option for run-time contract monitoring at level of class, cluster or system. 19 Software Engineering

  20. Contract monitoring “Development-driven test” A revolutionary form of quality assurance 20 Software Engineering

  21. Moving the cursor forward before after “Biodola" 1 count Cursor forth index 21 Software Engineering

  22. Command “forth ″ 22 Software Engineering

  23. Where the cursor may go before after item 0 1 count count+1 Valid cursor positions 23 Software Engineering

  24. From the invariant of class LIST Valid cursor positions 24 Software Engineering

  25. Anecdotal & non-anecdotal evidence HP 1: invariant r = 2 ^ i HP 2: Eiffel messes up our great system! Axa Rosenberg: postcondition fails in deep_clone of TWO_WAY_LIST ! Patrice Chalin study (Concordia): Eiffel programmers do use contracts day in, day out. 25 Software Engineering

  26. AutoTest (Ilinca Ciupa, Andreas Leitner) Integrated workbench for testing of components Input: a set of classes Push-button testing Open-source; available for download from http://se.ethz.ch (source and binary) 26 Software Engineering

  27. Test automation: what does this mean?  Test execution  Robust execution  Regression testing  Test case generation ( test suites )  Test result verification ( test oracles )  Test scheduling  Test case minimization 27 Software Engineering

  28. AutoTest architecture 28 Software Engineering

  29. Basic AutoTest scheme  Test a set of classes completely automatically  Generates instances and call their features with automatically selected arguments  No manual test oracles: rely on contracts  Precondition violations: skip  Postcondition/invariant violation: bingo!  Manual tests:  Can be added explicitly  Any test (manual or automatic) that fails becomes part of the test suite 29 Software Engineering

  30. Generation strategies  For each type, create target pool:  Create instances using creation procedures (constructors)  This requires proper ordering of classes  For each routine: create argument pool  Invoke selected routines 30 Software Engineering

  31. AutoTest: strategies  Argument and target generation: Adaptive Random Testing (see next)  Precondition satisfaction: Planning, model checking  Inheritance (“fragile base class” issue)  Slicing  If bug found: test minimization Software Engineering

  32. Automatic Random Testing (Chen et al.) Existing techniques: integers etc. We generalized this to objects: “object distance” 32 Software Engineering

  33. Object distance (Ilinca Ciupa) = p ↔ q Δ combination ( type_distance ( p . type , q . type ), field_distance ( p , q ), recursive_distance ( {[ p . r ↔ q . r ] | r ∈ Reference_attributes } ) 33 Software Engineering

  34. When AutoTest finds bugs…  All test execution is logged  Results generated only after testing  Bug found:  Minimize witness  Create manual test case 34 Software Engineering

  35. AutoTest demo 35 Software Engineering

  36. Experimental results (random testing) Library Failed tests/total Buggy routines/ total EiffelBase 1513/39615 (3%) 127 / 1984 (6%) Structures 1143 / 21242 (5%) 88 / 1400 (6%) Gobo math 16/1539 (1%) 9 / 144 (6%) DoctorC 1283 / 8972 (14%) 15 / 33 (45%) 36 Software Engineering

  37. AutoTest result analysis (Raluca Borga, U. of Cluj- Napoca,diploma work at ETH) Fault classification (manual):  Specification: discrepancy between contract and intention (as expressed e.g. by header comment)  Implementation: contract looks OK, but routine body fails to meet it  Inheritance  Don’t know Of those understood: about 50% implementation, 50% specification  Results polluted by “void” issue (Will no longer exist thanks to attached types, see ECOOP 2005 paper) 37 Software Engineering

  38. Hermitage elevator 38 Software Engineering

  39. AutoTest developments  Scaling up (memory, time)  Complete integration with EiffelStudio environment  Background, unobtrusive, continuous testing  Automatic regression testing  Distributed cooperative testing (“Testi@home”) 39 Software Engineering

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend