unit t esting framework for t cl unit t esting framework
play

Unit T esting Framework for T cl Unit T esting Framework for T - PowerPoint PPT Presentation

Unit T esting Framework for T cl Unit T esting Framework for T cl What is Unit T esting? Why Unit T esting? Why do we need/want a framework? The TIP? Where to from here? 2017.10.18 Unit T esting Framework for T cl


  1. Unit T esting Framework for T cl

  2. Unit T esting Framework for T cl ● What is Unit T esting? ● Why Unit T esting? ● Why do we need/want a framework? ● The TIP? ● Where to from here? 2017.10.18 Unit T esting Framework for T cl 2

  3. What is Unit T esting? ● Also know as “White Box T esting” – T est the smallest units of the software. ● Procs and Methods – T est all paths through the unit. – T est in isolation: ● Assumes no known set of data in a database. ● Known state. ● Controlled reaction. 2017.10.18 Unit T esting Framework for T cl 3

  4. Why Unit T est? 10% Manual Exploratory T esting Coverage A System T est u t o Integration T est m a t Component T est e d Unit T est 100% 2017.10.18 Unit T esting Framework for T cl 4

  5. Why Unit T est ● Customer Satisfaction – Customers do not like bugs! ● Will pay more for a product with less bugs. ● Costs money when functions are not available. ● Could lead to audits and/or government fjnes to the customer. ● T otal Lifecycle Cost – Bugs cost money ● T o fjnd and repair – and have negative impact on sales and/or the cost of sales. ● The later bugs are found, the more costly to fjnd and fjx. ● Cuts into funds available for ... 2017.10.18 Unit T esting Framework for T cl 5

  6. The TIP - #452 ● This TIP proposes an enhancement to the tcltest package to add support for easy creation of test stubs, mocks and seams. – The tcltest package allows for automated testing of T cl code. However, doing proper automated unit testing requires that the unit under test (i.e., the method or procedure) not invoke the actual implementation of other units, but rather should invoke stub or mock units that are under the control of the test being performed as to the results they return and any exceptions they raise. – This TIP adds support for building these mechanisms, making it signifjcantly easier to create isolated unit tests of T cl code. 2017.10.18 Unit T esting Framework for T cl 6

  7. The TIP - #452 ● The following commands are added: – ::tcltest::T estSetup - Defjnes which procedures/commands are stubbed out and how they should behave for each invocation. ● This should only be called once per test. – ::tcltest::SaveVars - Saves the values of variables to be restored later. ● This should only be called once per test. – ::tcltest::AddStub - Adds a procedures/commands to the list that are stubbed out. – ::tcltest::AddVars - Add a variable to the list of variables to be restored later. 2017.10.18 Unit T esting Framework for T cl 7

  8. The TIP - #452 ● When defjning a stub it takes – procName procData ● procData consit of duples: – invocationNumber behaviorDict ● The invocationNumber is a positive number, defjning the behaviour of a given invocation, or an asterisk ("*") defjning the behavior for an invocation 2017.10.18 Unit T esting Framework for T cl 8

  9. The TIP - #452 ● behaviorDict may have any of the following key value pairs: ● use - this specifjes what routine is to handle this invocation. – Defaults to "standard". It must be one of the following: ● standard - the standard stub processing is to be done. ● actual - use the actual implementation. ● prefjx - use the prefjx specifjed as a value. ● returns - the value of which is returned from the stub, defaults to {}. ● code - the value given to the -code option on return, defaults to "ok". ● errorcode - the value given to the -errorcode option if the code is not "ok". ● set - a list of triplets specifjng variables to be modifjed and their values. – This is only done for a code of "ok". The triplets are as follows: varName varT ype value ● Where: ● varName - the name of the variable ● varT ype - an "S" for a scalar variable and an "A" for an array ● value - For a scalar, the value. For an array, a list suitable to be used by [array set] 2017.10.18 Unit T esting Framework for T cl 9

  10. The TIP - #452 ● The following commands are added: – ::tcltest::CallCount - Returns a dictionary sorted list of the stubbed out procedures and how many times they were called. – ::tcltest::T estCleanup - Restores saved variables and stubbed out procedures. – ::tcltest::SortedArrayData - Return the values of an array as a list of key-value pairs sorted by the keys. 2017.10.18 Unit T esting Framework for T cl 10

  11. The TIP - #452 ● The following commands are added: – ::tcltest::CallProc - Call the real implementation of a stubbed out procedure. – ::tcltest::Seam - T est seam defjnition and injection (aka enabling). ● This command is available without requiring the tcltest package – but only defjne . – Actions: ● defjne seamName body ● activiate seamName body ● deactivate seamName 2017.10.18 Unit T esting Framework for T cl 11

  12. The TIP - #452 ● The following test are added: – T est of http package utilizing stubs. 2017.10.18 Unit T esting Framework for T cl 12

  13. Where to from here? ● Is this the correct direction? ● What should we do for T clOO? 2017.10.18 Unit T esting Framework for T cl 13

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