Скачать презентацию A little Software Engineering Agile Software Development Practices Скачать презентацию A little Software Engineering Agile Software Development Practices

bc60a50f30ba0a82b6c36bf6ce92f0dc.ppt

  • Количество слайдов: 33

A little Software Engineering: Agile Software Development, Practices through Values C Sc 335 Rick A little Software Engineering: Agile Software Development, Practices through Values C Sc 335 Rick Mercer

Goal and Outline Main Goal: – Suggest practices, values, and some process for completing Goal and Outline Main Goal: – Suggest practices, values, and some process for completing a final project on time that is better than any one person could do it in in four times the time Outline – Distinguish Waterfall (plan driven) from Agile – 11 Practices of quality software development 2

Waterfall Model Waterfall was described by 1970 Understood as – finish each phase – Waterfall Model Waterfall was described by 1970 Understood as – finish each phase – don’t proceed till done W. W. Royce criticized this – proposed an iterative approach 3

Became Popular Management (usually software ignorant) like phases – to easily set deadlines Customers Became Popular Management (usually software ignorant) like phases – to easily set deadlines Customers provide all requirements Analysts translate requirements into specification Coders implement the specification Reviews ensure the specification is met Testing is performed by testers (not the devs) (QA) 4 Maintenance means modifying as little as

A Spiral Approach Dr Barry Boehm proposed a spiral approach 5 A Spiral Approach Dr Barry Boehm proposed a spiral approach 5

To waterfall or not It became popular – This process is still is used To waterfall or not It became popular – This process is still is used a lot Craig Larman's book [1] provides proof that waterfall is a terrible way to develop software – In his study, 87% of all projects failed – The waterfall process was the "single largest contributing factor failure, being cited in 81% of the projects as the number one problem. " [1] Agile and Iterative Development: a Manager's Guide, Addison-Wesley Professional, 2003 6

Agile Software Development Set of practices to produce high-quality software a disciplined approach to Agile Software Development Set of practices to produce high-quality software a disciplined approach to software development successful because it emphasizes customer involvement and promotes team work not a solution looking for a problem 59% of 2013 survey respondents use Agile, – 83% planned to use agile in the upcoming year 7

The Agile Manifesto: a statement of values Individuals and interactions over Process and tools The Agile Manifesto: a statement of values Individuals and interactions over Process and tools Working software over Comprehensive documentation Customer collaboration over Contract negotiation Responding to change over Source: www. agilemanifesto. org Following a plan

Essence of XP Values – Communication, Simplicity, Feedback, Courage Principles – Provide feedback, assume Essence of XP Values – Communication, Simplicity, Feedback, Courage Principles – Provide feedback, assume simplicity, make incremental changes, embrace change, quality work Practices – Planning game, small releases, simple designs, automated testing, continuous integration, refactoring, pair programming, collective ownership, continuous integration, on-site customer, coding standard 9

Cost of change Waterfall Cost of change Agile time 10 Cost of change Waterfall Cost of change Agile time 10

Cost of the Project Paraphrasing from two companies I've talked to (probably many more) Cost of the Project Paraphrasing from two companies I've talked to (probably many more) When we bid projects, we charge $X for doing it Waterfall and $X/2 for doing it Agile 11

Other Agile Practices: The Planning Game The planning game involves user stories – Short Other Agile Practices: The Planning Game The planning game involves user stories – Short descriptions of desired features – Provide value to customer – Testable (do we have that feature 2 weeks in? ) Clients write stories and prioritize them – In 335, SLs wrote the requirements, you prioritize Developers estimate how long a story takes – If you are so inclined, estimate each requirement 12

Practices: The planning game Business decisions (customer) – Scope: which “stories” should be developed Practices: The planning game Business decisions (customer) – Scope: which “stories” should be developed – Priority of stories (requirements) – Release dates Technical decisions (developers) – Time estimates for features/stories – Elaborate consequences of business decisions – Team organization and process – Scheduling You do the organization and schedule 13

Practices: Estimation Based on similar stories from the past Team effort We get good Practices: Estimation Based on similar stories from the past Team effort We get good at estimation simply by just doing it Ideal Engineering Time (IET) – could be points We have used person hours to estimate, – Agile teams use points Velocity = IET/Calendar Time – Say we can do 20 points each week – Which 20 points should we this week 14

Practices: Small Releases should be as small as possible Should make sense as a Practices: Small Releases should be as small as possible Should make sense as a whole Put system into production ASAP – Fast feedback Deliver valuable features first Short cycle time – Planning 1 -2 months rather than 6 -12 months – Or in our case, ~2/3 week rather than 5 weeks – We have one "release": • The last day of lecture at 3: 00 pm 15

Practices: Simple design The “right” design – Runs all tests – No code duplication, Practices: Simple design The “right” design – Runs all tests – No code duplication, No code duplication – Fewest possible classes – Short methods – Fulfills all current requirements Design for today not the future – But design so the system can change – Design patterns help 16

Practices: Testing Software should be tested, but it is often spotty or overlooked Automatic Practices: Testing Software should be tested, but it is often spotty or overlooked Automatic testing (JUnit, for example) helps us know that a feature works and it will work after refactoring, additional code, and other changes Provides confidence in the program 17

Testing Write tests at the same time as production code – Unit tests developer Testing Write tests at the same time as production code – Unit tests developer – Feature/acceptance tests customer (not in 335) Don't need a test for every method (but why not) Testing can be used to drive development and design of code – But it help to have an overall architecture first (see you UML class diagram, which is subject to change 18

SIM/SQS http: //www. simgroup. com/Consultancy/regression. html Regression Testing – re-testing of a previously tested SIM/SQS http: //www. simgroup. com/Consultancy/regression. html Regression Testing – re-testing of a previously tested program following modification to ensure that faults have not been introduced or uncovered as a result of changes. – Regression tests are designed for repeatability, and are often used when testing a second or later version of the system under test – Regression testing can be carried out on all 19 applications, including e-Commerce and web-

Testing Strong emphasis on regression testing – Unit tests need to execute all the Testing Strong emphasis on regression testing – Unit tests need to execute all the time Unit tests pass 100% Acceptance tests (we haven't seen these) show progress on which user stories are working Other testing frameworks include – SUnit, JMeter, Http. Unit, JProbe, Optimize. It, CPPUnit, Py. Unit, CPPUnit 20

Can't unit test always Won’t have unit tests for – GUIs: There are testing Can't unit test always Won’t have unit tests for – GUIs: There are testing frameworks to simulate and test user interaction, but not this course • Just added to Web. Cat – Network, use visual inspection while running – Views, animation, drawing: visually inspect • this is system verification too – Randomness: Some strategies might have 21 some randomness, which can be hard to

Practices: Refactoring Restructure code without changing the functionality Goal: Keep design simple – Change Practices: Refactoring Restructure code without changing the functionality Goal: Keep design simple – Change bad design when you find it – Remove dead code Examples at Martin Fowler's Web site: http: //www. refactoring. com/ see online catalog 22

Practices: Pair programming Write production code with 2 people on one machine – Person Practices: Pair programming Write production code with 2 people on one machine – Person 1: Implements the method – Person 2: Thinks strategically about potential improvements, test cases, issues Pairs change all the time. Has advantages such as – – No single expert on any part of the system Continuous code reviews, fewer defects Cheaper in the long run, and more fun Can you form a team of 4 and have everyone see all code? 23

Practices: Collective ownership All code can be changed by anybody on the team Everybody Practices: Collective ownership All code can be changed by anybody on the team Everybody is required to improve any portion of bad code s/he sees Everyone has responsibility for the system Individual code ownership tends to create "experts", the "experts" tend to create difficult team situations – Every year in 335. . . 24

Practices: Continuous integration Integration happens after a few hours of development Checkout build with Practices: Continuous integration Integration happens after a few hours of development Checkout build with your changes, Make sure all tests pass (green bar) In case of errors: – Do not put changes into the build – Fix problems Check in the system to the common repository Repeat You could be using CVS, Subversion, 25

Continuous Integration Find problems early Can see if a change breaks the system more Continuous Integration Find problems early Can see if a change breaks the system more quickly -- while you remember the details Add to the build in small increments 26

Practices: Coding standards Coding Standard – Naming conventions and style – Least amount of Practices: Coding standards Coding Standard – Naming conventions and style – Least amount of work possible: Code should exist once and only once Team has to adopt a coding standard – Makes it easier to understand other people’s code – Avoids code changes due to syntactic preferences 27

Coding Standard with Eclipse (a demo) 28 Coding Standard with Eclipse (a demo) 28

Practices: On-site customer Many software projects fail because they do not deliver software that Practices: On-site customer Many software projects fail because they do not deliver software that meets needs Real client should be part of the team – Defines / decides the needs – Answers questions and resolves issues – Prioritizes features – Helps prevents devs from making decisions like: "They probably wanted us to. . ” – We will simulate this at the end of lecture 29

Values: Communication – Clients centric (write Values: Communication – Clients centric (write "Stories") – Pair programming – Task estimation – Iteration planning • What to do in the next cycle – Design sessions 30

Values: Simplicity – Choose the simplest thing that will work – Choose the simplest Values: Simplicity – Choose the simplest thing that will work – Choose the simplest design, technology, algorithm, technique 31

Values: Feedback very important – Small Iterations – Frequent deliveries – Pair programming – Values: Feedback very important – Small Iterations – Frequent deliveries – Pair programming – Constant code review – Continuous integration (add often to the build—sync your code with the system) • Check out, run all test including your new tests and code, if all pass, check in the updated system – automated unit tests (JUnit, for example) 32

Values: Feedback Compiler feedback: seconds Pair programming feedback: half minutes Unit test feedback: few Values: Feedback Compiler feedback: seconds Pair programming feedback: half minutes Unit test feedback: few minutes Acceptance testing: half hours – Customers write these, we are not doing this in 335 Customer feedback: daily (or several times/week in our case) Iteration feedback: weekly – Project manager meetings weekly 33