版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
第5章集成測試5.1深入研究SATM系統(tǒng)5.2集成測試的主要方法5.2.1基于功能分解的集成5.2.2基于調(diào)用圖的集成5.2.3基于路徑的集成5.3案例研究1西北工業(yè)大學(xué)軟件與微電子學(xué)院SATM系統(tǒng)的功能分解1A10BDE111213141523456789C1617F22181920212324252627Table1:SATMUnitsandAbbreviatedNamesUnitLevelUnitName11SATMSystemA1.1DeviceSense&ControlD1.1.1DoorSense&Control21.1.1.1GetDoorStatus31.1.1.2ControlDoor41.1.1.3DispenseCashE1.1.2SlotSense&Control51.1.2.1WatchCardSlot
61.1.2.2GetDepositSlotStatus71.1.2.3ControlCardRoller81.1.2.3ControlEnvelopeRoller91.1.2.5ReadCardStrip101.2CentralBankComm.111.2.1GetPINforPAN121.2.2GetAccountStatus131.2.3PostDailyTransactions
UnitLevelUnitNamB1.3TerminalSense&Control141.3.1ScreenDriver151.3.2KeySensorC1.4ManageSession161.4.1ValidateCard171.4.2ValidatePIN181.4.2.1
GetPIN
F1.4.3CloseSession191.4.3.1NewTransactionRequest201.4.3.2PrintReceipt211.4.3.3PostTransactionLocal221.4.4ManageTransaction231.4.4.1GetTransactionType241.4.4.2
GetAccountType251.4.4.3
ReportBalance261.4.4.4
ProcessDeposit271.4.4.5
ProcessWithdrawal2西北工業(yè)大學(xué)軟件與微電子學(xué)院5.2.1基于功能性分解的集成兩種表示方式樹和文字形式集成的4種模塊順序從樹頂開始向下:自頂向下(Top-down)從樹底開始向上:自底向上(Bottom-up)三明治方法:Sandwich大爆炸方法:BigBang3西北工業(yè)大學(xué)軟件與微電子學(xué)院大爆炸集成測試UnitTestHUnitTestDUnitTestCUnitTestBUnitTestASystem-WideTest………….Allcomponentsareassembledandtestedatonce.4西北工業(yè)大學(xué)軟件與微電子學(xué)院自頂向下集成TopSubtree
(Sessions1-4)SecondLevelSubtree
(Sessions12-15)BotomLevelSubtree
(Sessions38-42)5西北工業(yè)大學(xué)軟件與微電子學(xué)院自頂向下集成(續(xù))6西北工業(yè)大學(xué)軟件與微電子學(xué)院AdvantagesandDisadvantagesofTop-DownIntegrationTestingTestcasescanbedefinedintermsofthefunctionalityofthesystem(functionalrequirements).StructuraltechniquescanalsobeusedfortheunitsinthetoplevelsWritingstubscanbedifficultespeciallywhenparameterpassingiscomplex.StubsmustallowallpossibleconditionstobetestedPossiblyaverylargenumberofstubsmayberequired,especiallyifthelowestlevelofthesystemcontainsmanyfunctionalunitsOnesolutiontoavoidtoomanystubs:Modifiedtop-downtestingstrategy(Bruege)TesteachlayerofthesystemdecompositionindividuallybeforemergingthelayersDisadvantageofmodifiedtop-downtesting:Both,stubsanddriversareneeded7西北工業(yè)大學(xué)軟件與微電子學(xué)院自底向上集成TopSubtree(Sessions29-32)SecondLevelSubtree(Sessions25-28)BottomLevelSubtree(Sessions13-17)8西北工業(yè)大學(xué)軟件與微電子學(xué)院自底向上集成(續(xù))9西北工業(yè)大學(xué)軟件與微電子學(xué)院AdvantagesandDisadvantagesofBottom-UpIntegrationTestingNotoptimalstrategyforfunctionallydecomposedsystems:Teststhemostimportantsubsystem(UI)lastUsefulforintegratingthefollowingsystemsObject-orientedsystemsReal-timesystemsSystemswithstrictperformancerequirements10西北工業(yè)大學(xué)軟件與微電子學(xué)院三明治集成11西北工業(yè)大學(xué)軟件與微電子學(xué)院12西北工業(yè)大學(xué)軟件與微電子學(xué)院AdvantagesandDisadvantagesofSandwichIntegrationTestingTopandBottomLayerTestscanbedoneinparallelDoesnottesttheindividualsubsystemsthoroughlybeforeintegrationSolution:Modifiedsandwichtestingstrategy(Bruege)13西北工業(yè)大學(xué)軟件與微電子學(xué)院StepsinIntegration-Testing
.1.Basedontheintegrationstrategy,selectacomponenttobetested.Unittestalltheclassesinthecomponent.2.Putselectedcomponenttogether;doanypreliminaryfix-upnecessarytomaketheintegrationtestoperational(drivers,stubs)3.Dofunctionaltesting:Definetestcasesthatexerciseallusescaseswiththeselectedcomponent4.Dostructuraltesting:Definetestcasesthatexercisetheselectedcomponent5.Executeperformancetests6.Keeprecordsofthetestcasesandtestingactivities.7.Repeatsteps1to7untilthefullsystemistested.Theprimarygoalofintegrationtestingistoidentifyerrorsinthe(current)componentconfiguration.14西北工業(yè)大學(xué)軟件與微電子學(xué)院WhichIntegrationStrategyshouldyouuse?FactorstoconsiderAmountoftestharness(stubs&drivers)LocationofcriticalpartsinthesystemAvailabilityofhardwareAvailabilityofcomponentsSchedulingconcernsBottomupapproachgoodforobjectorienteddesignmethodologiesTestdriverinterfacesmustmatchcomponentinterfaces......Top-levelcomponentsareusuallyimportantandcannotbeneglecteduptotheendoftestingDetectionofdesignerrorspostponeduntilendoftestingTopdownapproachTestcasescanbedefinedintermsoffunctionsexaminedNeedtomaintaincorrectnessofteststubsWritingstubscanbedifficultRef:“Object-OrientedSoftwareEngineering–UsingUML,PatternsandJava”,BerndBruegge,AllenH.Dutoit15西北工業(yè)大學(xué)軟件與微電子學(xué)院優(yōu)缺點優(yōu)點直覺上清晰容易根據(jù)分解樹跟蹤缺點人工開發(fā)、樁或驅(qū)動器的開發(fā)工作量是這些方法的缺點、還有重新測試所需的工作量問題給定分解樹所需集成測試會話數(shù)的計算公式(一個測試過程是為一個特定配置的實際代碼和樁所做的一組測試)會話=節(jié)點-頁+邊SATM系統(tǒng)有42個集成測試過程-》42個單獨(dú)的集成測試用例集合對于自頂向下集成,需開發(fā)(節(jié)點-1個)樁;對于自底向上集成,需開發(fā)(節(jié)點-葉個)驅(qū)動器。對于SATM系統(tǒng),為32個樁和10個驅(qū)動器16西北工業(yè)大學(xué)軟件與微電子學(xué)院基于調(diào)用圖的集成成對集成思想是免除樁/驅(qū)動器開發(fā)工作相鄰集成可大大降低集成測試會話數(shù)量,且避免了樁和驅(qū)動器的開發(fā)計算公式內(nèi)部節(jié)點=節(jié)點-(源節(jié)點+匯節(jié)點)鄰居=內(nèi)部節(jié)點+源節(jié)點鄰居=節(jié)點–匯節(jié)點17西北工業(yè)大學(xué)軟件與微電子學(xué)院18西北工業(yè)大學(xué)軟件與微電子學(xué)院19西北工業(yè)大學(xué)軟件與微電子學(xué)院20西北工業(yè)大學(xué)軟件與微電子學(xué)院基于路徑的集成21西北工業(yè)大學(xué)軟件與微電子學(xué)院22西北工業(yè)大學(xué)軟件與微電子學(xué)院23西北工業(yè)大學(xué)軟件與微電子學(xué)院Inaddition,thefollowingaremoduleexecutionpaths:MEP(A,1)=<1,2,3,6> MEP(B,1)=<1,2>MEP(A,2)=<1,2,4> MEP(B,2)=<3,4>MEP(A,3)=<5,6> MEP(C,1)=<1,2,4,5>MEP(C,2)=<1,3,4,5>
ExecutionPathsExample
24西北工業(yè)大學(xué)軟件與微電子學(xué)院Givenasetofunits,theirMM-Pathgraphisthedirectedgraphinwhichnodesaremoduleexecutionpathsand,edgescorrespondtomessagesandreturnsfromoneunittoanotherThedefinitioniswithrespecttoasetofunits.Itdirectlysupportscompositionofunitsandcompositionbasedintegrationtesting.Itispossibletocomposedowntolevelofindividualmoduleexecutionpathsbutitwouldbemoredetailedthannecessary.
MM-PathGraph
25西北工業(yè)大學(xué)軟件與微電子學(xué)院MEP(A,2)MEP(B,1)MEP(C,1)MEP(B,2)MEP(A,3)MEP(A,1)MEP(C,2)Figure2
TheFigure2aboveillustratestheMM-PathgraphfortheexampleinFigure1.Thesolidarrowsindicatemessagesandthecorrespondingreturnsareindicatedbydottedarrows.
MM-PathGraphExample
Ref:“SoftwareTestingACraftsman'sApproach”2ndedition,PaulC.Jorgensen26西北工業(yè)大學(xué)軟件與微電子學(xué)院MM-Pathsimplementafunctionthattranscendsunitboundaries,thuswehavethefollowingrelationship:Considerthe“intersection”ofanMM-Pathwithaunit.Themoduleexecutionpathsinthisintersectionareananalogofaslicewithrespecttothe(MM-Path)function.Hencethemoduleexecutionpathsinsuchanintersectionaretherestrictionofthefunctiontotheunitinwhichtheyoccur.
MM-PathAnalogy
27西北工業(yè)大學(xué)軟件與微電子學(xué)院TherearethreeobservablebehavioralcriteriathatputendpointsonMM-Paths:eventquiescence:occurswhenasystemisnearlyidle,waitingforaportinputeventtotriggerfurtherprocessing.Thisisasystemlevelpropertywithananalogattheintegrationlevel:messagequiescence.messagequiescence:occurswhenaunit
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 鄉(xiāng)村公路可行性研究報告
- 2024年公司流程優(yōu)化與管理顧問協(xié)議
- 2024年專屬家政服務(wù)聘用協(xié)議
- 道德與法治八上8.1《國家好大家才會好》教學(xué)設(shè)計
- 2024香港商業(yè)貸款協(xié)議格式
- 2023-2024學(xué)年浙江省溫州東甌中學(xué)高三下學(xué)期第一次階段檢測試題數(shù)學(xué)試題
- 2024專業(yè)個人汽車租賃協(xié)議指南
- DB11∕T 1704-2019 中小學(xué)生體育與健康課運(yùn)動負(fù)荷監(jiān)測與評價
- 2024年定制航拍服務(wù)協(xié)議范本下載
- 2024年全球貿(mào)易條款專業(yè)翻譯協(xié)議
- 2024-2025學(xué)年部編版思想政治高一上學(xué)期試卷及答案解析
- JGJ196-2010建筑施工塔式起重機(jī)安裝、使用、拆卸安全技術(shù)規(guī)程
- 孫中山誕辰紀(jì)念日主題班會主題班會
- 壓力容器使用單位每周壓力容器安全排查治理報告
- 2024-2030年中國睡眠磨牙癥治療行業(yè)市場發(fā)展趨勢與前景展望戰(zhàn)略分析報告
- 電氣控制與PLC課程設(shè)計教學(xué)大綱
- 2024年山東省公務(wù)員錄用考試《行測》試題(網(wǎng)友回憶版)(題目及答案解析)
- 商會拓展工作計劃
- 2024年水電暖勞務(wù)分包合同模板
- 浴血百年路啟航新征程含內(nèi)容
- 甲狀腺危象的觀察及護(hù)理匯報
評論
0/150
提交評論