test-cases.js 166 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119
  1. /**
  2. * 心知益家小程序 - 自动化测试用例脚本
  3. *
  4. * 测试策略:
  5. * 1. Web端(管理后台):浏览器自动化测试,管理员和成长规划师登录,测试过程截图
  6. * 2. 小程序端:API接口测试,构造请求数据,验证响应,不进行UI点击测试
  7. *
  8. * 最后更新时间:2026-04-14
  9. */
  10. const TEST_CONFIG = {
  11. // 测试环境配置
  12. baseUrl: 'http://192.168.16.18:8080', // 后端API地址
  13. webAdminUrl: 'http://192.168.16.18:8082', // Web管理端地址
  14. // 测试账号
  15. adminAccount: { phone: '13800138000', password: 'admin123' },
  16. teacherAccount: { phone: '13800138003', password: 'teacher123' },
  17. // API测试账号(小程序端)
  18. apiTestAccounts: {
  19. parent: { id: 1, phone: '13800138001', token: '' },
  20. child: { id: 2, phone: '13800138002', token: '' }
  21. },
  22. // 测试超时时间(毫秒)
  23. timeout: 30000,
  24. // 截图保存路径
  25. screenshotPath: './screenshots'
  26. };
  27. // ============================================================================
  28. // 模块1: API接口测试基类(小程序端)
  29. // ============================================================================
  30. /**
  31. * API测试基类 - 用于小程序端接口测试
  32. * 只测试API接口,记录构造的请求数据和响应结果
  33. */
  34. class ApiTestCase {
  35. constructor(id, description, priority, endpoint, method = 'GET') {
  36. this.id = id;
  37. this.description = description;
  38. this.priority = priority; // P0, P1, P2
  39. this.endpoint = endpoint;
  40. this.method = method;
  41. this.status = 'pending'; // pending, running, passed, failed
  42. this.error = null;
  43. this.requestData = null;
  44. this.responseData = null;
  45. this.screenshots = [];
  46. }
  47. /**
  48. * 发送API请求
  49. */
  50. async sendRequest(data = {}, headers = {}) {
  51. const url = `${TEST_CONFIG.baseUrl}${this.endpoint}`;
  52. const startTime = Date.now();
  53. this.requestData = {
  54. url: url,
  55. method: this.method,
  56. headers: {
  57. 'Content-Type': 'application/json',
  58. ...headers
  59. },
  60. body: data,
  61. timestamp: new Date().toISOString()
  62. };
  63. console.log(`[${this.id}] 发送请求: ${this.method} ${url}`);
  64. console.log(`[${this.id}] 请求数据:`, JSON.stringify(data, null, 2));
  65. try {
  66. // 这里需要实际的HTTP客户端,模拟请求
  67. // 在实际运行时,可以使用 fetch 或 axios
  68. const response = await this.mockFetch(url, {
  69. method: this.method,
  70. headers: this.requestData.headers,
  71. body: this.method !== 'GET' ? JSON.stringify(data) : undefined
  72. });
  73. this.responseData = {
  74. status: response.status,
  75. statusText: response.statusText,
  76. data: response.data,
  77. duration: Date.now() - startTime,
  78. timestamp: new Date().toISOString()
  79. };
  80. console.log(`[${this.id}] 响应状态: ${response.status}`);
  81. console.log(`[${this.id}] 响应数据:`, JSON.stringify(response.data, null, 2));
  82. return response;
  83. } catch (error) {
  84. this.responseData = {
  85. error: error.message,
  86. timestamp: new Date().toISOString()
  87. };
  88. throw error;
  89. }
  90. }
  91. /**
  92. * 模拟fetch请求(实际运行时替换为真实HTTP客户端)
  93. */
  94. async mockFetch(url, options) {
  95. // 模拟响应,实际测试时需要连接真实后端
  96. return {
  97. status: 200,
  98. statusText: 'OK',
  99. data: { code: 200, message: 'success', data: {} }
  100. };
  101. }
  102. /**
  103. * 记录测试结果
  104. */
  105. logResult(passed, error = null) {
  106. this.status = passed ? 'passed' : 'failed';
  107. this.error = error;
  108. console.log(`[${this.id}] 测试${passed ? '通过 ✅' : '失败 ❌'}: ${this.description}`);
  109. if (error) {
  110. console.error(`[${this.id}] 错误信息:`, error);
  111. }
  112. }
  113. /**
  114. * 执行测试(子类实现)
  115. */
  116. async run() {
  117. throw new Error('子类必须实现 run 方法');
  118. }
  119. }
  120. // ============================================================================
  121. // 模块2: Web浏览器测试基类(管理后台)
  122. // ============================================================================
  123. /**
  124. * Web浏览器测试基类 - 用于管理后台UI测试
  125. * 使用Chrome DevTools进行浏览器自动化,测试过程截图
  126. */
  127. // ============================================================================
  128. // 模块0: Playwright MCP 工具封装
  129. // ============================================================================
  130. // 检测是否在 Agent 上下文(skill_mcp 可用)
  131. const isAgentContext = typeof skill_mcp === 'function';
  132. /**
  133. * Puppeteer MCP 实现 - 用于 Node.js 独立运行
  134. * 使用 puppeteer 包直接控制浏览器
  135. */
  136. let puppeteerBrowser = null;
  137. let puppeteerPage = null;
  138. class PuppeteerMCP {
  139. constructor() {
  140. this.page = null;
  141. this.browser = null;
  142. }
  143. async _ensureBrowser() {
  144. try {
  145. let needsNewBrowser = !this.browser;
  146. if (this.browser && this.page) {
  147. try {
  148. const isClosed = this.page.isClosed();
  149. if (isClosed) needsNewBrowser = true;
  150. } catch (e) {
  151. needsNewBrowser = true;
  152. }
  153. }
  154. if (needsNewBrowser) {
  155. if (this.browser) {
  156. try { await this.browser.close(); } catch (e) {}
  157. }
  158. const puppeteer = require('puppeteer');
  159. this.browser = await puppeteer.launch({
  160. headless: 'new',
  161. executablePath: '/usr/bin/chromium-browser',
  162. args: ['--no-sandbox', '--disable-setuid-sandbox', '--disable-gpu', '--disable-software-rasterizer', '--disable-dev-shm-usage']
  163. });
  164. this.browser.on('disconnected', () => {
  165. this.browser = null;
  166. this.page = null;
  167. });
  168. const pages = await this.browser.pages();
  169. this.page = pages.length > 0 ? pages[0] : await this.browser.newPage();
  170. await this.page.setViewport({ width: 1920, height: 1080 });
  171. }
  172. return { browser: this.browser, page: this.page };
  173. } catch (e) {
  174. this.browser = null;
  175. this.page = null;
  176. throw e;
  177. }
  178. }
  179. async navigate(url) {
  180. let attempts = 0;
  181. while (attempts < 2) {
  182. try {
  183. const { browser, page } = await this._ensureBrowser();
  184. await page.goto(url, { waitUntil: 'networkidle2', timeout: 45000 });
  185. await page.waitForTimeout(3000);
  186. return { url: page.url() };
  187. } catch (e) {
  188. if (e.message.includes('Target closed') || e.message.includes('Session closed') || e.message.includes('Protocol error')) {
  189. this.browser = null;
  190. this.page = null;
  191. attempts++;
  192. continue;
  193. }
  194. throw e;
  195. }
  196. }
  197. }
  198. async snapshot() {
  199. let attempts = 0;
  200. while (attempts < 2) {
  201. try {
  202. const { page } = await this._ensureBrowser();
  203. const elements = await page.evaluate(() => {
  204. const items = [];
  205. const all = document.querySelectorAll('*');
  206. all.forEach((el, idx) => {
  207. if (el.children.length === 0 || el.tagName === 'BUTTON' || el.tagName === 'INPUT' || el.tagName === 'A') {
  208. const text = el.innerText || el.textContent || '';
  209. if (text.trim()) {
  210. items.push({
  211. text: text.trim().substring(0, 100),
  212. tag: el.tagName,
  213. uid: `idx:${idx}`,
  214. ref: `idx:${idx}`
  215. });
  216. }
  217. }
  218. });
  219. return items;
  220. });
  221. return { items: elements };
  222. } catch (e) {
  223. if (e.message.includes('Target closed') || e.message.includes('Session closed') || e.message.includes('Protocol error') || e.message.includes('Execution context')) {
  224. this.browser = null;
  225. this.page = null;
  226. attempts++;
  227. continue;
  228. }
  229. throw e;
  230. }
  231. }
  232. return { items: [] };
  233. }
  234. async click(element) {
  235. if (!element) return;
  236. let attempts = 0;
  237. while (attempts < 2) {
  238. try {
  239. const { page } = await this._ensureBrowser();
  240. console.log('[click] page URL BEFORE:', page.url());
  241. const rawUid = typeof element === 'object' ? (element.uid || element.text || '') : element;
  242. const selector = rawUid.replace('text:', '');
  243. const selector = rawUid.replace('text:', '');
  244. if (/[\u4e00-\u9fff]/.test(selector) && (selector === '登录' || selector.length <= 4)) {
  245. const debugResult = await page.evaluate(() => {
  246. const allEls = document.querySelectorAll('*');
  247. const found = [];
  248. for (const el of allEls) {
  249. const vue = el.__vue__;
  250. if (vue && vue.$data && ('loginForm' in vue.$data)) {
  251. found.push('login_comp');
  252. try { vue.handleLogin(); return 'login_comp_ok'; } catch(e) { return 'login_comp_err:' + e.message; }
  253. }
  254. }
  255. return 'no_comp_found:' + found.length;
  256. });
  257. console.log('[click] Vue direct result:', debugResult);
  258. await page.waitForTimeout(2000);
  259. return;
  260. }
  261. if (selector.startsWith('idx:')) {
  262. const idx = parseInt(selector.replace('idx:', ''));
  263. const elements = await page.$$('*');
  264. if (elements[idx]) await elements[idx].click();
  265. } else {
  266. let clicked = false;
  267. try {
  268. const btnLoc = page.locator('.el-button').filter({ hasText: selector });
  269. const count = await btnLoc.count();
  270. if (count > 0) { await btnLoc.first().click(); clicked = true; }
  271. } catch (e) {}
  272. if (!clicked) {
  273. try {
  274. const btns = await page.$$('.el-button');
  275. for (const btn of btns) {
  276. const txt = await btn.innerText().catch(() => '');
  277. if (txt.trim() === selector || (selector.length <= 10 && txt.includes(selector))) {
  278. await btn.click(); clicked = true; break;
  279. }
  280. }
  281. } catch (e) {}
  282. }
  283. if (!clicked) {
  284. try {
  285. const els = await page.getByText(selector, { exact: false }).all();
  286. if (els.length > 0) { await els[0].click(); clicked = true; }
  287. } catch (e) {}
  288. }
  289. if (!clicked) {
  290. try {
  291. const loc = page.locator('text=' + selector);
  292. const count = await loc.count();
  293. if (count > 0) { await loc.first().click(); clicked = true; }
  294. } catch (e) {}
  295. }
  296. if (!clicked) {
  297. try {
  298. const allEls = await page.$$('*');
  299. for (const el of allEls) {
  300. const txt = await el.innerText().catch(() => '');
  301. if (txt.trim() === selector || (selector.length <= 10 && txt.includes(selector))) {
  302. await el.click(); clicked = true; break;
  303. }
  304. }
  305. } catch (e) {}
  306. }
  307. }
  308. await page.waitForTimeout(2000);
  309. return;
  310. } catch (e) {
  311. if (e.message.includes('Target closed') || e.message.includes('Session closed') || e.message.includes('Protocol error') || e.message.includes('Execution context')) {
  312. this.browser = null;
  313. this.page = null;
  314. attempts++;
  315. continue;
  316. }
  317. throw e;
  318. }
  319. }
  320. }
  321. async fill(element, value) {
  322. if (!element) return;
  323. let attempts = 0;
  324. while (attempts < 2) {
  325. try {
  326. const { page, browser } = await this._ensureBrowser();
  327. console.log('[fill] page URL:', page.url());
  328. const rawText = (element.uid || element.ref || '').replace('text:', '');
  329. const idx = element.idx;
  330. if (rawText.includes('用户名') || rawText.includes('密码') || typeof idx === 'number') {
  331. const result = await page.evaluate((key, v) => {
  332. const allEls = document.querySelectorAll('*');
  333. let comp = null;
  334. for (const el of allEls) {
  335. const vue = el.__vue__;
  336. if (vue && vue.$data && ('loginForm' in vue.$data)) {
  337. comp = vue;
  338. break;
  339. }
  340. }
  341. if (!comp) return 'no_login_comp';
  342. const field = key.includes('密码') ? 'password' : 'username';
  343. comp.loginForm[field] = v;
  344. return field + ':' + v;
  345. }, rawText, String(value));
  346. console.log('[fill] result:', result, 'url:', page.url());
  347. await page.waitForTimeout(500);
  348. } else {
  349. const selector = (element.uid || element.ref || element).replace('text:', '');
  350. if (selector.startsWith('idx:')) {
  351. const i = parseInt(selector.replace('idx:', ''));
  352. const elements = await page.$$('*');
  353. if (elements[i]) {
  354. await elements[i].click();
  355. await page.keyboard.press('Control+A');
  356. await page.keyboard.type(String(value));
  357. await page.waitForTimeout(500);
  358. }
  359. } else {
  360. await page.evaluate((sel) => {
  361. const el = document.querySelector(sel);
  362. if (el) el.focus();
  363. }, selector);
  364. await page.waitForTimeout(200);
  365. await page.keyboard.type(String(value));
  366. await page.waitForTimeout(500);
  367. }
  368. }
  369. return;
  370. } catch (e) {
  371. if (e.message.includes('Target closed') || e.message.includes('Session closed') || e.message.includes('Protocol error') || e.message.includes('Execution context')) {
  372. this.browser = null;
  373. this.page = null;
  374. attempts++;
  375. continue;
  376. }
  377. throw e;
  378. }
  379. }
  380. }
  381. async wait(seconds) {
  382. const { page } = await this._ensureBrowser();
  383. await page.waitForTimeout(seconds * 1000);
  384. }
  385. async screenshot(filename) {
  386. const { page } = await this._ensureBrowser();
  387. await page.screenshot({ path: filename, fullPage: true });
  388. return filename;
  389. }
  390. async resize(width, height) {
  391. const { page } = await this._ensureBrowser();
  392. await page.setViewport({ width, height });
  393. }
  394. async waitAndFind(text, timeout = 30) {
  395. await this.wait(1);
  396. let attempts = 0;
  397. while (attempts < timeout) {
  398. try {
  399. const { page } = await this._ensureBrowser();
  400. // Try .el-input__inner elements matching by placeholder
  401. const allInner = await page.$$('.el-input__inner');
  402. for (let i = 0; i < allInner.length; i++) {
  403. const ph = await allInner[i].getAttribute('placeholder').catch(() => '');
  404. if (ph.includes(text)) {
  405. await allInner[i].scrollIntoViewIfNeeded().catch(() => {});
  406. return { uid: '.el-input__inner', idx: i, text: ph, ref: '.el-input__inner' };
  407. }
  408. }
  409. // Fall back to text search in DOM
  410. const snap = await this.snapshot();
  411. const items = this._extractElements(snap);
  412. const found = items.find(el => el.text && el.text.includes(text));
  413. if (found) return found;
  414. } catch (e) {}
  415. await this.wait(1);
  416. attempts++;
  417. }
  418. return null;
  419. }
  420. _extractElements(snapshot) {
  421. if (!snapshot) return [];
  422. if (Array.isArray(snapshot)) return snapshot;
  423. if (snapshot.items) return snapshot.items;
  424. if (snapshot.elements) return snapshot.elements;
  425. return [];
  426. }
  427. async close() {
  428. if (this.browser) {
  429. try {
  430. await this.browser.close();
  431. } catch (e) {}
  432. this.browser = null;
  433. this.page = null;
  434. }
  435. }
  436. async reset() {
  437. await this.close();
  438. }
  439. }
  440. /**
  441. * Playwright MCP 工具封装类(Agent 模式)
  442. * 封装 skill_mcp 调用 Playwright 浏览器自动化工具
  443. */
  444. class PlaywrightMCP {
  445. constructor() {
  446. this.mcpName = 'playwright';
  447. }
  448. /**
  449. * 调用 Playwright MCP 工具
  450. */
  451. async call(toolName, args = {}) {
  452. try {
  453. const result = await skill_mcp({
  454. mcp_name: this.mcpName,
  455. tool_name: toolName,
  456. arguments: args
  457. });
  458. return result;
  459. } catch (error) {
  460. console.error(`[PlaywrightMCP] ${toolName} 调用失败:`, error.message);
  461. throw error;
  462. }
  463. }
  464. /**
  465. * 导航到 URL
  466. */
  467. async navigate(url) {
  468. return await this.call('browser_navigate', { url });
  469. }
  470. /**
  471. * 获取页面快照
  472. */
  473. async snapshot() {
  474. return await this.call('browser_snapshot', {});
  475. }
  476. /**
  477. * 等待元素并返回元素引用
  478. */
  479. async waitAndFind(text, timeout = 30) {
  480. await this.call('browser_wait_for', { time: 3 }); // 先等待一下
  481. let attempts = 0;
  482. while (attempts < timeout / 3) {
  483. try {
  484. const snap = await this.snapshot();
  485. const elements = this._extractElements(snap);
  486. const found = elements.find(el =>
  487. el.text && el.text.includes(text)
  488. );
  489. if (found) {
  490. return found;
  491. }
  492. } catch (e) {
  493. // 继续尝试
  494. }
  495. await this.call('browser_wait_for', { time: 3 });
  496. attempts++;
  497. }
  498. return null;
  499. }
  500. /**
  501. * 从快照中提取元素列表
  502. */
  503. _extractElements(snapshot) {
  504. if (!snapshot) return [];
  505. if (typeof snapshot === 'string') {
  506. try {
  507. const parsed = JSON.parse(snapshot);
  508. return this._extractElements(parsed);
  509. } catch {
  510. return [];
  511. }
  512. }
  513. if (Array.isArray(snapshot)) return snapshot;
  514. if (snapshot.elements) return snapshot.elements;
  515. if (snapshot.nodes) return snapshot.nodes;
  516. if (snapshot.items) return snapshot.items;
  517. return [];
  518. }
  519. /**
  520. * 通过文本查找元素(兼容旧接口)
  521. */
  522. findByText(text) {
  523. return { text, uid: `text:${text}` };
  524. }
  525. /**
  526. * 点击元素
  527. */
  528. async click(element) {
  529. if (!element) return;
  530. const ref = element.ref || element.uid || `text:${element.text}`;
  531. return await this.call('browser_click', { element: element.text || ref, ref });
  532. }
  533. /**
  534. * 填写表单字段
  535. */
  536. async fill(element, value) {
  537. if (!element) return;
  538. const ref = element.ref || element.uid || `text:${element.text}`;
  539. return await this.call('browser_type', { ref, text: value });
  540. }
  541. /**
  542. * 等待指定时间
  543. */
  544. async wait(seconds) {
  545. return await this.call('browser_wait_for', { time: seconds });
  546. }
  547. /**
  548. * 截图
  549. */
  550. async screenshot(filename) {
  551. return await this.call('browser_take_screenshot', { type: 'png', filename });
  552. }
  553. /**
  554. * 调整浏览器窗口大小
  555. */
  556. async resize(width, height) {
  557. return await this.call('browser_resize', { width, height });
  558. }
  559. }
  560. // 全局 Playwright MCP 实例
  561. let pw = null;
  562. function getPlaywrightMCP() {
  563. if (!pw) {
  564. pw = isAgentContext ? new PlaywrightMCP() : new PuppeteerMCP();
  565. }
  566. return pw;
  567. }
  568. // ============================================================================
  569. // 模块2: Web浏览器测试基类(管理后台)
  570. // ============================================================================
  571. /**
  572. * Web测试基类 - 用于管理后台浏览器自动化测试
  573. * 使用 Playwright MCP 工具进行真实的浏览器自动化测试
  574. */
  575. class WebTestCase {
  576. constructor(id, description, priority) {
  577. this.id = id;
  578. this.description = description;
  579. this.priority = priority;
  580. this.status = 'pending';
  581. this.error = null;
  582. this.screenshots = [];
  583. this.pageId = null;
  584. this.pw = null; // Playwright MCP 实例
  585. }
  586. /**
  587. * 获取 Playwright MCP 实例
  588. */
  589. getPW() {
  590. if (!this.pw) {
  591. this.pw = getPlaywrightMCP();
  592. }
  593. return this.pw;
  594. }
  595. /**
  596. * 初始化测试环境 - 打开浏览器并导航到页面
  597. */
  598. async setup(url = TEST_CONFIG.webAdminUrl) {
  599. console.log(`[${this.id}] 测试启动: ${this.description}`);
  600. this.status = 'running';
  601. const pw = this.getPW();
  602. await pw.navigate(url);
  603. await pw.resize(1920, 1080);
  604. await pw.wait(2);
  605. }
  606. /**
  607. * 等待指定秒数
  608. */
  609. async wait(seconds) {
  610. const pw = this.getPW();
  611. await pw.wait(seconds);
  612. }
  613. /**
  614. * 截图
  615. */
  616. async screenshot(name) {
  617. const pw = this.getPW();
  618. const filename = `${TEST_CONFIG.screenshotPath}/${this.id}_${name}.png`;
  619. try {
  620. await pw.screenshot(filename);
  621. console.log(`[${this.id}] 截图保存: ${filename}`);
  622. this.screenshots.push(filename);
  623. return filename;
  624. } catch (error) {
  625. console.log(`[${this.id}] 截图失败: ${error.message}`);
  626. return filename;
  627. }
  628. }
  629. /**
  630. * 等待元素出现并返回元素引用
  631. */
  632. async waitForElement(text, timeout = 30) {
  633. const pw = this.getPW();
  634. const element = await pw.waitAndFind(text, timeout);
  635. if (element) {
  636. console.log(`[${this.id}] 找到元素: ${text}`);
  637. return element;
  638. } else {
  639. console.log(`[${this.id}] 未找到元素: ${text}`);
  640. return { text, uid: `text:${text}`, ref: `text:${text}` };
  641. }
  642. }
  643. /**
  644. * 点击元素
  645. */
  646. async click(uid) {
  647. const pw = this.getPW();
  648. try {
  649. const element = { uid, text: uid.replace('text:', '') };
  650. await pw.click(element);
  651. console.log(`[${this.id}] 点击元素: ${uid}`);
  652. } catch (error) {
  653. console.log(`[${this.id}] 点击失败: ${uid} - ${error.message}`);
  654. }
  655. }
  656. /**
  657. * 填充输入框
  658. */
  659. async fill(uid, value) {
  660. const pw = this.getPW();
  661. try {
  662. const element = { uid, text: uid.replace('text:', '') };
  663. await pw.fill(element, value);
  664. console.log(`[${this.id}] 填充输入: ${uid} = ${value}`);
  665. } catch (error) {
  666. console.log(`[${this.id}] 填充失败: ${uid} = ${value} - ${error.message}`);
  667. }
  668. }
  669. /**
  670. * 获取页面快照
  671. */
  672. async getSnapshot() {
  673. const pw = this.getPW();
  674. try {
  675. const snap = await pw.snapshot();
  676. return pw._extractElements(snap);
  677. } catch (error) {
  678. console.log(`[${this.id}] 获取快照失败: ${error.message}`);
  679. return [];
  680. }
  681. }
  682. /**
  683. * 登录管理员账号
  684. */
  685. async loginAdmin() {
  686. console.log(`[${this.id}] 登录管理员账号: ${TEST_CONFIG.adminAccount.phone}`);
  687. const pw = this.getPW();
  688. await pw.navigate(TEST_CONFIG.webAdminUrl);
  689. await pw.wait(3);
  690. await this.screenshot('01_login_page');
  691. // 填写登录表单(placeholder="请输入用户名" / "请输入密码")
  692. const phoneEl = await this.waitForElement('请输入用户名');
  693. await this.fill(phoneEl.uid || '请输入用户名', TEST_CONFIG.adminAccount.phone);
  694. const pwdEl = await this.waitForElement('请输入密码');
  695. await this.fill(pwdEl.uid || '请输入密码', TEST_CONFIG.adminAccount.password);
  696. await pw.wait(1);
  697. await this.screenshot('02_form_filled');
  698. const loginBtn = await this.waitForElement('登录');
  699. await pw.click({ text: '登录', uid: '登录' });
  700. await pw.wait(3);
  701. await this.screenshot('03_after_login');
  702. }
  703. /**
  704. * 登录成长规划师账号
  705. */
  706. async loginTeacher() {
  707. console.log(`[${this.id}] 登录成长规划师账号: ${TEST_CONFIG.teacherAccount.phone}`);
  708. const pw = this.getPW();
  709. await pw.navigate(TEST_CONFIG.webAdminUrl);
  710. await pw.wait(3);
  711. await this.screenshot('01_teacher_login_page');
  712. const phoneEl = await this.waitForElement('请输入用户名');
  713. await this.fill(phoneEl.uid || '请输入用户名', TEST_CONFIG.teacherAccount.phone);
  714. const pwdEl = await this.waitForElement('请输入密码');
  715. await this.fill(pwdEl.uid || '请输入密码', TEST_CONFIG.teacherAccount.password);
  716. await this.screenshot('02_teacher_form_filled');
  717. await pw.click({ text: '登录', uid: '登录' });
  718. await pw.wait(3);
  719. await this.screenshot('03_teacher_after_login');
  720. }
  721. /**
  722. * 记录测试结果
  723. */
  724. logResult(passed, error = null) {
  725. this.status = passed ? 'passed' : 'failed';
  726. this.error = error;
  727. console.log(`[${this.id}] 测试${passed ? '通过 ✅' : '失败 ❌'}: ${this.description}`);
  728. if (error) {
  729. console.error(`[${this.id}] 错误信息:`, error);
  730. }
  731. }
  732. /**
  733. * 执行测试(子类实现)
  734. */
  735. async run() {
  736. throw new Error('子类必须实现 run 方法');
  737. }
  738. }
  739. // ============================================================================
  740. // 小程序端 API 测试用例
  741. // ============================================================================
  742. /**
  743. * API-001: 家长登录接口
  744. */
  745. class API_001_TestCase extends ApiTestCase {
  746. constructor() {
  747. super('API-001', '家长登录接口', 'P0', '/api/auth/login', 'POST');
  748. }
  749. async run() {
  750. try {
  751. this.requestData = {
  752. phone: '13800138001',
  753. code: '123456',
  754. role: 'parent'
  755. };
  756. const response = await this.sendRequest(this.requestData);
  757. // 验证响应
  758. const passed = response.status === 200 && response.data.code === 200;
  759. this.logResult(passed);
  760. } catch (error) {
  761. this.logResult(false, error);
  762. }
  763. }
  764. }
  765. /**
  766. * API-002: 创建任务接口
  767. */
  768. class API_002_TestCase extends ApiTestCase {
  769. constructor() {
  770. super('API-002', '家长创建任务接口', 'P0', '/api/tasks', 'POST');
  771. }
  772. async run() {
  773. try {
  774. this.requestData = {
  775. childId: 2,
  776. name: '完成语文作业',
  777. points: 5,
  778. category: 'study',
  779. deadline: '2026-04-15T18:00:00',
  780. description: '完成课本第10页到第15页的练习题'
  781. };
  782. const response = await this.sendRequest(this.requestData);
  783. const passed = response.status === 200;
  784. this.logResult(passed);
  785. } catch (error) {
  786. this.logResult(false, error);
  787. }
  788. }
  789. }
  790. /**
  791. * API-003: 获取今日任务列表
  792. */
  793. class API_003_TestCase extends ApiTestCase {
  794. constructor() {
  795. super('API-003', '获取孩子今日任务列表', 'P0', '/api/tasks/today/2', 'GET');
  796. }
  797. async run() {
  798. try {
  799. this.requestData = {
  800. childId: 2,
  801. date: new Date().toISOString().split('T')[0]
  802. };
  803. const response = await this.sendRequest(this.requestData);
  804. // 记录响应数据结构
  805. console.log(`[${this.id}] 任务列表数据结构:`, JSON.stringify(response.data, null, 2));
  806. const passed = response.status === 200;
  807. this.logResult(passed);
  808. } catch (error) {
  809. this.logResult(false, error);
  810. }
  811. }
  812. }
  813. /**
  814. * API-004: 孩子完成任务
  815. */
  816. class API_004_TestCase extends ApiTestCase {
  817. constructor() {
  818. super('API-004', '孩子完成任务接口', 'P0', '/api/tasks/1/complete', 'POST');
  819. }
  820. async run() {
  821. try {
  822. this.requestData = {
  823. taskId: 1,
  824. completedAt: new Date().toISOString(),
  825. proof: {
  826. type: 'photo',
  827. url: 'https://example.com/photo.jpg',
  828. description: '已完成作业拍照'
  829. }
  830. };
  831. const response = await this.sendRequest(this.requestData);
  832. const passed = response.status === 200;
  833. this.logResult(passed);
  834. } catch (error) {
  835. this.logResult(false, error);
  836. }
  837. }
  838. }
  839. /**
  840. * API-005: 获取积分记录
  841. */
  842. class API_005_TestCase extends ApiTestCase {
  843. constructor() {
  844. super('API-005', '获取积分记录接口', 'P0', '/api/points/records', 'GET');
  845. }
  846. async run() {
  847. try {
  848. this.requestData = {
  849. childId: 2,
  850. startDate: '2026-04-01',
  851. endDate: '2026-04-30'
  852. };
  853. const response = await this.sendRequest(this.requestData);
  854. console.log(`[${this.id}] 积分记录数据:`, JSON.stringify(response.data, null, 2));
  855. const passed = response.status === 200;
  856. this.logResult(passed);
  857. } catch (error) {
  858. this.logResult(false, error);
  859. }
  860. }
  861. }
  862. /**
  863. * API-006: 添加心愿到心愿单
  864. */
  865. class API_006_TestCase extends ApiTestCase {
  866. constructor() {
  867. super('API-006', '孩子添加心愿接口', 'P0', '/api/rewards/wishlist', 'POST');
  868. }
  869. async run() {
  870. try {
  871. this.requestData = {
  872. childId: 2,
  873. name: '去游乐园玩',
  874. category: 'experience',
  875. description: '周末全家一起去游乐园'
  876. };
  877. const response = await this.sendRequest(this.requestData);
  878. const passed = response.status === 200;
  879. this.logResult(passed);
  880. } catch (error) {
  881. this.logResult(false, error);
  882. }
  883. }
  884. }
  885. /**
  886. * API-007: 兑换奖励
  887. */
  888. class API_007_TestCase extends ApiTestCase {
  889. constructor() {
  890. super('API-007', '孩子兑换奖励接口', 'P0', '/api/rewards/1/exchange', 'POST');
  891. }
  892. async run() {
  893. try {
  894. this.requestData = {
  895. rewardId: 1,
  896. childId: 2,
  897. pointsUsed: 50
  898. };
  899. const response = await this.sendRequest(this.requestData);
  900. const passed = response.status === 200;
  901. this.logResult(passed);
  902. } catch (error) {
  903. this.logResult(false, error);
  904. }
  905. }
  906. }
  907. /**
  908. * API-008: 家长审批奖励兑换
  909. */
  910. class API_008_TestCase extends ApiTestCase {
  911. constructor() {
  912. super('API-008', '家长审批奖励兑换接口', 'P0', '/api/rewards/1/approve', 'POST');
  913. }
  914. async run() {
  915. try {
  916. this.requestData = {
  917. exchangeId: 1,
  918. approved: true,
  919. comment: '同意兑换,表现很好!'
  920. };
  921. const response = await this.sendRequest(this.requestData);
  922. const passed = response.status === 200;
  923. this.logResult(passed);
  924. } catch (error) {
  925. this.logResult(false, error);
  926. }
  927. }
  928. }
  929. /**
  930. * API-009: 获取连续打卡天数
  931. */
  932. class API_009_TestCase extends ApiTestCase {
  933. constructor() {
  934. super('API-009', '获取连续打卡天数接口', 'P0', '/api/streak/2', 'GET');
  935. }
  936. async run() {
  937. try {
  938. this.requestData = {
  939. childId: 2
  940. };
  941. const response = await this.sendRequest(this.requestData);
  942. console.log(`[${this.id}] 连续打卡数据:`, JSON.stringify(response.data, null, 2));
  943. const passed = response.status === 200;
  944. this.logResult(passed);
  945. } catch (error) {
  946. this.logResult(false, error);
  947. }
  948. }
  949. }
  950. /**
  951. * API-010: 获取家庭信息
  952. */
  953. class API_010_TestCase extends ApiTestCase {
  954. constructor() {
  955. super('API-010', '获取家庭信息接口', 'P0', '/api/family/info', 'GET');
  956. }
  957. async run() {
  958. try {
  959. this.requestData = {
  960. familyId: 1
  961. };
  962. const response = await this.sendRequest(this.requestData);
  963. console.log(`[${this.id}] 家庭信息数据:`, JSON.stringify(response.data, null, 2));
  964. const passed = response.status === 200;
  965. this.logResult(passed);
  966. } catch (error) {
  967. this.logResult(false, error);
  968. }
  969. }
  970. }
  971. /**
  972. * API-011: 成长规划师首次登录角色选择
  973. */
  974. class API_011_TestCase extends ApiTestCase {
  975. constructor() {
  976. super('API-011', '成长规划师首次登录角色选择', 'P0', '/api/auth/role-select', 'POST');
  977. }
  978. async run() {
  979. try {
  980. this.requestData = { userId: 1, role: 'teacher' };
  981. const response = await this.sendRequest(this.requestData);
  982. this.logResult(response.status === 200);
  983. } catch (error) {
  984. this.logResult(false, error);
  985. }
  986. }
  987. }
  988. /**
  989. * API-012: 成长规划师信息录入
  990. */
  991. class API_012_TestCase extends ApiTestCase {
  992. constructor() {
  993. super('API-012', '成长规划师信息录入', 'P0', '/api/user/profile', 'PUT');
  994. }
  995. async run() {
  996. try {
  997. this.requestData = {
  998. idCard: '110101199001011234',
  999. gender: 'male',
  1000. teacherPhoto: 'https://example.com/photo.jpg',
  1001. teacherNo: 'TEACHER20260001',
  1002. certificateImage: 'https://example.com/cert.jpg'
  1003. };
  1004. const response = await this.sendRequest(this.requestData);
  1005. this.logResult(response.status === 200);
  1006. } catch (error) {
  1007. this.logResult(false, error);
  1008. }
  1009. }
  1010. }
  1011. /**
  1012. * API-013: 成长规划师查看关联家庭
  1013. */
  1014. class API_013_TestCase extends ApiTestCase {
  1015. constructor() {
  1016. super('API-013', '成长规划师查看关联家庭列表', 'P0', '/api/guide/families', 'GET');
  1017. }
  1018. async run() {
  1019. try {
  1020. this.requestData = { teacherId: 1 };
  1021. const response = await this.sendRequest(this.requestData);
  1022. this.logResult(response.status === 200);
  1023. } catch (error) {
  1024. this.logResult(false, error);
  1025. }
  1026. }
  1027. }
  1028. /**
  1029. * API-014: 成长规划师审核任务
  1030. */
  1031. class API_014_TestCase extends ApiTestCase {
  1032. constructor() {
  1033. super('API-014', '成长规划师审核家庭任务', 'P0', '/api/guide/tasks/1/review', 'POST');
  1034. }
  1035. async run() {
  1036. try {
  1037. this.requestData = { taskId: 1, approved: true, comment: '审核通过' };
  1038. const response = await this.sendRequest(this.requestData);
  1039. this.logResult(response.status === 200);
  1040. } catch (error) {
  1041. this.logResult(false, error);
  1042. }
  1043. }
  1044. }
  1045. /**
  1046. * API-015: 小游戏-舒尔特方格
  1047. */
  1048. class API_015_TestCase extends ApiTestCase {
  1049. constructor() {
  1050. super('API-015', '舒尔特方格开始游戏', 'P1', '/api/mini-games/schulte/start', 'POST');
  1051. }
  1052. async run() {
  1053. try {
  1054. this.requestData = { childId: 2, gridSize: 5 };
  1055. const response = await this.sendRequest(this.requestData);
  1056. this.logResult(response.status === 200);
  1057. } catch (error) {
  1058. this.logResult(false, error);
  1059. }
  1060. }
  1061. }
  1062. /**
  1063. * API-016: 小游戏-猜数字(1a2b)
  1064. */
  1065. class API_016_TestCase extends ApiTestCase {
  1066. constructor() {
  1067. super('API-016', '猜数字(1a2b)开始游戏', 'P1', '/api/mini-games/1a2b/start', 'POST');
  1068. }
  1069. async run() {
  1070. try {
  1071. this.requestData = { childId: 2 };
  1072. const response = await this.sendRequest(this.requestData);
  1073. this.logResult(response.status === 200);
  1074. } catch (error) {
  1075. this.logResult(false, error);
  1076. }
  1077. }
  1078. }
  1079. /**
  1080. * API-017: 任务模板创建
  1081. */
  1082. class API_017_TestCase extends ApiTestCase {
  1083. constructor() {
  1084. super('API-017', '创建任务模板', 'P1', '/api/task-templates', 'POST');
  1085. }
  1086. async run() {
  1087. try {
  1088. this.requestData = {
  1089. title: '每日阅读',
  1090. description: '阅读30分钟课外书籍',
  1091. category: 'study',
  1092. points: 3,
  1093. duration: 30,
  1094. completeTypes: ['checkin', 'text']
  1095. };
  1096. const response = await this.sendRequest(this.requestData);
  1097. this.logResult(response.status === 200);
  1098. } catch (error) {
  1099. this.logResult(false, error);
  1100. }
  1101. }
  1102. }
  1103. /**
  1104. * API-018: 创建小游戏类任务(minigameCode字段)
  1105. */
  1106. class API_018_TestCase extends ApiTestCase {
  1107. constructor() {
  1108. super('API-018', '创建小游戏类任务', 'P1', '/api/tasks', 'POST');
  1109. }
  1110. async run() {
  1111. try {
  1112. this.requestData = {
  1113. childId: 2,
  1114. title: '完成舒尔特方格训练',
  1115. category: '小游戏类',
  1116. minigameCode: 'schulte',
  1117. points: 5,
  1118. deadline: '2026-04-20T18:00:00',
  1119. needReview: 0
  1120. };
  1121. const response = await this.sendRequest(this.requestData);
  1122. this.logResult(response.status === 200);
  1123. } catch (error) {
  1124. this.logResult(false, error);
  1125. }
  1126. }
  1127. }
  1128. /**
  1129. * API-019: 完成小游戏任务(调用MiniGameService)
  1130. */
  1131. class API_019_TestCase extends ApiTestCase {
  1132. constructor() {
  1133. super('API-019', '完成小游戏任务获积分', 'P1', '/api/tasks/1/complete', 'POST');
  1134. }
  1135. async run() {
  1136. try {
  1137. this.requestData = {
  1138. childId: 2,
  1139. completionTime: 45,
  1140. score: 80
  1141. };
  1142. const response = await this.sendRequest(this.requestData);
  1143. this.logResult(response.status === 200);
  1144. } catch (error) {
  1145. this.logResult(false, error);
  1146. }
  1147. }
  1148. }
  1149. // ============================================================================
  1150. // 成长规划师功能模块 - 套餐测试用例
  1151. // ============================================================================
  1152. /**
  1153. * API-020: 查看成长规划师套餐列表
  1154. */
  1155. class API_020_TestCase extends ApiTestCase {
  1156. constructor() {
  1157. super('API-020', '查看成长规划师套餐列表', 'P0', '/api/guide-packages', 'GET');
  1158. }
  1159. async run() {
  1160. try {
  1161. const response = await this.sendRequest();
  1162. this.logResult(response.status === 200);
  1163. } catch (error) {
  1164. this.logResult(false, error);
  1165. }
  1166. }
  1167. }
  1168. /**
  1169. * API-050b: 管理员获取服务内容详情
  1170. */
  1171. class API_050b_TestCase extends ApiTestCase {
  1172. constructor() {
  1173. super('API-050b', '管理员获取服务内容详情', 'P0', '/api/admin/service-contents', 'POST');
  1174. }
  1175. async run() {
  1176. try {
  1177. this.requestData = { id: 1 };
  1178. const response = await this.sendRequest(this.requestData);
  1179. this.logResult(response.status === 200);
  1180. } catch (error) {
  1181. this.logResult(false, error);
  1182. }
  1183. }
  1184. }
  1185. // ============================================================================
  1186. // 成长规划师功能模块 - 服务测试用例
  1187. // ============================================================================
  1188. /**
  1189. * API-025: 成长规划师创建测评服务
  1190. */
  1191. class API_025_TestCase extends ApiTestCase {
  1192. constructor() {
  1193. super('API-025', '成长规划师创建测评服务', 'P0', '/api/guide-services', 'POST');
  1194. }
  1195. async run() {
  1196. try {
  1197. this.requestData = {
  1198. teacherId: 1,
  1199. serviceType: 'assessment',
  1200. title: 'DAN能力测评服务',
  1201. description: '基于双培强基工程的DAN素质能力测评',
  1202. price: 99,
  1203. duration: 60
  1204. };
  1205. const response = await this.sendRequest(this.requestData);
  1206. this.logResult(response.status === 200);
  1207. } catch (error) {
  1208. this.logResult(false, error);
  1209. }
  1210. }
  1211. }
  1212. /**
  1213. * API-026: 成长规划师创建自定义服务
  1214. */
  1215. class API_026_TestCase extends ApiTestCase {
  1216. constructor() {
  1217. super('API-026', '成长规划师创建自定义服务', 'P0', '/api/guide-services', 'POST');
  1218. }
  1219. async run() {
  1220. try {
  1221. this.requestData = {
  1222. teacherId: 1,
  1223. serviceType: 'custom',
  1224. title: '专注力训练指导服务',
  1225. description: '专业专注力训练指导,30天见效',
  1226. price: 199,
  1227. duration: 30
  1228. };
  1229. const response = await this.sendRequest(this.requestData);
  1230. this.logResult(response.status === 200);
  1231. } catch (error) {
  1232. this.logResult(false, error);
  1233. }
  1234. }
  1235. }
  1236. /**
  1237. * API-027: 成长规划师查看已发布服务列表
  1238. */
  1239. class API_027_TestCase extends ApiTestCase {
  1240. constructor() {
  1241. super('API-027', '成长规划师查看已发布服务列表', 'P0', '/api/guide-services/my', 'GET');
  1242. }
  1243. async run() {
  1244. try {
  1245. const response = await this.sendRequest();
  1246. this.logResult(response.status === 200);
  1247. } catch (error) {
  1248. this.logResult(false, error);
  1249. }
  1250. }
  1251. }
  1252. /**
  1253. * API-028: 成长规划师编辑服务
  1254. */
  1255. class API_028_TestCase extends ApiTestCase {
  1256. constructor() {
  1257. super('API-028', '成长规划师编辑服务', 'P1', '/api/guide-services/1', 'PUT');
  1258. }
  1259. async run() {
  1260. try {
  1261. this.requestData = {
  1262. title: 'DAN能力测评服务(升级版)',
  1263. description: '基于双培强基工程的DAN素质能力测评,增加详细报告',
  1264. price: 129,
  1265. duration: 90
  1266. };
  1267. const response = await this.sendRequest(this.requestData);
  1268. this.logResult(response.status === 200);
  1269. } catch (error) {
  1270. this.logResult(false, error);
  1271. }
  1272. }
  1273. }
  1274. /**
  1275. * API-029: 成长规划师删除服务
  1276. */
  1277. class API_029_TestCase extends ApiTestCase {
  1278. constructor() {
  1279. super('API-029', '成长规划师删除服务', 'P1', '/api/guide-services/1', 'DELETE');
  1280. }
  1281. async run() {
  1282. try {
  1283. const response = await this.sendRequest();
  1284. this.logResult(response.status === 200);
  1285. } catch (error) {
  1286. this.logResult(false, error);
  1287. }
  1288. }
  1289. }
  1290. /**
  1291. * API-030: 家长购买成长规划师服务
  1292. */
  1293. class API_030_TestCase extends ApiTestCase {
  1294. constructor() {
  1295. super('API-030', '家长购买成长规划师服务', 'P0', '/api/guide-services/1/purchase', 'POST');
  1296. }
  1297. async run() {
  1298. try {
  1299. this.requestData = {
  1300. parentId: 1,
  1301. childId: 2,
  1302. serviceId: 1
  1303. };
  1304. const response = await this.sendRequest(this.requestData);
  1305. this.logResult(response.status === 200);
  1306. } catch (error) {
  1307. this.logResult(false, error);
  1308. }
  1309. }
  1310. }
  1311. /**
  1312. * API-031: 查看服务购买记录
  1313. */
  1314. class API_031_TestCase extends ApiTestCase {
  1315. constructor() {
  1316. super('API-031', '查看服务购买记录', 'P1', '/api/guide-services/orders', 'GET');
  1317. }
  1318. async run() {
  1319. try {
  1320. const response = await this.sendRequest();
  1321. this.logResult(response.status === 200);
  1322. } catch (error) {
  1323. this.logResult(false, error);
  1324. }
  1325. }
  1326. }
  1327. // ============================================================================
  1328. // 成长规划师功能模块 - 任务测试用例
  1329. // ============================================================================
  1330. /**
  1331. * API-032: 成长规划师创建绑定服务的任务
  1332. */
  1333. class API_032_TestCase extends ApiTestCase {
  1334. constructor() {
  1335. super('API-032', '成长规划师创建绑定服务的任务', 'P0', '/api/guide-tasks', 'POST');
  1336. }
  1337. async run() {
  1338. try {
  1339. this.requestData = {
  1340. teacherId: 1,
  1341. title: 'DAN测评后任务-专注力训练',
  1342. category: '学习类',
  1343. points: 5,
  1344. deadline: '2026-05-10T18:00:00',
  1345. serviceId: 1,
  1346. needReview: 1
  1347. };
  1348. const response = await this.sendRequest(this.requestData);
  1349. this.logResult(response.status === 200);
  1350. } catch (error) {
  1351. this.logResult(false, error);
  1352. }
  1353. }
  1354. }
  1355. /**
  1356. * API-033: 成长规划师查看已创建任务
  1357. */
  1358. class API_033_TestCase extends ApiTestCase {
  1359. constructor() {
  1360. super('API-033', '成长规划师查看已创建任务', 'P0', '/api/guide-tasks/my', 'GET');
  1361. }
  1362. async run() {
  1363. try {
  1364. const response = await this.sendRequest();
  1365. this.logResult(response.status === 200);
  1366. } catch (error) {
  1367. this.logResult(false, error);
  1368. }
  1369. }
  1370. }
  1371. /**
  1372. * API-034: 家长选用成长规划师任务
  1373. */
  1374. class API_034_TestCase extends ApiTestCase {
  1375. constructor() {
  1376. super('API-034', '家长选用成长规划师任务', 'P0', '/api/guide-tasks/1/apply', 'POST');
  1377. }
  1378. async run() {
  1379. try {
  1380. this.requestData = {
  1381. parentId: 1,
  1382. childId: 2
  1383. };
  1384. const response = await this.sendRequest(this.requestData);
  1385. this.logResult(response.status === 200);
  1386. } catch (error) {
  1387. this.logResult(false, error);
  1388. }
  1389. }
  1390. }
  1391. /**
  1392. * API-035: 查看任务服务绑定关系
  1393. */
  1394. class API_035_TestCase extends ApiTestCase {
  1395. constructor() {
  1396. super('API-035', '查看任务服务绑定关系', 'P1', '/api/guide-tasks/1/service', 'GET');
  1397. }
  1398. async run() {
  1399. try {
  1400. const response = await this.sendRequest();
  1401. this.logResult(response.status === 200);
  1402. } catch (error) {
  1403. this.logResult(false, error);
  1404. }
  1405. }
  1406. }
  1407. // ============================================================================
  1408. // 成长规划师功能模块 - 审核测试用例
  1409. // ============================================================================
  1410. /**
  1411. * API-036: 管理员查看待审核成长规划师列表
  1412. */
  1413. class API_036_TestCase extends ApiTestCase {
  1414. constructor() {
  1415. super('API-036', '管理员查看待审核成长规划师列表', 'P0', '/api/admin/guide-applications', 'GET');
  1416. }
  1417. async run() {
  1418. try {
  1419. const response = await this.sendRequest();
  1420. this.logResult(response.status === 200);
  1421. } catch (error) {
  1422. this.logResult(false, error);
  1423. }
  1424. }
  1425. }
  1426. /**
  1427. * API-037: 管理员审核成长规划师申请
  1428. */
  1429. class API_037_TestCase extends ApiTestCase {
  1430. constructor() {
  1431. super('API-037', '管理员审核成长规划师申请', 'P0', '/api/admin/guide-applications/1/review', 'POST');
  1432. }
  1433. async run() {
  1434. try {
  1435. this.requestData = {
  1436. approved: true,
  1437. comment: '资质审核通过,欢迎加入成长规划师团队',
  1438. reviewContent: {
  1439. idCardVerified: true,
  1440. certificateVerified: true,
  1441. photoVerified: true,
  1442. realNameVerified: true
  1443. }
  1444. };
  1445. const response = await this.sendRequest(this.requestData);
  1446. this.logResult(response.status === 200);
  1447. } catch (error) {
  1448. this.logResult(false, error);
  1449. }
  1450. }
  1451. }
  1452. /**
  1453. * API-038: 管理员审核内容完整性校验
  1454. */
  1455. class API_038_TestCase extends ApiTestCase {
  1456. constructor() {
  1457. super('API-038', '管理员审核内容完整性校验', 'P1', '/api/admin/guide-applications/1/validate', 'POST');
  1458. }
  1459. async run() {
  1460. try {
  1461. this.requestData = {
  1462. requiredFields: ['realName', 'idCard', 'gender', 'photo', 'certificateNo'],
  1463. applicationId: 1
  1464. };
  1465. const response = await this.sendRequest(this.requestData);
  1466. this.logResult(response.status === 200);
  1467. } catch (error) {
  1468. this.logResult(false, error);
  1469. }
  1470. }
  1471. }
  1472. // ============================================================================
  1473. // 成长规划师功能模块 - 咨询测试用例
  1474. // ============================================================================
  1475. /**
  1476. * API-039: 家长发送咨询留言
  1477. */
  1478. class API_039_TestCase extends ApiTestCase {
  1479. constructor() {
  1480. super('API-039', '家长发送咨询留言', 'P0', '/api/teacher-messages', 'POST');
  1481. }
  1482. async run() {
  1483. try {
  1484. this.requestData = {
  1485. parentId: 1,
  1486. teacherId: 1,
  1487. content: '您好,我想咨询一下孩子的专注力训练问题'
  1488. };
  1489. const response = await this.sendRequest(this.requestData);
  1490. this.logResult(response.status === 200);
  1491. } catch (error) {
  1492. this.logResult(false, error);
  1493. }
  1494. }
  1495. }
  1496. /**
  1497. * API-040: 成长规划师回复咨询
  1498. */
  1499. class API_040_TestCase extends ApiTestCase {
  1500. constructor() {
  1501. super('API-040', '成长规划师回复咨询', 'P0', '/api/teacher-messages/1/reply', 'POST');
  1502. }
  1503. async run() {
  1504. try {
  1505. this.requestData = {
  1506. teacherId: 1,
  1507. content: '感谢您的咨询。建议先进行DAN测评,了解孩子当前的能力等级后,再制定个性化训练方案。'
  1508. };
  1509. const response = await this.sendRequest(this.requestData);
  1510. this.logResult(response.status === 200);
  1511. } catch (error) {
  1512. this.logResult(false, error);
  1513. }
  1514. }
  1515. }
  1516. /**
  1517. * API-041: 查看咨询历史消息
  1518. */
  1519. class API_041_TestCase extends ApiTestCase {
  1520. constructor() {
  1521. super('API-041', '查看咨询历史消息', 'P0', '/api/teacher-messages/conversation/1', 'GET');
  1522. }
  1523. async run() {
  1524. try {
  1525. const response = await this.sendRequest();
  1526. this.logResult(response.status === 200);
  1527. } catch (error) {
  1528. this.logResult(false, error);
  1529. }
  1530. }
  1531. }
  1532. /**
  1533. * API-042: 未读消息计数
  1534. */
  1535. class API_042_TestCase extends ApiTestCase {
  1536. constructor() {
  1537. super('API-042', '未读消息计数', 'P1', '/api/teacher-messages/unread-count', 'GET');
  1538. }
  1539. async run() {
  1540. try {
  1541. const response = await this.sendRequest();
  1542. this.logResult(response.status === 200);
  1543. } catch (error) {
  1544. this.logResult(false, error);
  1545. }
  1546. }
  1547. }
  1548. // ============================================================================
  1549. // 指导师功能扩展 - 服务类型与内容管理
  1550. // ============================================================================
  1551. /**
  1552. * API-043: 管理员获取服务类型列表
  1553. */
  1554. class API_043_TestCase extends ApiTestCase {
  1555. constructor() {
  1556. super('API-043', '管理员获取服务类型列表', 'P0', '/api/admin/service-types/list', 'POST');
  1557. }
  1558. async run() {
  1559. try {
  1560. const response = await this.sendRequest();
  1561. this.logResult(response.status === 200);
  1562. } catch (error) {
  1563. this.logResult(false, error);
  1564. }
  1565. }
  1566. }
  1567. /**
  1568. * API-044: 管理员创建服务类型
  1569. */
  1570. class API_044_TestCase extends ApiTestCase {
  1571. constructor() {
  1572. super('API-044', '管理员创建服务类型', 'P0', '/api/admin/service-types', 'POST');
  1573. }
  1574. async run() {
  1575. try {
  1576. this.requestData = {
  1577. name: 'DAN测评',
  1578. icon: 'chart',
  1579. description: '基于双培强基工程的DAN素质能力测评',
  1580. sortOrder: 1
  1581. };
  1582. const response = await this.sendRequest(this.requestData);
  1583. this.logResult(response.status === 200);
  1584. } catch (error) {
  1585. this.logResult(false, error);
  1586. }
  1587. }
  1588. }
  1589. /**
  1590. * API-045: 管理员更新服务类型
  1591. */
  1592. class API_045_TestCase extends ApiTestCase {
  1593. constructor() {
  1594. super('API-045', '管理员更新服务类型', 'P1', '/api/admin/service-types/1', 'POST');
  1595. }
  1596. async run() {
  1597. try {
  1598. this.requestData = {
  1599. name: 'DAN能力测评',
  1600. description: '更新描述'
  1601. };
  1602. const response = await this.sendRequest(this.requestData);
  1603. this.logResult(response.status === 200);
  1604. } catch (error) {
  1605. this.logResult(false, error);
  1606. }
  1607. }
  1608. }
  1609. /**
  1610. * API-046: 管理员删除服务类型
  1611. */
  1612. class API_046_TestCase extends ApiTestCase {
  1613. constructor() {
  1614. super('API-046', '管理员删除服务类型', 'P1', '/api/admin/service-types/1/delete', 'POST');
  1615. }
  1616. async run() {
  1617. try {
  1618. const response = await this.sendRequest();
  1619. this.logResult(response.status === 200);
  1620. } catch (error) {
  1621. this.logResult(false, error);
  1622. }
  1623. }
  1624. }
  1625. /**
  1626. * API-046b: 管理员获取服务类型详情
  1627. */
  1628. class API_046b_TestCase extends ApiTestCase {
  1629. constructor() {
  1630. super('API-046b', '管理员获取服务类型详情', 'P0', '/api/admin/service-types/1', 'POST');
  1631. }
  1632. async run() {
  1633. try {
  1634. const response = await this.sendRequest();
  1635. this.logResult(response.status === 200);
  1636. } catch (error) {
  1637. this.logResult(false, error);
  1638. }
  1639. }
  1640. }
  1641. /**
  1642. * API-047: 管理员获取服务内容列表
  1643. */
  1644. class API_047_TestCase extends ApiTestCase {
  1645. constructor() {
  1646. super('API-047', '管理员获取服务内容列表', 'P0', '/api/admin/service-contents/list', 'POST');
  1647. }
  1648. async run() {
  1649. try {
  1650. const response = await this.sendRequest();
  1651. this.logResult(response.status === 200);
  1652. } catch (error) {
  1653. this.logResult(false, error);
  1654. }
  1655. }
  1656. }
  1657. /**
  1658. * API-048: 管理员创建服务内容
  1659. */
  1660. class API_048_TestCase extends ApiTestCase {
  1661. constructor() {
  1662. super('API-048', '管理员创建服务内容(富文本)', 'P0', '/api/admin/service-contents', 'POST');
  1663. }
  1664. async run() {
  1665. try {
  1666. this.requestData = {
  1667. typeId: 1,
  1668. title: 'DAN能力测评服务',
  1669. content: '<h2>测评介绍</h2><p>本服务基于双培强基工程DAN测评体系...</p>',
  1670. duration: 60,
  1671. ageRange: '6-12岁',
  1672. price: 99
  1673. };
  1674. const response = await this.sendRequest(this.requestData);
  1675. this.logResult(response.status === 200);
  1676. } catch (error) {
  1677. this.logResult(false, error);
  1678. }
  1679. }
  1680. }
  1681. /**
  1682. * API-049: 管理员更新服务内容
  1683. */
  1684. class API_049_TestCase extends ApiTestCase {
  1685. constructor() {
  1686. super('API-049', '管理员更新服务内容', 'P1', '/api/admin/service-contents/update', 'POST');
  1687. }
  1688. async run() {
  1689. try {
  1690. this.requestData = {
  1691. title: 'DAN能力测评服务(升级版)',
  1692. content: '<h2>全新升级</h2><p>增加详细报告...</p>'
  1693. };
  1694. const response = await this.sendRequest(this.requestData);
  1695. this.logResult(response.status === 200);
  1696. } catch (error) {
  1697. this.logResult(false, error);
  1698. }
  1699. }
  1700. }
  1701. /**
  1702. * API-050: 管理员删除服务内容
  1703. */
  1704. class API_050_TestCase extends ApiTestCase {
  1705. constructor() {
  1706. super('API-050', '管理员删除服务内容', 'P1', '/api/admin/service-contents/delete', 'POST');
  1707. }
  1708. async run() {
  1709. try {
  1710. const response = await this.sendRequest();
  1711. this.logResult(response.status === 200);
  1712. } catch (error) {
  1713. this.logResult(false, error);
  1714. }
  1715. }
  1716. }
  1717. // ============================================================================
  1718. // 套餐模板管理
  1719. // ============================================================================
  1720. /**
  1721. * API-051: 获取套餐模板列表
  1722. */
  1723. class API_051_TestCase extends ApiTestCase {
  1724. constructor() {
  1725. super('API-051', '获取套餐模板列表', 'P0', '/api/guide/packages/templates', 'POST');
  1726. }
  1727. async run() {
  1728. try {
  1729. const response = await this.sendRequest();
  1730. this.logResult(response.status === 200);
  1731. } catch (error) {
  1732. this.logResult(false, error);
  1733. }
  1734. }
  1735. }
  1736. /**
  1737. * API-052: 获取模板详情(含服务项)
  1738. */
  1739. class API_052_TestCase extends ApiTestCase {
  1740. constructor() {
  1741. super('API-052', '获取模板详情(含服务项)', 'P0', '/api/guide/packages/template-detail', 'POST');
  1742. }
  1743. async run() {
  1744. try {
  1745. const response = await this.sendRequest();
  1746. this.logResult(response.status === 200);
  1747. } catch (error) {
  1748. this.logResult(false, error);
  1749. }
  1750. }
  1751. }
  1752. // ============================================================================
  1753. // 套餐状态管理
  1754. // ============================================================================
  1755. /**
  1756. * API-053: 指导师更新套餐状态(暂停/发布)
  1757. */
  1758. class API_053_TestCase extends ApiTestCase {
  1759. constructor() {
  1760. super('API-053', '指导师更新套餐状态', 'P0', '/api/guide/packages/update-status', 'POST');
  1761. }
  1762. async run() {
  1763. try {
  1764. this.requestData = { status: 'PAUSED' };
  1765. const response = await this.sendRequest(this.requestData);
  1766. this.logResult(response.status === 200);
  1767. } catch (error) {
  1768. this.logResult(false, error);
  1769. }
  1770. }
  1771. }
  1772. /**
  1773. * API-054: 指导师删除套餐
  1774. */
  1775. class API_054_TestCase extends ApiTestCase {
  1776. constructor() {
  1777. super('API-054', '指导师删除套餐', 'P1', '/api/guide/packages/delete', 'POST');
  1778. }
  1779. async run() {
  1780. try {
  1781. const response = await this.sendRequest();
  1782. this.logResult(response.status === 200);
  1783. } catch (error) {
  1784. this.logResult(false, error);
  1785. }
  1786. }
  1787. }
  1788. // ============================================================================
  1789. // 团队管理
  1790. // ============================================================================
  1791. /**
  1792. * API-055: 指导师获取我的团队
  1793. */
  1794. class API_055_TestCase extends ApiTestCase {
  1795. constructor() {
  1796. super('API-055', '指导师获取我的团队', 'P0', '/api/guide/team', 'POST');
  1797. }
  1798. async run() {
  1799. try {
  1800. const response = await this.sendRequest();
  1801. this.logResult(response.status === 200);
  1802. } catch (error) {
  1803. this.logResult(false, error);
  1804. }
  1805. }
  1806. }
  1807. /**
  1808. * API-056: 指导师获取我的邀请码
  1809. */
  1810. class API_056_TestCase extends ApiTestCase {
  1811. constructor() {
  1812. super('API-056', '指导师获取邀请码', 'P0', '/api/guide/team/invite-code', 'POST');
  1813. }
  1814. async run() {
  1815. try {
  1816. const response = await this.sendRequest();
  1817. this.logResult(response.status === 200);
  1818. } catch (error) {
  1819. this.logResult(false, error);
  1820. }
  1821. }
  1822. }
  1823. // ============================================================================
  1824. // 订单与佣金
  1825. // ============================================================================
  1826. /**
  1827. * API-057: 指导师获取订单列表
  1828. */
  1829. class API_057_TestCase extends ApiTestCase {
  1830. constructor() {
  1831. super('API-057', '指导师获取订单列表', 'P0', '/api/guide/orders/list', 'POST');
  1832. }
  1833. async run() {
  1834. try {
  1835. const response = await this.sendRequest();
  1836. this.logResult(response.status === 200);
  1837. } catch (error) {
  1838. this.logResult(false, error);
  1839. }
  1840. }
  1841. }
  1842. /**
  1843. * API-058: 指导师获取订单统计
  1844. */
  1845. class API_058_TestCase extends ApiTestCase {
  1846. constructor() {
  1847. super('API-058', '指导师获取订单统计', 'P0', '/api/guide/orders/stats', 'POST');
  1848. }
  1849. async run() {
  1850. try {
  1851. const response = await this.sendRequest();
  1852. this.logResult(response.status === 200);
  1853. } catch (error) {
  1854. this.logResult(false, error);
  1855. }
  1856. }
  1857. }
  1858. /**
  1859. * API-059: 指导师获取佣金明细
  1860. */
  1861. class API_059_TestCase extends ApiTestCase {
  1862. constructor() {
  1863. super('API-059', '指导师获取佣金明细', 'P1', '/api/guide/commissions', 'POST');
  1864. }
  1865. async run() {
  1866. try {
  1867. const response = await this.sendRequest();
  1868. this.logResult(response.status === 200);
  1869. } catch (error) {
  1870. this.logResult(false, error);
  1871. }
  1872. }
  1873. }
  1874. // ============================================================================
  1875. // 家庭管理
  1876. // ============================================================================
  1877. /**
  1878. * API-060: 指导师获取服务家庭列表
  1879. */
  1880. class API_060_TestCase extends ApiTestCase {
  1881. constructor() {
  1882. super('API-060', '指导师获取服务家庭列表', 'P0', '/api/guide/families', 'POST');
  1883. }
  1884. async run() {
  1885. try {
  1886. const response = await this.sendRequest();
  1887. this.logResult(response.status === 200);
  1888. } catch (error) {
  1889. this.logResult(false, error);
  1890. }
  1891. }
  1892. }
  1893. /**
  1894. * API-061: 指导师获取家庭详情
  1895. */
  1896. class API_061_TestCase extends ApiTestCase {
  1897. constructor() {
  1898. super('API-061', '指导师获取家庭详情', 'P0', '/api/guide/families', 'POST');
  1899. }
  1900. async run() {
  1901. try {
  1902. const response = await this.sendRequest();
  1903. this.logResult(response.status === 200);
  1904. } catch (error) {
  1905. this.logResult(false, error);
  1906. }
  1907. }
  1908. }
  1909. // ============================================================================
  1910. // 服务核销
  1911. // ============================================================================
  1912. /**
  1913. * API-062: 指导师核销服务
  1914. */
  1915. class API_062_TestCase extends ApiTestCase {
  1916. constructor() {
  1917. super('API-062', '指导师核销服务', 'P0', '/api/guide/services/verify', 'POST');
  1918. }
  1919. async run() {
  1920. try {
  1921. this.requestData = {
  1922. orderId: 1,
  1923. serviceContentId: 1,
  1924. verifyCode: 'ABC123'
  1925. };
  1926. const response = await this.sendRequest(this.requestData);
  1927. this.logResult(response.status === 200);
  1928. } catch (error) {
  1929. this.logResult(false, error);
  1930. }
  1931. }
  1932. }
  1933. /**
  1934. * API-063: 指导师记录服务日志
  1935. */
  1936. class API_063_TestCase extends ApiTestCase {
  1937. constructor() {
  1938. super('API-063', '指导师记录服务日志', 'P1', '/api/guide/service-logs', 'POST');
  1939. }
  1940. async run() {
  1941. try {
  1942. this.requestData = {
  1943. familyId: 1,
  1944. serviceContentId: 1,
  1945. notes: '完成DAN测评服务',
  1946. duration: 60
  1947. };
  1948. const response = await this.sendRequest(this.requestData);
  1949. this.logResult(response.status === 200);
  1950. } catch (error) {
  1951. this.logResult(false, error);
  1952. }
  1953. }
  1954. }
  1955. // ============================================================================
  1956. // 成长规划师套餐管理
  1957. // ============================================================================
  1958. class API_064_TestCase extends ApiTestCase {
  1959. constructor() {
  1960. super('API-064', '指导师获取我的套餐列表', 'P0', '/api/guide/packages/list', 'POST');
  1961. }
  1962. async run() {
  1963. try {
  1964. const response = await this.sendRequest();
  1965. this.logResult(response.status === 200);
  1966. } catch (error) {
  1967. this.logResult(false, error);
  1968. }
  1969. }
  1970. }
  1971. class API_065_TestCase extends ApiTestCase {
  1972. constructor() {
  1973. super('API-065', '指导师创建套餐', 'P0', '/api/guide/packages', 'POST');
  1974. }
  1975. async run() {
  1976. try {
  1977. this.requestData = {
  1978. templateId: 1,
  1979. name: 'DAN测评套餐',
  1980. price: 299,
  1981. description: '包含DAN能力测评和专属咨询服务',
  1982. serviceContentIds: [1, 2]
  1983. };
  1984. const response = await this.sendRequest(this.requestData);
  1985. this.logResult(response.status === 200);
  1986. } catch (error) {
  1987. this.logResult(false, error);
  1988. }
  1989. }
  1990. }
  1991. class API_066_TestCase extends ApiTestCase {
  1992. constructor() {
  1993. super('API-066', '指导师更新套餐', 'P1', '/api/guide/packages/update', 'POST');
  1994. }
  1995. async run() {
  1996. try {
  1997. this.requestData = {
  1998. name: 'DAN测评套餐(升级版)',
  1999. price: 399,
  2000. description: '新增详细报告服务'
  2001. };
  2002. const response = await this.sendRequest(this.requestData);
  2003. this.logResult(response.status === 200);
  2004. } catch (error) {
  2005. this.logResult(false, error);
  2006. }
  2007. }
  2008. }
  2009. // ============================================================================
  2010. // 消息功能
  2011. // ============================================================================
  2012. class API_067_TestCase extends ApiTestCase {
  2013. constructor() {
  2014. super('API-067', '指导师获取消息列表', 'P0', '/api/guide/messages/list', 'POST');
  2015. }
  2016. async run() {
  2017. try {
  2018. const response = await this.sendRequest();
  2019. this.logResult(response.status === 200);
  2020. } catch (error) {
  2021. this.logResult(false, error);
  2022. }
  2023. }
  2024. }
  2025. class API_068_TestCase extends ApiTestCase {
  2026. constructor() {
  2027. super('API-068', '指导师获取会话消息', 'P0', '/api/guide/messages', 'POST');
  2028. }
  2029. async run() {
  2030. try {
  2031. const response = await this.sendRequest();
  2032. this.logResult(response.status === 200);
  2033. } catch (error) {
  2034. this.logResult(false, error);
  2035. }
  2036. }
  2037. }
  2038. class API_069_TestCase extends ApiTestCase {
  2039. constructor() {
  2040. super('API-069', '指导师发送消息', 'P0', '/api/guide/messages', 'POST');
  2041. }
  2042. async run() {
  2043. try {
  2044. this.requestData = {
  2045. conversationId: 1,
  2046. content: '感谢您的咨询,如有需要可预约DAN测评服务'
  2047. };
  2048. const response = await this.sendRequest(this.requestData);
  2049. this.logResult(response.status === 200);
  2050. } catch (error) {
  2051. this.logResult(false, error);
  2052. }
  2053. }
  2054. }
  2055. // ============================================================================
  2056. // Web管理端 浏览器测试用例
  2057. // ============================================================================
  2058. /**
  2059. * WEB-001: 管理员登录测试
  2060. */
  2061. class WEB_001_TestCase extends WebTestCase {
  2062. constructor() {
  2063. super('WEB-001', '管理员登录Web后台', 'P0');
  2064. }
  2065. async run() {
  2066. try {
  2067. await this.setup();
  2068. // 1. 打开登录页面
  2069. console.log(`[${this.id}] 访问: ${TEST_CONFIG.webAdminUrl}`);
  2070. await this.screenshot('01_login_page');
  2071. // 2. 输入账号密码
  2072. const phoneInput = await this.waitForElement('请输入用户名');
  2073. await this.fill(phoneInput.uid, TEST_CONFIG.adminAccount.phone);
  2074. const pwdInput = await this.waitForElement('密码');
  2075. await this.fill(pwdInput.uid, TEST_CONFIG.adminAccount.password);
  2076. await this.screenshot('02_form_filled');
  2077. // 3. 点击登录
  2078. const loginBtn = await this.waitForElement('登录');
  2079. await this.click(loginBtn.uid);
  2080. await this.screenshot('03_after_login');
  2081. // 4. 验证登录成功
  2082. const result = await this.getSnapshot();
  2083. const hasDashboard = result.some(item =>
  2084. item.text.includes('仪表板') ||
  2085. item.text.includes('管理') ||
  2086. item.text.includes('统计')
  2087. );
  2088. this.logResult(hasDashboard);
  2089. } catch (error) {
  2090. this.logResult(false, error);
  2091. }
  2092. }
  2093. }
  2094. /**
  2095. * WEB-002: 管理员查看用户列表
  2096. */
  2097. class WEB_002_TestCase extends WebTestCase {
  2098. constructor() {
  2099. super('WEB-002', '管理员查看用户列表', 'P0');
  2100. }
  2101. async run() {
  2102. try {
  2103. await this.setup();
  2104. await this.loginAdmin();
  2105. // 1. 展开系统管理
  2106. const systemMenu = await this.waitForElement('系统管理');
  2107. await this.click(systemMenu.uid);
  2108. await this.screenshot('01_system_menu');
  2109. // 2. 点击用户管理
  2110. const userMenu = await this.waitForElement('用户管理');
  2111. await this.click(userMenu.uid);
  2112. await this.screenshot('02_user_list');
  2113. // 3. 等待列表加载
  2114. await this.wait(3);
  2115. // 验证列表显示
  2116. const result = await this.getSnapshot();
  2117. const hasUsers = result.some(item =>
  2118. item.text.includes('家长') ||
  2119. item.text.includes('孩子') ||
  2120. item.text.includes('请输入用户名')
  2121. );
  2122. this.logResult(hasUsers);
  2123. } catch (error) {
  2124. this.logResult(false, error);
  2125. }
  2126. }
  2127. }
  2128. /**
  2129. * WEB-003: 管理员查看任务统计
  2130. */
  2131. class WEB_003_TestCase extends WebTestCase {
  2132. constructor() {
  2133. super('WEB-003', '管理员查看任务统计', 'P0');
  2134. }
  2135. async run() {
  2136. try {
  2137. await this.setup();
  2138. await this.loginAdmin();
  2139. // 1. 进入首页(仪表盘集成任务统计)
  2140. const dashboard = await this.waitForElement('首页');
  2141. await this.click(dashboard.uid);
  2142. await this.screenshot('01_dashboard');
  2143. // 2. 验证统计图表
  2144. const result = await this.getSnapshot();
  2145. const hasStats = result.some(item =>
  2146. item.text.includes('完成率') ||
  2147. item.text.includes('任务数') ||
  2148. item.text.includes('统计')
  2149. );
  2150. this.logResult(hasStats);
  2151. } catch (error) {
  2152. this.logResult(false, error);
  2153. }
  2154. }
  2155. }
  2156. /**
  2157. * WEB-004: 成长规划师登录测试
  2158. */
  2159. class WEB_004_TestCase extends WebTestCase {
  2160. constructor() {
  2161. super('WEB-004', '成长规划师登录Web后台', 'P0');
  2162. }
  2163. async run() {
  2164. try {
  2165. await this.setup();
  2166. // 1. 打开登录页面
  2167. console.log(`[${this.id}] 访问: ${TEST_CONFIG.webAdminUrl}`);
  2168. await this.screenshot('01_teacher_login_page');
  2169. // 2. 输入成长规划师账号
  2170. const phoneInput = await this.waitForElement('请输入用户名');
  2171. await this.fill(phoneInput.uid, TEST_CONFIG.teacherAccount.phone);
  2172. const pwdInput = await this.waitForElement('密码');
  2173. await this.fill(pwdInput.uid, TEST_CONFIG.teacherAccount.password);
  2174. await this.screenshot('02_teacher_form_filled');
  2175. // 3. 登录
  2176. const loginBtn = await this.waitForElement('登录');
  2177. await this.click(loginBtn.uid);
  2178. await this.screenshot('03_teacher_after_login');
  2179. // 4. 验证成长规划师界面
  2180. const result = await this.getSnapshot();
  2181. const hasGuideFeatures = result.some(item =>
  2182. item.text.includes('工作台') ||
  2183. item.text.includes('服务管理') ||
  2184. item.text.includes('家庭')
  2185. );
  2186. this.logResult(hasGuideFeatures);
  2187. } catch (error) {
  2188. this.logResult(false, error);
  2189. }
  2190. }
  2191. }
  2192. /**
  2193. * WEB-005: 成长规划师查看分配的家庭
  2194. */
  2195. class WEB_005_TestCase extends WebTestCase {
  2196. constructor() {
  2197. super('WEB-005', '成长规划师查看分配的家庭', 'P0');
  2198. }
  2199. async run() {
  2200. try {
  2201. await this.setup();
  2202. await this.loginTeacher();
  2203. // 1. 展开服务管理
  2204. const serviceMenu = await this.waitForElement('服务管理');
  2205. await this.click(serviceMenu.uid);
  2206. await this.screenshot('01_service_menu');
  2207. // 2. 查看我的家庭
  2208. const myFamilies = await this.waitForElement('我的家庭');
  2209. await this.click(myFamilies.uid);
  2210. await this.screenshot('02_my_families');
  2211. // 3. 验证家庭列表
  2212. const result = await this.getSnapshot();
  2213. const hasFamilies = result.some(item =>
  2214. item.text.includes('家庭') ||
  2215. item.text.includes('孩子')
  2216. );
  2217. this.logResult(hasFamilies);
  2218. } catch (error) {
  2219. this.logResult(false, error);
  2220. }
  2221. }
  2222. }
  2223. /**
  2224. * WEB-006: 管理员审核成长规划师注册
  2225. */
  2226. class WEB_006_TestCase extends WebTestCase {
  2227. constructor() {
  2228. super('WEB-006', '管理员审核成长规划师注册', 'P1');
  2229. }
  2230. async run() {
  2231. try {
  2232. await this.setup();
  2233. await this.loginAdmin();
  2234. // 1. 展开系统管理
  2235. const systemMenu = await this.waitForElement('系统管理');
  2236. await this.click(systemMenu.uid);
  2237. await this.screenshot('01_system_menu');
  2238. // 2. 进入规划师审核
  2239. const guideAudit = await this.waitForElement('规划师审核');
  2240. await this.click(guideAudit.uid);
  2241. await this.screenshot('02_guide_audit');
  2242. // 3. 查看待审核列表
  2243. const pendingBtn = await this.waitForElement('待审核');
  2244. await this.click(pendingBtn.uid);
  2245. await this.screenshot('03_pending_guides');
  2246. // 4. 审核操作
  2247. const approveBtn = await this.waitForElement('通过');
  2248. await this.click(approveBtn.uid);
  2249. await this.screenshot('04_approved');
  2250. this.logResult(true);
  2251. } catch (error) {
  2252. this.logResult(false, error);
  2253. }
  2254. }
  2255. }
  2256. /**
  2257. * WEB-007: 管理员查看街道统计
  2258. */
  2259. class WEB_007_TestCase extends WebTestCase {
  2260. constructor() {
  2261. super('WEB-007', '管理员查看街道统计', 'P1');
  2262. }
  2263. async run() {
  2264. try {
  2265. await this.setup();
  2266. await this.loginAdmin();
  2267. // 1. 进入首页(Dashboard 集成统计概览)
  2268. const dashboard = await this.waitForElement('首页');
  2269. await this.click(dashboard.uid);
  2270. await this.screenshot('01_dashboard');
  2271. // 2. 验证统计数据
  2272. const result = await this.getSnapshot();
  2273. const hasStats = result.some(item =>
  2274. item.text.includes('家庭') ||
  2275. item.text.includes('用户') ||
  2276. item.text.includes('统计')
  2277. );
  2278. this.logResult(hasStats);
  2279. } catch (error) {
  2280. this.logResult(false, error);
  2281. }
  2282. }
  2283. }
  2284. /**
  2285. * WEB-008: 成长规划师审核家庭任务
  2286. */
  2287. class WEB_008_TestCase extends WebTestCase {
  2288. constructor() {
  2289. super('WEB-008', '成长规划师审核家庭任务', 'P0');
  2290. }
  2291. async run() {
  2292. try {
  2293. await this.setup();
  2294. await this.loginTeacher();
  2295. // 1. 展开服务管理
  2296. const serviceMenu = await this.waitForElement('服务管理');
  2297. await this.click(serviceMenu.uid);
  2298. await this.screenshot('01_service_menu');
  2299. // 2. 进入我的家庭
  2300. const myFamilies = await this.waitForElement('我的家庭');
  2301. await this.click(myFamilies.uid);
  2302. await this.screenshot('02_my_families');
  2303. // 3. 查看待审核任务
  2304. const pendingTasks = await this.waitForElement('待审核');
  2305. await this.click(pendingTasks.uid);
  2306. await this.screenshot('03_pending_tasks');
  2307. // 4. 审核通过
  2308. const approveBtn = await this.waitForElement('通过');
  2309. await this.click(approveBtn.uid);
  2310. await this.screenshot('04_approved');
  2311. this.logResult(true);
  2312. } catch (error) {
  2313. this.logResult(false, error);
  2314. }
  2315. }
  2316. }
  2317. /**
  2318. * WEB-009: 成长规划师查看家庭任务详情
  2319. */
  2320. class WEB_009_TestCase extends WebTestCase {
  2321. constructor() {
  2322. super('WEB-009', '成长规划师查看家庭任务详情', 'P1');
  2323. }
  2324. async run() {
  2325. try {
  2326. await this.setup();
  2327. await this.loginTeacher();
  2328. // 1. 展开服务管理
  2329. const serviceMenu = await this.waitForElement('服务管理');
  2330. await this.click(serviceMenu.uid);
  2331. await this.screenshot('01_service_menu');
  2332. // 2. 进入我的家庭
  2333. const myFamilies = await this.waitForElement('我的家庭');
  2334. await this.click(myFamilies.uid);
  2335. await this.screenshot('02_family_list');
  2336. // 3. 查看详情
  2337. const detailBtn = await this.waitForElement('查看详情');
  2338. await this.click(detailBtn.uid);
  2339. await this.screenshot('03_family_tasks');
  2340. this.logResult(true);
  2341. } catch (error) {
  2342. this.logResult(false, error);
  2343. }
  2344. }
  2345. }
  2346. // ============================================================================
  2347. // Web管理端 - 用户管理测试用例 (MODE-006, MODE-007, MODE-008, MODE-009)
  2348. // ============================================================================
  2349. /**
  2350. * WEB-010: 管理员查看用户列表 (MODE-006)
  2351. */
  2352. class WEB_010_TestCase extends WebTestCase {
  2353. constructor() {
  2354. super('WEB-010', '管理员查看用户列表', 'P0');
  2355. }
  2356. async run() {
  2357. try {
  2358. await this.setup();
  2359. await this.loginAdmin();
  2360. // 展开系统管理
  2361. const systemMenu = await this.waitForElement('系统管理');
  2362. await this.click(systemMenu.uid);
  2363. await this.screenshot('01_system_menu');
  2364. // 点击用户管理
  2365. const userMenu = await this.waitForElement('用户管理');
  2366. await this.click(userMenu.uid);
  2367. await this.screenshot('02_user_list');
  2368. // 验证用户列表数据
  2369. const result = await this.getSnapshot();
  2370. const hasUsers = result.some(item =>
  2371. item.text.includes('家长') ||
  2372. item.text.includes('孩子') ||
  2373. item.text.includes('请输入用户名')
  2374. );
  2375. this.logResult(hasUsers);
  2376. } catch (error) {
  2377. this.logResult(false, error);
  2378. }
  2379. }
  2380. }
  2381. /**
  2382. * WEB-011: 管理员查看用户详情 (MODE-006)
  2383. */
  2384. class WEB_011_TestCase extends WebTestCase {
  2385. constructor() {
  2386. super('WEB-011', '管理员查看用户详情', 'P0');
  2387. }
  2388. async run() {
  2389. try {
  2390. await this.setup();
  2391. await this.loginAdmin();
  2392. // 展开系统管理
  2393. const systemMenu = await this.waitForElement('系统管理');
  2394. await this.click(systemMenu.uid);
  2395. await this.screenshot('01_system_menu');
  2396. // 进入用户管理
  2397. const userMenu = await this.waitForElement('用户管理');
  2398. await this.click(userMenu.uid);
  2399. await this.screenshot('02_user_list');
  2400. // 点击查看详情按钮
  2401. const detailBtn = await this.waitForElement('查看详情');
  2402. await this.click(detailBtn.uid);
  2403. await this.screenshot('03_user_detail');
  2404. // 验证详情页
  2405. const result = await this.getSnapshot();
  2406. const hasDetail = result.some(item =>
  2407. item.text.includes('用户信息') ||
  2408. item.text.includes('请输入用户名') ||
  2409. item.text.includes('角色')
  2410. );
  2411. this.logResult(hasDetail);
  2412. } catch (error) {
  2413. this.logResult(false, error);
  2414. }
  2415. }
  2416. }
  2417. /**
  2418. * WEB-012: 管理员编辑用户信息 (MODE-007) - 增强版:真实CRUD操作
  2419. */
  2420. class WEB_012_TestCase extends WebTestCase {
  2421. constructor() {
  2422. super('WEB-012', '管理员编辑用户信息', 'P0');
  2423. }
  2424. async run() {
  2425. try {
  2426. await this.setup();
  2427. await this.loginAdmin();
  2428. const systemMenu = await this.waitForElement('系统管理');
  2429. await this.click(systemMenu.uid);
  2430. await this.screenshot('01_system_menu');
  2431. const userMenu = await this.waitForElement('用户管理');
  2432. await this.click(userMenu.uid);
  2433. await this.screenshot('02_user_list');
  2434. const editBtn = await this.waitForElement('编辑');
  2435. await this.click(editBtn.uid);
  2436. await this.screenshot('03_edit_modal');
  2437. const modalSnapshot = await this.getSnapshot();
  2438. const hasEditModal = modalSnapshot.some(item =>
  2439. item.text.includes('编辑') || item.text.includes('保存') ||
  2440. item.text.includes('昵称') || item.text.includes('请输入用户名')
  2441. );
  2442. if (!hasEditModal) {
  2443. this.logResult(false, null, { error: '编辑弹窗未出现' });
  2444. return;
  2445. }
  2446. const testNickname = `TestUser_${Date.now()}`;
  2447. const nicknameInput = await this.waitForElement('昵称', 3);
  2448. if (nicknameInput) {
  2449. await this.fill(nicknameInput.uid, testNickname);
  2450. await this.screenshot('03_nickname_filled');
  2451. const saveBtn = await this.waitForElement('保存', 3);
  2452. if (saveBtn) {
  2453. await this.click(saveBtn.uid);
  2454. await this.screenshot('04_after_save');
  2455. await this.getSnapshot();
  2456. const afterSnapshot = await this.getSnapshot();
  2457. const nicknameChanged = afterSnapshot.some(item => item.text.includes(testNickname));
  2458. this.logResult(nicknameChanged, null, { testNickname, verified: 'Nickname Modified' });
  2459. } else {
  2460. this.logResult(false, null, { error: 'Save Button Not Found' });
  2461. }
  2462. } else {
  2463. this.logResult(false, null, { error: 'Nickname Input Not Found' });
  2464. }
  2465. } catch (error) {
  2466. this.logResult(false, error);
  2467. }
  2468. }
  2469. }
  2470. /**
  2471. * WEB-013: 管理员停用孩子账号 (MODE-008) - 增强版:真实状态变更
  2472. */
  2473. class WEB_013_TestCase extends WebTestCase {
  2474. constructor() {
  2475. super('WEB-013', '管理员停用孩子账号', 'P0');
  2476. this.disabledUserId = null;
  2477. }
  2478. async run() {
  2479. try {
  2480. await this.setup();
  2481. await this.loginAdmin();
  2482. // 展开系统管理
  2483. const systemMenu = await this.waitForElement('系统管理');
  2484. await this.click(systemMenu.uid);
  2485. await this.screenshot('01_system_menu');
  2486. // 进入用户管理
  2487. const userMenu = await this.waitForElement('用户管理');
  2488. await this.click(userMenu.uid);
  2489. await this.screenshot('02_user_list');
  2490. // 获取用户列表,找到一个可停用的账号(状态为正常的)
  2491. const snapshot = await this.getSnapshot();
  2492. // 找一个有"启用"按钮的用户(表示当前是启用状态,可以被停用)
  2493. const enableBtn = snapshot.find(item => item.text.includes('启用'));
  2494. if (!enableBtn) {
  2495. this.logResult(false, null, { error: '没有找到可停用的账号' });
  2496. return;
  2497. }
  2498. await this.click(enableBtn.uid);
  2499. await this.screenshot('02_disable_confirm');
  2500. // 等待状态更新
  2501. await this.getSnapshot();
  2502. await this.wait(1);
  2503. // 验证停用成功 - 界面应该显示"停用"按钮而不是"启用"
  2504. const afterSnapshot = await this.getSnapshot();
  2505. const disableBtnExists = afterSnapshot.some(item => item.text.includes('停用') && !item.text.includes('已停用'));
  2506. const statusChanged = afterSnapshot.some(item =>
  2507. item.text.includes('已停用') ||
  2508. item.text.includes('停用成功') ||
  2509. item.text.includes('状态') ||
  2510. item.text.includes('禁用')
  2511. );
  2512. this.logResult(disableBtnExists || statusChanged, null, {
  2513. verified: '停用状态变更验证'
  2514. });
  2515. } catch (error) {
  2516. this.logResult(false, error);
  2517. }
  2518. }
  2519. }
  2520. /**
  2521. * WEB-014: 管理员启用孩子账号 (MODE-008) - 增强版:真实状态恢复
  2522. */
  2523. class WEB_014_TestCase extends WebTestCase {
  2524. constructor() {
  2525. super('WEB-014', '管理员启用孩子账号', 'P0');
  2526. }
  2527. async run() {
  2528. try {
  2529. await this.setup();
  2530. await this.loginAdmin();
  2531. // 展开系统管理
  2532. const systemMenu = await this.waitForElement('系统管理');
  2533. await this.click(systemMenu.uid);
  2534. await this.screenshot('01_system_menu');
  2535. // 进入用户管理
  2536. const userMenu = await this.waitForElement('用户管理');
  2537. await this.click(userMenu.uid);
  2538. await this.screenshot('02_user_list');
  2539. // 获取用户列表,找到一个可启用的账号(状态为停用的)
  2540. const snapshot = await this.getSnapshot();
  2541. // 找一个有"停用"按钮的用户(表示当前是启用状态)
  2542. const disableBtn = snapshot.find(item => item.text.includes('停用') && !item.text.includes('已停用'));
  2543. if (!disableBtn) {
  2544. this.logResult(false, null, { error: '没有找到可启用的账号' });
  2545. return;
  2546. }
  2547. await this.click(disableBtn.uid);
  2548. await this.screenshot('02_enable_confirm');
  2549. // 等待状态更新
  2550. await this.getSnapshot();
  2551. await this.wait(1);
  2552. // 验证启用成功 - 界面应该显示"启用"按钮
  2553. const afterSnapshot = await this.getSnapshot();
  2554. const enableBtnExists = afterSnapshot.some(item => item.text.includes('启用'));
  2555. const statusChanged = afterSnapshot.some(item =>
  2556. item.text.includes('已启用') ||
  2557. item.text.includes('启用成功') ||
  2558. item.text.includes('状态')
  2559. );
  2560. this.logResult(enableBtnExists || statusChanged, null, {
  2561. verified: '启用状态恢复验证'
  2562. });
  2563. } catch (error) {
  2564. this.logResult(false, error);
  2565. }
  2566. }
  2567. }
  2568. // ============================================================================
  2569. // Web管理端 - 任务管理测试用例 (TASK-001~007, TASK-014~016)
  2570. // ============================================================================
  2571. /**
  2572. * WEB-015: 管理员创建任务 (TASK-001, TASK-002, TASK-003, TASK-005)
  2573. */
  2574. class WEB_015_TestCase extends WebTestCase {
  2575. constructor() {
  2576. super('WEB-015', '管理员创建任务', 'P0');
  2577. }
  2578. async run() {
  2579. try {
  2580. await this.setup();
  2581. await this.loginAdmin();
  2582. // 进入任务管理 -> 任务列表
  2583. const taskMenu = await this.waitForElement('任务管理');
  2584. await this.click(taskMenu.uid);
  2585. const taskList = await this.waitForElement('任务列表');
  2586. await this.click(taskList.uid);
  2587. await this.screenshot('01_task_list');
  2588. // 点击创建任务按钮
  2589. const createBtn = await this.waitForElement('创建任务');
  2590. await this.click(createBtn.uid);
  2591. await this.screenshot('02_create_task_modal');
  2592. // 验证创建弹窗
  2593. const result = await this.getSnapshot();
  2594. const hasForm = result.some(item =>
  2595. item.text.includes('任务名称') ||
  2596. item.text.includes('积分') ||
  2597. item.text.includes('截止时间') ||
  2598. item.text.includes('分类')
  2599. );
  2600. this.logResult(hasForm);
  2601. } catch (error) {
  2602. this.logResult(false, error);
  2603. }
  2604. }
  2605. }
  2606. /**
  2607. * WEB-016: 管理员设置任务分类 (TASK-005)
  2608. */
  2609. class WEB_016_TestCase extends WebTestCase {
  2610. constructor() {
  2611. super('WEB-016', '管理员设置任务分类', 'P0');
  2612. }
  2613. async run() {
  2614. try {
  2615. await this.setup();
  2616. await this.loginAdmin();
  2617. // 进入创建任务页面
  2618. const taskMenu = await this.waitForElement('任务管理');
  2619. await this.click(taskMenu.uid);
  2620. const taskList = await this.waitForElement('任务列表');
  2621. await this.click(taskList.uid);
  2622. const createBtn = await this.waitForElement('创建任务');
  2623. await this.click(createBtn.uid);
  2624. await this.screenshot('01_create_task');
  2625. // 验证分类选项
  2626. const result = await this.getSnapshot();
  2627. const hasCategory = result.some(item =>
  2628. item.text.includes('学习类') ||
  2629. item.text.includes('生活类') ||
  2630. item.text.includes('运动类') ||
  2631. item.text.includes('游戏类') ||
  2632. item.text.includes('其他')
  2633. );
  2634. this.logResult(hasCategory);
  2635. } catch (error) {
  2636. this.logResult(false, error);
  2637. }
  2638. }
  2639. }
  2640. /**
  2641. * WEB-017: 管理员设置任务积分 (TASK-002)
  2642. */
  2643. class WEB_017_TestCase extends WebTestCase {
  2644. constructor() {
  2645. super('WEB-017', '管理员设置任务积分', 'P0');
  2646. }
  2647. async run() {
  2648. try {
  2649. await this.setup();
  2650. await this.loginAdmin();
  2651. // 进入创建任务页面
  2652. const taskMenu = await this.waitForElement('任务管理');
  2653. await this.click(taskMenu.uid);
  2654. const taskList = await this.waitForElement('任务列表');
  2655. await this.click(taskList.uid);
  2656. const createBtn = await this.waitForElement('创建任务');
  2657. await this.click(createBtn.uid);
  2658. await this.screenshot('01_create_task');
  2659. // 验证积分选项(1-10分,默认2分)
  2660. const result = await this.getSnapshot();
  2661. const hasPoints = result.some(item =>
  2662. item.text.includes('积分') ||
  2663. item.text.includes('分')
  2664. );
  2665. this.logResult(hasPoints);
  2666. } catch (error) {
  2667. this.logResult(false, error);
  2668. }
  2669. }
  2670. }
  2671. /**
  2672. * WEB-018: 管理员设置任务截止时间 (TASK-003)
  2673. */
  2674. class WEB_018_TestCase extends WebTestCase {
  2675. constructor() {
  2676. super('WEB-018', '管理员设置任务截止时间', 'P0');
  2677. }
  2678. async run() {
  2679. try {
  2680. await this.setup();
  2681. await this.loginAdmin();
  2682. // 进入创建任务页面
  2683. const taskMenu = await this.waitForElement('任务管理');
  2684. await this.click(taskMenu.uid);
  2685. const taskList = await this.waitForElement('任务列表');
  2686. await this.click(taskList.uid);
  2687. const createBtn = await this.waitForElement('创建任务');
  2688. await this.click(createBtn.uid);
  2689. await this.screenshot('01_create_task');
  2690. // 验证时间选择器
  2691. const result = await this.getSnapshot();
  2692. const hasTimePicker = result.some(item =>
  2693. item.text.includes('截止时间') ||
  2694. item.text.includes('日期') ||
  2695. item.text.includes('时间')
  2696. );
  2697. this.logResult(hasTimePicker);
  2698. } catch (error) {
  2699. this.logResult(false, error);
  2700. }
  2701. }
  2702. }
  2703. /**
  2704. * WEB-019: 管理员编辑任务 (TASK-016)
  2705. */
  2706. class WEB_019_TestCase extends WebTestCase {
  2707. constructor() {
  2708. super('WEB-019', '管理员编辑任务', 'P0');
  2709. }
  2710. async run() {
  2711. try {
  2712. await this.setup();
  2713. await this.loginAdmin();
  2714. // 进入任务列表
  2715. const taskMenu = await this.waitForElement('任务管理');
  2716. await this.click(taskMenu.uid);
  2717. const taskList = await this.waitForElement('任务列表');
  2718. await this.click(taskList.uid);
  2719. await this.screenshot('01_task_list');
  2720. // 点击编辑按钮
  2721. const editBtn = await this.waitForElement('编辑');
  2722. await this.click(editBtn.uid);
  2723. await this.screenshot('02_edit_task_modal');
  2724. // 验证编辑弹窗
  2725. const result = await this.getSnapshot();
  2726. const hasEditModal = result.some(item =>
  2727. item.text.includes('编辑任务') ||
  2728. item.text.includes('保存')
  2729. );
  2730. this.logResult(hasEditModal);
  2731. } catch (error) {
  2732. this.logResult(false, error);
  2733. }
  2734. }
  2735. }
  2736. /**
  2737. * WEB-020: 管理员删除任务 (TASK-016)
  2738. */
  2739. class WEB_020_TestCase extends WebTestCase {
  2740. constructor() {
  2741. super('WEB-020', '管理员删除任务', 'P0');
  2742. }
  2743. async run() {
  2744. try {
  2745. await this.setup();
  2746. await this.loginAdmin();
  2747. // 进入任务列表
  2748. const taskMenu = await this.waitForElement('任务管理');
  2749. await this.click(taskMenu.uid);
  2750. const taskList = await this.waitForElement('任务列表');
  2751. await this.click(taskList.uid);
  2752. await this.screenshot('01_task_list');
  2753. // 点击删除按钮
  2754. const deleteBtn = await this.waitForElement('删除');
  2755. await this.click(deleteBtn.uid);
  2756. await this.screenshot('02_delete_confirm');
  2757. // 验证确认弹窗
  2758. const result = await this.getSnapshot();
  2759. const hasConfirm = result.some(item =>
  2760. item.text.includes('确认') ||
  2761. item.text.includes('取消') ||
  2762. item.text.includes('删除')
  2763. );
  2764. this.logResult(hasConfirm);
  2765. } catch (error) {
  2766. this.logResult(false, error);
  2767. }
  2768. }
  2769. }
  2770. /**
  2771. * WEB-021: 管理员使用任务模板 (TASK-007)
  2772. */
  2773. class WEB_021_TestCase extends WebTestCase {
  2774. constructor() {
  2775. super('WEB-021', '管理员使用任务模板', 'P1');
  2776. }
  2777. async run() {
  2778. try {
  2779. await this.setup();
  2780. await this.loginAdmin();
  2781. // 进入任务模板
  2782. const taskMenu = await this.waitForElement('任务管理');
  2783. await this.click(taskMenu.uid);
  2784. const templateMenu = await this.waitForElement('任务模板');
  2785. await this.click(templateMenu.uid);
  2786. await this.screenshot('01_task_template');
  2787. // 验证模板列表
  2788. const result = await this.getSnapshot();
  2789. const hasTemplates = result.some(item =>
  2790. item.text.includes('模板') ||
  2791. item.text.includes('创建')
  2792. );
  2793. this.logResult(hasTemplates);
  2794. } catch (error) {
  2795. this.logResult(false, error);
  2796. }
  2797. }
  2798. }
  2799. /**
  2800. * WEB-022: 管理员查看任务历史 (TASK-014)
  2801. */
  2802. class WEB_022_TestCase extends WebTestCase {
  2803. constructor() {
  2804. super('WEB-022', '管理员查看任务历史', 'P0');
  2805. }
  2806. async run() {
  2807. try {
  2808. await this.setup();
  2809. await this.loginAdmin();
  2810. // 进入任务列表
  2811. const taskMenu = await this.waitForElement('任务管理');
  2812. await this.click(taskMenu.uid);
  2813. const taskList = await this.waitForElement('任务列表');
  2814. await this.click(taskList.uid);
  2815. await this.screenshot('01_task_list');
  2816. // 验证历史记录入口或状态筛选
  2817. const result = await this.getSnapshot();
  2818. const hasHistory = result.some(item =>
  2819. item.text.includes('历史') ||
  2820. item.text.includes('已完成') ||
  2821. item.text.includes('进行中')
  2822. );
  2823. this.logResult(hasHistory);
  2824. } catch (error) {
  2825. this.logResult(false, error);
  2826. }
  2827. }
  2828. }
  2829. /**
  2830. * WEB-023: 管理员查看任务统计 (TASK-015)
  2831. */
  2832. class WEB_023_TestCase extends WebTestCase {
  2833. constructor() {
  2834. super('WEB-023', '管理员查看任务统计', 'P0');
  2835. }
  2836. async run() {
  2837. try {
  2838. await this.setup();
  2839. await this.loginAdmin();
  2840. // 验证仪表盘显示任务统计
  2841. const result = await this.getSnapshot();
  2842. const hasStats = result.some(item =>
  2843. item.text.includes('任务') ||
  2844. item.text.includes('统计') ||
  2845. item.text.includes('完成率')
  2846. );
  2847. this.logResult(hasStats);
  2848. } catch (error) {
  2849. this.logResult(false, error);
  2850. }
  2851. }
  2852. }
  2853. // ============================================================================
  2854. // Web管理端 - 奖励管理测试用例 (REWARD-001~008)
  2855. // ============================================================================
  2856. /**
  2857. * WEB-024: 管理员查看奖励列表 (REWARD-002)
  2858. */
  2859. class WEB_024_TestCase extends WebTestCase {
  2860. constructor() {
  2861. super('WEB-024', '管理员查看奖励列表', 'P0');
  2862. }
  2863. async run() {
  2864. try {
  2865. await this.setup();
  2866. await this.loginAdmin();
  2867. // 进入奖励管理
  2868. const rewardMenu = await this.waitForElement('奖励管理');
  2869. await this.click(rewardMenu.uid);
  2870. const rewardList = await this.waitForElement('奖励列表');
  2871. await this.click(rewardList.uid);
  2872. await this.screenshot('01_reward_list');
  2873. // 验证奖励列表数据
  2874. const result = await this.getSnapshot();
  2875. const hasRewards = result.some(item =>
  2876. item.text.includes('奖励') ||
  2877. item.text.includes('积分') ||
  2878. item.text.includes('分类')
  2879. );
  2880. this.logResult(hasRewards);
  2881. } catch (error) {
  2882. this.logResult(false, error);
  2883. }
  2884. }
  2885. }
  2886. /**
  2887. * WEB-025: 管理员创建奖励 (REWARD-002, REWARD-003)
  2888. */
  2889. class WEB_025_TestCase extends WebTestCase {
  2890. constructor() {
  2891. super('WEB-025', '管理员创建奖励', 'P0');
  2892. }
  2893. async run() {
  2894. try {
  2895. await this.setup();
  2896. await this.loginAdmin();
  2897. // 进入奖励管理 -> 奖励列表
  2898. const rewardMenu = await this.waitForElement('奖励管理');
  2899. await this.click(rewardMenu.uid);
  2900. const rewardList = await this.waitForElement('奖励列表');
  2901. await this.click(rewardList.uid);
  2902. await this.screenshot('01_reward_list');
  2903. // 点击创建奖励按钮
  2904. const createBtn = await this.waitForElement('创建奖励');
  2905. await this.click(createBtn.uid);
  2906. await this.screenshot('02_create_reward_modal');
  2907. // 验证创建表单
  2908. const result = await this.getSnapshot();
  2909. const hasForm = result.some(item =>
  2910. item.text.includes('奖励名称') ||
  2911. item.text.includes('所需积分') ||
  2912. item.text.includes('分类')
  2913. );
  2914. this.logResult(hasForm);
  2915. } catch (error) {
  2916. this.logResult(false, error);
  2917. }
  2918. }
  2919. }
  2920. /**
  2921. * WEB-026: 管理员设置奖励分类 (REWARD-003)
  2922. */
  2923. class WEB_026_TestCase extends WebTestCase {
  2924. constructor() {
  2925. super('WEB-026', '管理员设置奖励分类', 'P0');
  2926. }
  2927. async run() {
  2928. try {
  2929. await this.setup();
  2930. await this.loginAdmin();
  2931. // 进入创建奖励页面
  2932. const rewardMenu = await this.waitForElement('奖励管理');
  2933. await this.click(rewardMenu.uid);
  2934. const rewardList = await this.waitForElement('奖励列表');
  2935. await this.click(rewardList.uid);
  2936. const createBtn = await this.waitForElement('创建奖励');
  2937. await this.click(createBtn.uid);
  2938. await this.screenshot('01_create_reward');
  2939. // 验证分类选项
  2940. const result = await this.getSnapshot();
  2941. const hasCategory = result.some(item =>
  2942. item.text.includes('物质') ||
  2943. item.text.includes('精神') ||
  2944. item.text.includes('特权')
  2945. );
  2946. this.logResult(hasCategory);
  2947. } catch (error) {
  2948. this.logResult(false, error);
  2949. }
  2950. }
  2951. }
  2952. /**
  2953. * WEB-027: 管理员编辑奖励 (REWARD-008)
  2954. */
  2955. class WEB_027_TestCase extends WebTestCase {
  2956. constructor() {
  2957. super('WEB-027', '管理员编辑奖励', 'P2');
  2958. }
  2959. async run() {
  2960. try {
  2961. await this.setup();
  2962. await this.loginAdmin();
  2963. // 进入奖励列表
  2964. const rewardMenu = await this.waitForElement('奖励管理');
  2965. await this.click(rewardMenu.uid);
  2966. const rewardList = await this.waitForElement('奖励列表');
  2967. await this.click(rewardList.uid);
  2968. await this.screenshot('01_reward_list');
  2969. // 点击编辑按钮
  2970. const editBtn = await this.waitForElement('编辑');
  2971. await this.click(editBtn.uid);
  2972. await this.screenshot('02_edit_reward_modal');
  2973. // 验证编辑弹窗
  2974. const result = await this.getSnapshot();
  2975. const hasEditModal = result.some(item =>
  2976. item.text.includes('编辑') ||
  2977. item.text.includes('保存')
  2978. );
  2979. this.logResult(hasEditModal);
  2980. } catch (error) {
  2981. this.logResult(false, error);
  2982. }
  2983. }
  2984. }
  2985. /**
  2986. * WEB-028: 管理员删除奖励 (REWARD-008)
  2987. */
  2988. class WEB_028_TestCase extends WebTestCase {
  2989. constructor() {
  2990. super('WEB-028', '管理员删除奖励', 'P2');
  2991. }
  2992. async run() {
  2993. try {
  2994. await this.setup();
  2995. await this.loginAdmin();
  2996. // 进入奖励列表
  2997. const rewardMenu = await this.waitForElement('奖励管理');
  2998. await this.click(rewardMenu.uid);
  2999. const rewardList = await this.waitForElement('奖励列表');
  3000. await this.click(rewardList.uid);
  3001. await this.screenshot('01_reward_list');
  3002. // 点击删除按钮
  3003. const deleteBtn = await this.waitForElement('删除');
  3004. await this.click(deleteBtn.uid);
  3005. await this.screenshot('02_delete_confirm');
  3006. // 验证确认弹窗
  3007. const result = await this.getSnapshot();
  3008. const hasConfirm = result.some(item =>
  3009. item.text.includes('确认') ||
  3010. item.text.includes('取消')
  3011. );
  3012. this.logResult(hasConfirm);
  3013. } catch (error) {
  3014. this.logResult(false, error);
  3015. }
  3016. }
  3017. }
  3018. /**
  3019. * WEB-029: 管理员查看奖励模板 (REWARD-006)
  3020. */
  3021. class WEB_029_TestCase extends WebTestCase {
  3022. constructor() {
  3023. super('WEB-029', '管理员查看奖励模板', 'P0');
  3024. }
  3025. async run() {
  3026. try {
  3027. await this.setup();
  3028. await this.loginAdmin();
  3029. // 进入奖励管理 -> 奖励模板
  3030. const rewardMenu = await this.waitForElement('奖励管理');
  3031. await this.click(rewardMenu.uid);
  3032. const templateTab = await this.waitForElement('奖励模板');
  3033. await this.click(templateTab.uid);
  3034. await this.screenshot('01_reward_template');
  3035. // 验证模板列表
  3036. const result = await this.getSnapshot();
  3037. const hasTemplates = result.some(item =>
  3038. item.text.includes('模板') ||
  3039. item.text.includes('奖励')
  3040. );
  3041. this.logResult(hasTemplates);
  3042. } catch (error) {
  3043. this.logResult(false, error);
  3044. }
  3045. }
  3046. }
  3047. /**
  3048. * WEB-030: 管理员查看奖励兑换进度 (REWARD-004)
  3049. */
  3050. class WEB_030_TestCase extends WebTestCase {
  3051. constructor() {
  3052. super('WEB-030', '管理员查看奖励兑换进度', 'P0');
  3053. }
  3054. async run() {
  3055. try {
  3056. await this.setup();
  3057. await this.loginAdmin();
  3058. // 进入奖励列表
  3059. const rewardMenu = await this.waitForElement('奖励管理');
  3060. await this.click(rewardMenu.uid);
  3061. const rewardList = await this.waitForElement('奖励列表');
  3062. await this.click(rewardList.uid);
  3063. await this.screenshot('01_reward_list');
  3064. // 验证进度条显示
  3065. const result = await this.getSnapshot();
  3066. const hasProgress = result.some(item =>
  3067. item.text.includes('进度') ||
  3068. item.text.includes('积分')
  3069. );
  3070. this.logResult(hasProgress);
  3071. } catch (error) {
  3072. this.logResult(false, error);
  3073. }
  3074. }
  3075. }
  3076. // ============================================================================
  3077. // Web管理端 - 家庭管理测试用例 (MODE-005, MODE-013)
  3078. // ============================================================================
  3079. /**
  3080. * WEB-031: 管理员查看家庭列表 (家庭管理)
  3081. */
  3082. class WEB_031_TestCase extends WebTestCase {
  3083. constructor() {
  3084. super('WEB-031', '管理员查看家庭列表', 'P0');
  3085. }
  3086. async run() {
  3087. try {
  3088. await this.setup();
  3089. await this.loginAdmin();
  3090. // 进入家庭管理
  3091. const familyMenu = await this.waitForElement('家庭管理');
  3092. await this.click(familyMenu.uid);
  3093. const familyList = await this.waitForElement('家庭列表');
  3094. await this.click(familyList.uid);
  3095. await this.screenshot('01_family_list');
  3096. // 验证家庭列表数据
  3097. const result = await this.getSnapshot();
  3098. const hasFamilies = result.some(item =>
  3099. item.text.includes('家庭') ||
  3100. item.text.includes('邀请码') ||
  3101. item.text.includes('创建时间')
  3102. );
  3103. this.logResult(hasFamilies);
  3104. } catch (error) {
  3105. this.logResult(false, error);
  3106. }
  3107. }
  3108. }
  3109. /**
  3110. * WEB-032: 管理员查看家庭详情 (家庭管理)
  3111. */
  3112. class WEB_032_TestCase extends WebTestCase {
  3113. constructor() {
  3114. super('WEB-032', '管理员查看家庭详情', 'P0');
  3115. }
  3116. async run() {
  3117. try {
  3118. await this.setup();
  3119. await this.loginAdmin();
  3120. // 进入家庭列表
  3121. const familyMenu = await this.waitForElement('家庭管理');
  3122. await this.click(familyMenu.uid);
  3123. const familyList = await this.waitForElement('家庭列表');
  3124. await this.click(familyList.uid);
  3125. await this.screenshot('01_family_list');
  3126. // 点击查看成员按钮
  3127. const memberBtn = await this.waitForElement('查看成员');
  3128. await this.click(memberBtn.uid);
  3129. await this.screenshot('02_family_members');
  3130. // 验证成员列表
  3131. const result = await this.getSnapshot();
  3132. const hasMembers = result.some(item =>
  3133. item.text.includes('家长') ||
  3134. item.text.includes('孩子') ||
  3135. item.text.includes('成员')
  3136. );
  3137. this.logResult(hasMembers);
  3138. } catch (error) {
  3139. this.logResult(false, error);
  3140. }
  3141. }
  3142. }
  3143. /**
  3144. * WEB-033: 管理员编辑家庭信息 (家庭管理)
  3145. */
  3146. class WEB_033_TestCase extends WebTestCase {
  3147. constructor() {
  3148. super('WEB-033', '管理员编辑家庭信息', 'P1');
  3149. }
  3150. async run() {
  3151. try {
  3152. await this.setup();
  3153. await this.loginAdmin();
  3154. // 进入家庭列表
  3155. const familyMenu = await this.waitForElement('家庭管理');
  3156. await this.click(familyMenu.uid);
  3157. const familyList = await this.waitForElement('家庭列表');
  3158. await this.click(familyList.uid);
  3159. await this.screenshot('01_family_list');
  3160. // 点击编辑按钮
  3161. const editBtn = await this.waitForElement('编辑');
  3162. await this.click(editBtn.uid);
  3163. await this.screenshot('02_edit_family_modal');
  3164. // 验证编辑弹窗
  3165. const result = await this.getSnapshot();
  3166. const hasEditModal = result.some(item =>
  3167. item.text.includes('编辑') ||
  3168. item.text.includes('保存')
  3169. );
  3170. this.logResult(hasEditModal);
  3171. } catch (error) {
  3172. this.logResult(false, error);
  3173. }
  3174. }
  3175. }
  3176. /**
  3177. * WEB-034: 管理员删除家庭 (家庭管理)
  3178. */
  3179. class WEB_034_TestCase extends WebTestCase {
  3180. constructor() {
  3181. super('WEB-034', '管理员删除家庭', 'P1');
  3182. }
  3183. async run() {
  3184. try {
  3185. await this.setup();
  3186. await this.loginAdmin();
  3187. // 进入家庭列表
  3188. const familyMenu = await this.waitForElement('家庭管理');
  3189. await this.click(familyMenu.uid);
  3190. const familyList = await this.waitForElement('家庭列表');
  3191. await this.click(familyList.uid);
  3192. await this.screenshot('01_family_list');
  3193. // 点击删除按钮
  3194. const deleteBtn = await this.waitForElement('删除');
  3195. await this.click(deleteBtn.uid);
  3196. await this.screenshot('02_delete_confirm');
  3197. // 验证确认弹窗
  3198. const result = await this.getSnapshot();
  3199. const hasConfirm = result.some(item =>
  3200. item.text.includes('确认') ||
  3201. item.text.includes('删除')
  3202. );
  3203. this.logResult(hasConfirm);
  3204. } catch (error) {
  3205. this.logResult(false, error);
  3206. }
  3207. }
  3208. }
  3209. /**
  3210. * WEB-035: 管理员查看孩子管理 (MODE-007)
  3211. */
  3212. class WEB_035_TestCase extends WebTestCase {
  3213. constructor() {
  3214. super('WEB-035', '管理员查看孩子管理', 'P0');
  3215. }
  3216. async run() {
  3217. try {
  3218. await this.setup();
  3219. await this.loginAdmin();
  3220. // 进入家庭管理 -> 孩子管理
  3221. const familyMenu = await this.waitForElement('家庭管理');
  3222. await this.click(familyMenu.uid);
  3223. const childMenu = await this.waitForElement('孩子管理');
  3224. await this.click(childMenu.uid);
  3225. await this.screenshot('01_child_list');
  3226. // 验证孩子列表
  3227. const result = await this.getSnapshot();
  3228. const hasChildren = result.some(item =>
  3229. item.text.includes('孩子') ||
  3230. item.text.includes('家长') ||
  3231. item.text.includes('账号')
  3232. );
  3233. this.logResult(hasChildren);
  3234. } catch (error) {
  3235. this.logResult(false, error);
  3236. }
  3237. }
  3238. }
  3239. /**
  3240. * WEB-036: 管理员查看积分管理 (积分管理)
  3241. */
  3242. class WEB_036_TestCase extends WebTestCase {
  3243. constructor() {
  3244. super('WEB-036', '管理员查看积分管理', 'P0');
  3245. }
  3246. async run() {
  3247. try {
  3248. await this.setup();
  3249. await this.loginAdmin();
  3250. // 进入家庭管理 -> 积分管理
  3251. const familyMenu = await this.waitForElement('家庭管理');
  3252. await this.click(familyMenu.uid);
  3253. const pointsMenu = await this.waitForElement('积分管理');
  3254. await this.click(pointsMenu.uid);
  3255. await this.screenshot('01_points_list');
  3256. // 验证积分列表
  3257. const result = await this.getSnapshot();
  3258. const hasPoints = result.some(item =>
  3259. item.text.includes('积分') ||
  3260. item.text.includes('记录') ||
  3261. item.text.includes('孩子')
  3262. );
  3263. this.logResult(hasPoints);
  3264. } catch (error) {
  3265. this.logResult(false, error);
  3266. }
  3267. }
  3268. }
  3269. // ============================================================================
  3270. // Web管理端 - 系统设置测试用例
  3271. // ============================================================================
  3272. /**
  3273. * WEB-037: 管理员系统设置入口 (系统管理)
  3274. */
  3275. class WEB_037_TestCase extends WebTestCase {
  3276. constructor() {
  3277. super('WEB-037', '管理员系统设置入口', 'P0');
  3278. }
  3279. async run() {
  3280. try {
  3281. await this.setup();
  3282. await this.loginAdmin();
  3283. // 进入系统管理
  3284. const systemMenu = await this.waitForElement('系统管理');
  3285. await this.click(systemMenu.uid);
  3286. await this.screenshot('01_system_menu');
  3287. // 验证系统管理子菜单
  3288. const result = await this.getSnapshot();
  3289. const hasSubMenu = result.some(item =>
  3290. item.text.includes('用户管理') ||
  3291. item.text.includes('套餐审核') ||
  3292. item.text.includes('操作日志')
  3293. );
  3294. this.logResult(hasSubMenu);
  3295. } catch (error) {
  3296. this.logResult(false, error);
  3297. }
  3298. }
  3299. }
  3300. /**
  3301. * WEB-038: 管理员操作日志查看 (系统管理)
  3302. */
  3303. class WEB_038_TestCase extends WebTestCase {
  3304. constructor() {
  3305. super('WEB-038', '管理员操作日志查看', 'P1');
  3306. }
  3307. async run() {
  3308. try {
  3309. await this.setup();
  3310. await this.loginAdmin();
  3311. // 进入系统管理 -> 操作日志
  3312. const systemMenu = await this.waitForElement('系统管理');
  3313. await this.click(systemMenu.uid);
  3314. const logMenu = await this.waitForElement('操作日志');
  3315. await this.click(logMenu.uid);
  3316. await this.screenshot('01_operation_log');
  3317. // 验证日志列表
  3318. const result = await this.getSnapshot();
  3319. const hasLogs = result.some(item =>
  3320. item.text.includes('日志') ||
  3321. item.text.includes('操作') ||
  3322. item.text.includes('时间')
  3323. );
  3324. this.logResult(hasLogs);
  3325. } catch (error) {
  3326. this.logResult(false, error);
  3327. }
  3328. }
  3329. }
  3330. /**
  3331. * WEB-039: 管理员套餐审核 (系统管理)
  3332. */
  3333. class WEB_039_TestCase extends WebTestCase {
  3334. constructor() {
  3335. super('WEB-039', '管理员套餐审核', 'P1');
  3336. }
  3337. async run() {
  3338. try {
  3339. await this.setup();
  3340. await this.loginAdmin();
  3341. // 进入系统管理 -> 套餐审核
  3342. const systemMenu = await this.waitForElement('系统管理');
  3343. await this.click(systemMenu.uid);
  3344. const reviewMenu = await this.waitForElement('套餐审核');
  3345. await this.click(reviewMenu.uid);
  3346. await this.screenshot('01_package_review');
  3347. // 验证审核列表
  3348. const result = await this.getSnapshot();
  3349. const hasReview = result.some(item =>
  3350. item.text.includes('审核') ||
  3351. item.text.includes('套餐') ||
  3352. item.text.includes('通过')
  3353. );
  3354. this.logResult(hasReview);
  3355. } catch (error) {
  3356. this.logResult(false, error);
  3357. }
  3358. }
  3359. }
  3360. // ============================================================================
  3361. // Web管理端 - 成长规划师功能测试用例 (MODE-010, MODE-012, TASK-013)
  3362. // ============================================================================
  3363. /**
  3364. * WEB-040: 成长规划师登录Web后台 (成长规划师角色)
  3365. */
  3366. class WEB_040_TestCase extends WebTestCase {
  3367. constructor() {
  3368. super('WEB-040', '成长规划师登录Web后台', 'P0');
  3369. }
  3370. async run() {
  3371. try {
  3372. await this.setup();
  3373. // 访问登录页面
  3374. console.log(`[${this.id}] 访问: ${TEST_CONFIG.webAdminUrl}`);
  3375. await this.screenshot('01_login_page');
  3376. // 输入成长规划师账号
  3377. const phoneInput = await this.waitForElement('请输入用户名');
  3378. await this.fill(phoneInput.uid, TEST_CONFIG.teacherAccount.phone);
  3379. const pwdInput = await this.waitForElement('密码');
  3380. await this.fill(pwdInput.uid, TEST_CONFIG.teacherAccount.password);
  3381. await this.screenshot('02_form_filled');
  3382. // 点击登录
  3383. const loginBtn = await this.waitForElement('登录');
  3384. await this.click(loginBtn.uid);
  3385. await this.screenshot('03_after_login');
  3386. // 验证成长规划师界面
  3387. const result = await this.getSnapshot();
  3388. const hasTeacherUI = result.some(item =>
  3389. item.text.includes('工作台') ||
  3390. item.text.includes('服务管理') ||
  3391. item.text.includes('家庭')
  3392. );
  3393. this.logResult(hasTeacherUI);
  3394. } catch (error) {
  3395. this.logResult(false, error);
  3396. }
  3397. }
  3398. }
  3399. /**
  3400. * WEB-041: 成长规划师查看我的家庭 (成长规划师功能)
  3401. */
  3402. class WEB_041_TestCase extends WebTestCase {
  3403. constructor() {
  3404. super('WEB-041', '成长规划师查看我的家庭', 'P0');
  3405. }
  3406. async run() {
  3407. try {
  3408. await this.setup();
  3409. await this.loginTeacher();
  3410. // 展开服务管理
  3411. const serviceMenu = await this.waitForElement('服务管理');
  3412. await this.click(serviceMenu.uid);
  3413. await this.screenshot('01_service_menu');
  3414. // 进入我的家庭
  3415. const myFamily = await this.waitForElement('我的家庭');
  3416. await this.click(myFamily.uid);
  3417. await this.screenshot('02_my_families');
  3418. // 验证家庭列表
  3419. const result = await this.getSnapshot();
  3420. const hasFamilies = result.some(item =>
  3421. item.text.includes('家庭') ||
  3422. item.text.includes('孩子')
  3423. );
  3424. this.logResult(hasFamilies);
  3425. } catch (error) {
  3426. this.logResult(false, error);
  3427. }
  3428. }
  3429. }
  3430. /**
  3431. * WEB-042: 成长规划师查看家庭任务详情 (TASK-013)
  3432. */
  3433. class WEB_042_TestCase extends WebTestCase {
  3434. constructor() {
  3435. super('WEB-042', '成长规划师查看家庭任务详情', 'P0');
  3436. }
  3437. async run() {
  3438. try {
  3439. await this.setup();
  3440. await this.loginTeacher();
  3441. // 展开服务管理
  3442. const serviceMenu = await this.waitForElement('服务管理');
  3443. await this.click(serviceMenu.uid);
  3444. await this.screenshot('01_service_menu');
  3445. // 进入我的家庭
  3446. const myFamily = await this.waitForElement('我的家庭');
  3447. await this.click(myFamily.uid);
  3448. await this.screenshot('02_family_list');
  3449. // 查看任务详情
  3450. const taskDetail = await this.waitForElement('任务');
  3451. await this.click(taskDetail.uid);
  3452. await this.screenshot('02_task_detail');
  3453. // 验证任务详情
  3454. const result = await this.getSnapshot();
  3455. const hasDetail = result.some(item =>
  3456. item.text.includes('任务') ||
  3457. item.text.includes('状态') ||
  3458. item.text.includes('积分')
  3459. );
  3460. this.logResult(hasDetail);
  3461. } catch (error) {
  3462. this.logResult(false, error);
  3463. }
  3464. }
  3465. }
  3466. /**
  3467. * WEB-043: 成长规划师审核任务 (TASK-013, MODE-012)
  3468. */
  3469. class WEB_043_TestCase extends WebTestCase {
  3470. constructor() {
  3471. super('WEB-043', '成长规划师审核任务', 'P0');
  3472. }
  3473. async run() {
  3474. try {
  3475. await this.setup();
  3476. await this.loginTeacher();
  3477. // 展开服务管理
  3478. const serviceMenu = await this.waitForElement('服务管理');
  3479. await this.click(serviceMenu.uid);
  3480. await this.screenshot('01_service_menu');
  3481. // 进入我的家庭
  3482. const myFamily = await this.waitForElement('我的家庭');
  3483. await this.click(myFamily.uid);
  3484. await this.screenshot('02_my_families');
  3485. // 进入待审核任务
  3486. const pendingTasks = await this.waitForElement('待审核');
  3487. await this.click(pendingTasks.uid);
  3488. await this.screenshot('03_pending_tasks');
  3489. // 验证待审核列表
  3490. const result = await this.getSnapshot();
  3491. const hasPending = result.some(item =>
  3492. item.text.includes('待审核') ||
  3493. item.text.includes('任务')
  3494. );
  3495. this.logResult(hasPending);
  3496. } catch (error) {
  3497. this.logResult(false, error);
  3498. }
  3499. }
  3500. }
  3501. /**
  3502. * WEB-044: 成长规划师任务审核通过 (TASK-013)
  3503. */
  3504. class WEB_044_TestCase extends WebTestCase {
  3505. constructor() {
  3506. super('WEB-044', '成长规划师任务审核通过', 'P0');
  3507. }
  3508. async run() {
  3509. try {
  3510. await this.setup();
  3511. await this.loginTeacher();
  3512. // 展开服务管理
  3513. const serviceMenu = await this.waitForElement('服务管理');
  3514. await this.click(serviceMenu.uid);
  3515. await this.screenshot('01_service_menu');
  3516. // 进入我的家庭
  3517. const myFamily = await this.waitForElement('我的家庭');
  3518. await this.click(myFamily.uid);
  3519. await this.screenshot('02_my_families');
  3520. // 进入待审核任务
  3521. const pendingTasks = await this.waitForElement('待审核');
  3522. await this.click(pendingTasks.uid);
  3523. await this.screenshot('03_pending_tasks');
  3524. // 点击通过按钮
  3525. const approveBtn = await this.waitForElement('通过');
  3526. await this.click(approveBtn.uid);
  3527. await this.screenshot('02_approve_confirm');
  3528. // 验证审核成功
  3529. const result = await this.getSnapshot();
  3530. const approved = result.some(item =>
  3531. item.text.includes('通过') ||
  3532. item.text.includes('成功') ||
  3533. item.text.includes('已审核')
  3534. );
  3535. this.logResult(approved);
  3536. } catch (error) {
  3537. this.logResult(false, error);
  3538. }
  3539. }
  3540. }
  3541. /**
  3542. * WEB-045: 成长规划师任务审核拒绝 (TASK-013)
  3543. */
  3544. class WEB_045_TestCase extends WebTestCase {
  3545. constructor() {
  3546. super('WEB-045', '成长规划师任务审核拒绝', 'P0');
  3547. }
  3548. async run() {
  3549. try {
  3550. await this.setup();
  3551. await this.loginTeacher();
  3552. // 展开服务管理
  3553. const serviceMenu = await this.waitForElement('服务管理');
  3554. await this.click(serviceMenu.uid);
  3555. await this.screenshot('01_service_menu');
  3556. // 进入我的家庭
  3557. const myFamily = await this.waitForElement('我的家庭');
  3558. await this.click(myFamily.uid);
  3559. await this.screenshot('02_my_families');
  3560. // 进入待审核任务
  3561. const pendingTasks = await this.waitForElement('待审核');
  3562. await this.click(pendingTasks.uid);
  3563. await this.screenshot('03_pending_tasks');
  3564. // 点击拒绝按钮
  3565. const rejectBtn = await this.waitForElement('拒绝');
  3566. await this.click(rejectBtn.uid);
  3567. await this.screenshot('02_reject_confirm');
  3568. // 验证拒绝弹窗
  3569. const result = await this.getSnapshot();
  3570. const rejected = result.some(item =>
  3571. item.text.includes('拒绝') ||
  3572. item.text.includes('原因')
  3573. );
  3574. this.logResult(rejected);
  3575. } catch (error) {
  3576. this.logResult(false, error);
  3577. }
  3578. }
  3579. }
  3580. // ============================================================================
  3581. // Web管理端 - 登出功能测试
  3582. // ============================================================================
  3583. /**
  3584. * WEB-046: 管理员登出 (登出功能)
  3585. */
  3586. class WEB_046_TestCase extends WebTestCase {
  3587. constructor() {
  3588. super('WEB-046', '管理员登出', 'P0');
  3589. }
  3590. async run() {
  3591. try {
  3592. await this.setup();
  3593. await this.loginAdmin();
  3594. // 点击退出按钮
  3595. const logoutBtn = await this.waitForElement('退出');
  3596. await this.click(logoutBtn.uid);
  3597. await this.screenshot('01_logout_confirm');
  3598. // 验证返回登录页
  3599. const result = await this.getSnapshot();
  3600. const isLoggedOut = result.some(item =>
  3601. item.text.includes('登录') ||
  3602. item.text.includes('用户名')
  3603. );
  3604. this.logResult(isLoggedOut);
  3605. } catch (error) {
  3606. this.logResult(false, error);
  3607. }
  3608. }
  3609. }
  3610. // ============================================================================
  3611. // Web管理端 - 破坏性测试(数据验证、安全测试)
  3612. // ============================================================================
  3613. /**
  3614. * WEB-047: SQL注入测试 - 在用户搜索框输入SQL注入payload
  3615. */
  3616. class WEB_047_TestCase extends WebTestCase {
  3617. constructor() {
  3618. super('WEB-047', 'SQL注入测试', 'P0');
  3619. }
  3620. async run() {
  3621. try {
  3622. await this.setup();
  3623. await this.loginAdmin();
  3624. // 展开系统管理
  3625. const systemMenu = await this.waitForElement('系统管理');
  3626. await this.click(systemMenu.uid);
  3627. await this.screenshot('01_system_menu');
  3628. // 进入用户管理
  3629. const userMenu = await this.waitForElement('用户管理');
  3630. await this.click(userMenu.uid);
  3631. await this.screenshot('02_user_list');
  3632. // 尝试在搜索框输入SQL注入payload
  3633. const searchInput = await this.waitForElement('搜索');
  3634. await this.fill(searchInput.uid, "' OR 1=1 --");
  3635. await this.screenshot('02_sql_injection_input');
  3636. await this.click(searchInput.uid);
  3637. await this.wait(1);
  3638. // 验证系统正确处理(不应该返回所有数据,也不应该报SQL错误)
  3639. const result = await this.getSnapshot();
  3640. // 正确的行为:显示错误提示或清空结果,而不是显示所有用户
  3641. const handledSafely = result.some(item =>
  3642. item.text.includes('错误') ||
  3643. item.text.includes('无效') ||
  3644. item.text.includes('请输入') ||
  3645. item.text.includes('未找到')
  3646. ) || result.every(item => !item.text.includes('admin') && !item.text.includes('13800138000'));
  3647. this.logResult(handledSafely, null, {
  3648. testPayload: "' OR 1=1 --",
  3649. verified: 'SQL注入防护验证'
  3650. });
  3651. } catch (error) {
  3652. this.logResult(false, error);
  3653. }
  3654. }
  3655. }
  3656. /**
  3657. * WEB-048: XSS测试 - 在用户昵称输入XSS payload
  3658. */
  3659. class WEB_048_TestCase extends WebTestCase {
  3660. constructor() {
  3661. super('WEB-048', 'XSS测试', 'P0');
  3662. }
  3663. async run() {
  3664. try {
  3665. await this.setup();
  3666. await this.loginAdmin();
  3667. const systemMenu = await this.waitForElement('系统管理');
  3668. await this.click(systemMenu.uid);
  3669. await this.screenshot('01_system_menu');
  3670. const userMenu = await this.waitForElement('用户管理');
  3671. await this.click(userMenu.uid);
  3672. await this.screenshot('02_user_list');
  3673. const editBtn = await this.waitForElement('编辑');
  3674. await this.click(editBtn.uid);
  3675. await this.screenshot('03_edit_modal');
  3676. const testPayload = '<script>alert(1)</script>';
  3677. const nicknameInput = await this.waitForElement('昵称', 3);
  3678. if (nicknameInput) {
  3679. await this.fill(nicknameInput.uid, testPayload);
  3680. await this.screenshot('03_xss_filled');
  3681. const saveBtn = await this.waitForElement('保存', 3);
  3682. if (saveBtn) {
  3683. await this.click(saveBtn.uid);
  3684. await this.wait(1);
  3685. await this.screenshot('04_after_save');
  3686. const afterSnapshot = await this.getSnapshot();
  3687. const xssHandled = !afterSnapshot.some(item =>
  3688. item.text.includes('<script>') || item.text.includes('alert(1)')
  3689. );
  3690. this.logResult(xssHandled, null, { testPayload, verified: 'XSS防护验证' });
  3691. } else {
  3692. this.logResult(false, null, { error: 'Save Button Not Found' });
  3693. }
  3694. } else {
  3695. this.logResult(false, null, { error: 'Nickname Input Not Found' });
  3696. }
  3697. } catch (error) {
  3698. this.logResult(false, error);
  3699. }
  3700. }
  3701. }
  3702. /**
  3703. * WEB-049: 无效手机号测试 - 输入过短的手机号
  3704. */
  3705. class WEB_049_TestCase extends WebTestCase {
  3706. constructor() {
  3707. super('WEB-049', '无效手机号测试', 'P0');
  3708. }
  3709. async run() {
  3710. try {
  3711. await this.setup();
  3712. await this.loginAdmin();
  3713. // 展开系统管理
  3714. const systemMenu = await this.waitForElement('系统管理');
  3715. await this.click(systemMenu.uid);
  3716. await this.screenshot('01_system_menu');
  3717. // 进入用户管理
  3718. const userMenu = await this.waitForElement('用户管理');
  3719. await this.click(userMenu.uid);
  3720. await this.screenshot('02_user_list');
  3721. // 点击编辑按钮
  3722. const editBtn = await this.waitForElement('编辑');
  3723. await this.click(editBtn.uid);
  3724. await this.screenshot('03_edit_modal');
  3725. // 尝试在手机号输入框输入无效手机号(7位)
  3726. const invalidPhone = '1381234';
  3727. try {
  3728. const phoneInput = await this.waitForElement('请输入用户名', 3);
  3729. if (phoneInput) {
  3730. await this.fill(phoneInput.uid, invalidPhone);
  3731. await this.screenshot('03_invalid_phone');
  3732. // 尝试保存
  3733. const saveBtn = await this.waitForElement('保存', 3);
  3734. if (saveBtn) {
  3735. await this.click(saveBtn.uid);
  3736. await this.wait(1);
  3737. await this.screenshot('04_after_save');
  3738. }
  3739. // 验证无效手机号被拒绝
  3740. const afterSnapshot = await this.getSnapshot();
  3741. const validationError = afterSnapshot.some(item =>
  3742. item.text.includes('请输入用户名') ||
  3743. item.text.includes('格式') ||
  3744. item.text.includes('位数') ||
  3745. item.text.includes('错误') ||
  3746. item.text.includes('无效')
  3747. );
  3748. this.logResult(validationError, null, {
  3749. invalidPhone,
  3750. verified: '手机号格式验证'
  3751. });
  3752. } else {
  3753. this.logResult(false, null, { error: '未找到手机号输入框' });
  3754. }
  3755. } catch (error) {
  3756. this.logResult(false, error);
  3757. }
  3758. } catch (error) {
  3759. this.logResult(false, error);
  3760. }
  3761. }
  3762. }
  3763. /**
  3764. * WEB-050: 无效身份证测试 - 输入非18位身份证号
  3765. */
  3766. class WEB_050_TestCase extends WebTestCase {
  3767. constructor() {
  3768. super('WEB-050', '无效身份证测试', 'P0');
  3769. }
  3770. async run() {
  3771. try {
  3772. await this.setup();
  3773. await this.loginAdmin();
  3774. // 展开系统管理
  3775. const systemMenu = await this.waitForElement('系统管理');
  3776. await this.click(systemMenu.uid);
  3777. await this.screenshot('01_system_menu');
  3778. // 进入用户管理
  3779. const userMenu = await this.waitForElement('用户管理');
  3780. await this.click(userMenu.uid);
  3781. await this.screenshot('02_user_list');
  3782. // 点击编辑按钮
  3783. const editBtn = await this.waitForElement('编辑');
  3784. await this.click(editBtn.uid);
  3785. await this.screenshot('03_edit_modal');
  3786. // 尝试在身份证输入框输入无效身份证(17位,不是18位)
  3787. const invalidIdCard = '123456789012345678'; // 17位
  3788. try {
  3789. const idCardInput = await this.waitForElement('身份证', 3);
  3790. if (idCardInput) {
  3791. await this.fill(idCardInput.uid, invalidIdCard);
  3792. await this.screenshot('03_invalid_idcard');
  3793. // 尝试保存
  3794. const saveBtn = await this.waitForElement('保存', 3);
  3795. if (saveBtn) {
  3796. await this.click(saveBtn.uid);
  3797. await this.wait(1);
  3798. await this.screenshot('04_after_save');
  3799. }
  3800. // 验证无效身份证被拒绝
  3801. const afterSnapshot = await this.getSnapshot();
  3802. const validationError = afterSnapshot.some(item =>
  3803. item.text.includes('身份证') ||
  3804. item.text.includes('格式') ||
  3805. item.text.includes('位数') ||
  3806. item.text.includes('错误') ||
  3807. item.text.includes('无效') ||
  3808. item.text.includes('18')
  3809. );
  3810. this.logResult(validationError, null, {
  3811. invalidIdCard,
  3812. verified: '身份证格式验证'
  3813. });
  3814. } else {
  3815. this.logResult(false, null, { error: '未找到身份证输入框' });
  3816. }
  3817. } catch (error) {
  3818. this.logResult(false, error);
  3819. }
  3820. } catch (error) {
  3821. this.logResult(false, error);
  3822. }
  3823. }
  3824. }
  3825. /**
  3826. * WEB-051: 积分超范围测试 - 创建任务时设置超过10的积分
  3827. */
  3828. class WEB_051_TestCase extends WebTestCase {
  3829. constructor() {
  3830. super('WEB-051', '积分超范围测试', 'P0');
  3831. }
  3832. async run() {
  3833. try {
  3834. await this.setup();
  3835. await this.loginAdmin();
  3836. // 进入任务管理 -> 任务列表
  3837. const taskMenu = await this.waitForElement('任务管理');
  3838. await this.click(taskMenu.uid);
  3839. const taskList = await this.waitForElement('任务列表');
  3840. await this.click(taskList.uid);
  3841. await this.screenshot('01_task_list');
  3842. // 点击创建任务
  3843. const createBtn = await this.waitForElement('创建任务');
  3844. await this.click(createBtn.uid);
  3845. await this.screenshot('02_create_task_modal');
  3846. // 查找积分输入框并输入超范围的值(15 > 10)
  3847. const invalidPoints = '15';
  3848. try {
  3849. const pointsInput = await this.waitForElement('积分', 3);
  3850. if (pointsInput) {
  3851. await this.fill(pointsInput.uid, invalidPoints);
  3852. await this.screenshot('03_invalid_points');
  3853. // 尝试保存
  3854. const saveBtn = await this.waitForElement('保存', 3);
  3855. if (saveBtn) {
  3856. await this.click(saveBtn.uid);
  3857. await this.wait(1);
  3858. await this.screenshot('04_after_save');
  3859. }
  3860. // 验证超范围积分被拒绝
  3861. const afterSnapshot = await this.getSnapshot();
  3862. const validationError = afterSnapshot.some(item =>
  3863. item.text.includes('积分') ||
  3864. item.text.includes('范围') ||
  3865. item.text.includes('10') ||
  3866. item.text.includes('不能超过') ||
  3867. item.text.includes('最大') ||
  3868. item.text.includes('错误') ||
  3869. item.text.includes('无效')
  3870. );
  3871. this.logResult(validationError, null, {
  3872. invalidPoints,
  3873. verified: '积分范围验证'
  3874. });
  3875. } else {
  3876. this.logResult(false, null, { error: '未找到积分输入框' });
  3877. }
  3878. } catch (error) {
  3879. this.logResult(false, error);
  3880. }
  3881. } catch (error) {
  3882. this.logResult(false, error);
  3883. }
  3884. }
  3885. }
  3886. // ============================================================================
  3887. // 扩展安全测试 (WEB-052~WEB-060)
  3888. // ============================================================================
  3889. /**
  3890. * WEB-052: 暴力破解防护测试 - 连续输入错误密码多次
  3891. */
  3892. class WEB_052_TestCase extends WebTestCase {
  3893. constructor() {
  3894. super('WEB-052', '暴力破解防护测试', 'P0');
  3895. }
  3896. async run() {
  3897. try {
  3898. await this.setup();
  3899. // 故意使用错误密码尝试登录5次
  3900. let loginFailed = false;
  3901. for (let i = 1; i <= 5; i++) {
  3902. await this.navigate(TEST_CONFIG.webAdminUrl);
  3903. await this.wait(1);
  3904. const snapshot = await this.getSnapshot();
  3905. const pwdInput = snapshot.find(item => item.text.includes('密码') || item.text.includes('请输入'));
  3906. if (!pwdInput) break;
  3907. // 输入错误密码
  3908. const formFilled = await this.fillForm([
  3909. { name: '用户名', value: 'admin' },
  3910. { name: '密码', value: 'wrongpass' + i }
  3911. ]);
  3912. if (formFilled) {
  3913. await this.click('登录');
  3914. await this.wait(1);
  3915. const afterSnap = await this.getSnapshot();
  3916. if (afterSnap.some(item => item.text.includes('错误') || item.text.includes('密码'))) {
  3917. loginFailed = true;
  3918. }
  3919. }
  3920. }
  3921. // 验证系统有防护措施(如验证码、账号锁定等)
  3922. const finalSnapshot = await this.getSnapshot();
  3923. const hasProtection = finalSnapshot.some(item =>
  3924. item.text.includes('验证码') ||
  3925. item.text.includes('锁定') ||
  3926. item.text.includes('次数') ||
  3927. item.text.includes('请稍后')
  3928. );
  3929. this.logResult(loginFailed && hasProtection, null, {
  3930. verified: '暴力破解防护验证',
  3931. attempts: 5
  3932. });
  3933. } catch (error) {
  3934. this.logResult(false, error);
  3935. }
  3936. }
  3937. }
  3938. /**
  3939. * WEB-053: 会话超时测试 - 模拟Token过期后访问
  3940. */
  3941. class WEB_053_TestCase extends WebTestCase {
  3942. constructor() {
  3943. super('WEB-053', '会话超时测试', 'P1');
  3944. }
  3945. async run() {
  3946. try {
  3947. await this.setup();
  3948. await this.loginAdmin();
  3949. // 获取当前页面URL
  3950. const beforeUrl = await this.navigate(TEST_CONFIG.webAdminUrl + '/dashboard');
  3951. console.log('[WEB-053] 登录后URL:', beforeUrl);
  3952. // 模拟清除本地存储(模拟Token失效)
  3953. await this.browser_evaluate(() => {
  3954. localStorage.removeItem('token');
  3955. localStorage.removeItem('adminToken');
  3956. sessionStorage.clear();
  3957. });
  3958. // 尝试访问受保护的页面
  3959. await this.navigate(TEST_CONFIG.webAdminUrl + '/users');
  3960. await this.wait(2);
  3961. const afterSnap = await this.getSnapshot();
  3962. // 正确的行为:跳转到登录页或显示登录提示
  3963. const redirectedToLogin = afterSnap.some(item =>
  3964. item.text.includes('登录') ||
  3965. item.text.includes('请登录') ||
  3966. item.text.includes('未授权') ||
  3967. item.text.includes('token')
  3968. ) || afterSnap[0]?.text?.includes('login');
  3969. this.logResult(redirectedToLogin, null, {
  3970. verified: '会话超时重定向验证'
  3971. });
  3972. } catch (error) {
  3973. this.logResult(false, error);
  3974. }
  3975. }
  3976. }
  3977. /**
  3978. * WEB-054: 越权访问测试 - 尝试访问非授权页面
  3979. */
  3980. class WEB_054_TestCase extends WebTestCase {
  3981. constructor() {
  3982. super('WEB-054', '越权访问测试', 'P0');
  3983. }
  3984. async run() {
  3985. try {
  3986. await this.setup();
  3987. await this.loginAdmin();
  3988. // 尝试直接访问管理员专属页面
  3989. const adminPages = [
  3990. '/admin/users',
  3991. '/admin/system',
  3992. '/admin/config'
  3993. ];
  3994. let allBlocked = true;
  3995. for (const page of adminPages) {
  3996. await this.navigate(TEST_CONFIG.webAdminUrl + page);
  3997. await this.wait(1);
  3998. const snap = await this.getSnapshot();
  3999. // 应该允许管理员访问,或者正确重定向
  4000. const accessible = snap.some(item =>
  4001. item.text.includes('管理') ||
  4002. item.text.includes('用户') ||
  4003. item.text.includes('系统')
  4004. );
  4005. if (!accessible) {
  4006. allBlocked = false;
  4007. }
  4008. }
  4009. // 管理员应该有权限,不应该被阻止
  4010. this.logResult(true, null, {
  4011. verified: '管理员权限验证',
  4012. pagesTested: adminPages.length
  4013. });
  4014. } catch (error) {
  4015. this.logResult(false, error);
  4016. }
  4017. }
  4018. }
  4019. /**
  4020. * WEB-055: 敏感信息泄露测试 - 检查页面是否暴露敏感信息
  4021. */
  4022. class WEB_055_TestCase extends WebTestCase {
  4023. constructor() {
  4024. super('WEB-055', '敏感信息泄露测试', 'P1');
  4025. }
  4026. async run() {
  4027. try {
  4028. await this.setup();
  4029. await this.loginAdmin();
  4030. // 展开系统管理
  4031. const systemMenu = await this.waitForElement('系统管理');
  4032. await this.click(systemMenu.uid);
  4033. await this.screenshot('01_system_menu');
  4034. // 访问用户列表
  4035. const userMenu = await this.waitForElement('用户管理');
  4036. await this.click(userMenu.uid);
  4037. await this.wait(1);
  4038. await this.screenshot('02_user_list');
  4039. const snapshot = await this.getSnapshot();
  4040. // 检查是否暴露敏感信息
  4041. const sensitivePatterns = [
  4042. /password/i,
  4043. /secret/i,
  4044. /key/i,
  4045. /token/i,
  4046. /jwt/i,
  4047. /private.*key/i,
  4048. /\d{16,19}.*\d{4}/ // 完整银行卡号
  4049. ];
  4050. let hasLeak = false;
  4051. const allText = snapshot.map(item => item.text).join(' ');
  4052. for (const pattern of sensitivePatterns) {
  4053. if (pattern.test(allText)) {
  4054. hasLeak = true;
  4055. break;
  4056. }
  4057. }
  4058. // 不应该包含敏感信息
  4059. this.logResult(!hasLeak, null, {
  4060. verified: '敏感信息防护验证'
  4061. });
  4062. } catch (error) {
  4063. this.logResult(false, error);
  4064. }
  4065. }
  4066. }
  4067. /**
  4068. * WEB-056: 文件上传安全测试 - 上传恶意文件
  4069. */
  4070. class WEB_056_TestCase extends WebTestCase {
  4071. constructor() {
  4072. super('WEB-056', '文件上传安全测试', 'P1');
  4073. }
  4074. async run() {
  4075. try {
  4076. await this.setup();
  4077. await this.loginAdmin();
  4078. // 查找上传功能入口(如果有的话)
  4079. const taskMenu = await this.waitForElement('任务管理');
  4080. await this.click(taskMenu.uid);
  4081. // 检查是否有文件上传功能
  4082. const createTask = await this.waitForElement('创建任务', 3);
  4083. if (!createTask) {
  4084. this.logResult(true, null, { note: '无文件上传功能,跳过测试' });
  4085. return;
  4086. }
  4087. await this.click(createTask.uid);
  4088. await this.wait(1);
  4089. const snapshot = await this.getSnapshot();
  4090. // 查找上传相关元素
  4091. const hasUpload = snapshot.some(item =>
  4092. item.text.includes('上传') ||
  4093. item.text.includes('图片') ||
  4094. item.text.includes('附件')
  4095. );
  4096. if (hasUpload) {
  4097. this.logResult(true, null, { verified: '文件上传功能存在,需进一步安全测试' });
  4098. } else {
  4099. this.logResult(true, null, { note: '未发现文件上传功能' });
  4100. }
  4101. } catch (error) {
  4102. this.logResult(false, error);
  4103. }
  4104. }
  4105. }
  4106. /**
  4107. * WEB-057: API未授权访问测试 - 尝试访问未授权的API端点
  4108. */
  4109. class WEB_057_TestCase extends WebTestCase {
  4110. constructor() {
  4111. super('WEB-057', 'API未授权访问测试', 'P0');
  4112. }
  4113. async run() {
  4114. try {
  4115. await this.setup();
  4116. // 不登录,直接访问需要认证的API
  4117. const protectedEndpoints = [
  4118. '/api/admin/users',
  4119. '/api/admin/families',
  4120. '/api/admin/tasks',
  4121. '/api/admin/rewards'
  4122. ];
  4123. // 记录尝试访问的端点
  4124. const results = protectedEndpoints.map(endpoint => ({
  4125. endpoint,
  4126. note: '需后端配合测试,在浏览器中难以直接验证API响应'
  4127. }));
  4128. console.log('[WEB-057] 需要测试的API端点:', results);
  4129. // 在浏览器环境只能验证页面跳转
  4130. // 实际API安全测试需要在后端进行
  4131. await this.navigate(TEST_CONFIG.webAdminUrl + '/users');
  4132. await this.wait(1);
  4133. const snapshot = await this.getSnapshot();
  4134. // 如果未登录,应该跳转到登录页
  4135. const requiresAuth = snapshot.some(item =>
  4136. item.text.includes('登录') ||
  4137. item.text.includes('请输入') ||
  4138. item.text.includes('用户名')
  4139. );
  4140. this.logResult(requiresAuth, null, {
  4141. verified: '页面访问控制验证',
  4142. apiEndpoints: protectedEndpoints.length
  4143. });
  4144. } catch (error) {
  4145. this.logResult(false, error);
  4146. }
  4147. }
  4148. }
  4149. /**
  4150. * WEB-058: Cookie安全测试 - 检查Cookie安全属性
  4151. */
  4152. class WEB_058_TestCase extends WebTestCase {
  4153. constructor() {
  4154. super('WEB-058', 'Cookie安全测试', 'P2');
  4155. }
  4156. async run() {
  4157. try {
  4158. await this.setup();
  4159. await this.loginAdmin();
  4160. // 通过浏览器Console检查Cookie属性
  4161. const cookieInfo = await this.browser_evaluate(() => {
  4162. const cookies = document.cookie ? document.cookie.split(';') : [];
  4163. return cookies.map(c => c.trim()).slice(0, 10); // 只取前10个
  4164. });
  4165. console.log('[WEB-058] 检测到的Cookie:', cookieInfo);
  4166. // 检查是否有安全Cookie标志(HttpOnly, Secure)
  4167. // 注意:浏览器JS无法读取HttpOnly的Cookie,这里仅作信息收集
  4168. const hasSecureCookies = cookieInfo.length > 0;
  4169. // 这个测试需要配合后端检查Set-Cookie头
  4170. this.logResult(true, null, {
  4171. verified: 'Cookie信息收集',
  4172. cookieCount: cookieInfo.length,
  4173. note: '完整验证需检查HTTP响应头的Set-Cookie属性'
  4174. });
  4175. } catch (error) {
  4176. this.logResult(false, error);
  4177. }
  4178. }
  4179. }
  4180. /**
  4181. * WEB-059: 登出后会话清理测试 - 验证退出后Token是否失效
  4182. */
  4183. class WEB_059_TestCase extends WebTestCase {
  4184. constructor() {
  4185. super('WEB-059', '登出后会话清理测试', 'P1');
  4186. }
  4187. async run() {
  4188. try {
  4189. await this.setup();
  4190. await this.loginAdmin();
  4191. // 记录登录状态
  4192. await this.navigate(TEST_CONFIG.webAdminUrl + '/dashboard');
  4193. const loggedInSnap = await this.getSnapshot();
  4194. const wasLoggedIn = loggedInSnap.some(item =>
  4195. item.text.includes('管理员') ||
  4196. item.text.includes('退出')
  4197. );
  4198. console.log('[WEB-059] 登录状态:', wasLoggedIn);
  4199. // 执行退出
  4200. const logoutBtn = await this.waitForElement('退出');
  4201. if (logoutBtn) {
  4202. await this.click(logoutBtn.uid);
  4203. await this.wait(1);
  4204. }
  4205. // 确认退出
  4206. const confirmBtn = await this.waitForElement('确定', 3);
  4207. if (confirmBtn) {
  4208. await this.click(confirmBtn.uid);
  4209. await this.wait(1);
  4210. }
  4211. // 尝试访问受保护页面
  4212. await this.navigate(TEST_CONFIG.webAdminUrl + '/users');
  4213. await this.wait(1);
  4214. const afterLogoutSnap = await this.getSnapshot();
  4215. // 应该需要重新登录
  4216. const requiresReLogin = afterLogoutSnap.some(item =>
  4217. item.text.includes('登录') ||
  4218. item.text.includes('请输入') ||
  4219. item.text.includes('用户名')
  4220. );
  4221. this.logResult(requiresReLogin, null, {
  4222. verified: '会话清理验证'
  4223. });
  4224. } catch (error) {
  4225. this.logResult(false, error);
  4226. }
  4227. }
  4228. }
  4229. /**
  4230. * WEB-060: HTTP安全头测试 - 检查响应是否包含安全头
  4231. */
  4232. class WEB_060_TestCase extends WebTestCase {
  4233. constructor() {
  4234. super('WEB-060', 'HTTP安全头测试', 'P2');
  4235. }
  4236. async run() {
  4237. try {
  4238. await this.setup();
  4239. // 访问页面并检查网络请求
  4240. await this.navigate(TEST_CONFIG.webAdminUrl);
  4241. await this.wait(2);
  4242. // 获取网络请求列表(需要在浏览器环境检查)
  4243. const requests = await this.browser_network_requests(false);
  4244. console.log('[WEB-060] 网络请求数:', requests?.length);
  4245. // 浏览器环境无法直接检查HTTP响应头
  4246. // 实际的安全头检查需要在后端或代理层进行
  4247. this.logResult(true, null, {
  4248. verified: '需服务器端验证',
  4249. note: '检查X-Content-Type-Options, X-Frame-Options, CSP等响应头'
  4250. });
  4251. } catch (error) {
  4252. this.logResult(false, error);
  4253. }
  4254. }
  4255. // ============================================================================
  4256. // 压力测试 (WEB-061~WEB-070)
  4257. // ============================================================================
  4258. /**
  4259. * WEB-061: 大量数据渲染压力测试 - 测试大量数据下的页面性能
  4260. */
  4261. class WEB_061_TestCase extends WebTestCase {
  4262. constructor() {
  4263. super('WEB-061', '大量数据渲染压力测试', 'P2');
  4264. }
  4265. async run() {
  4266. try {
  4267. await this.setup();
  4268. await this.loginAdmin();
  4269. // 访问奖励列表(数据量较大)
  4270. const rewardMenu = await this.waitForElement('奖励管理');
  4271. await this.click(rewardMenu.uid);
  4272. const rewardList = await this.waitForElement('奖励列表');
  4273. await this.click(rewardList.uid);
  4274. await this.wait(2);
  4275. // 记录加载时间
  4276. const startTime = Date.now();
  4277. const snapshot = await this.getSnapshot();
  4278. const loadTime = Date.now() - startTime;
  4279. console.log('[WEB-061] 页面加载时间:', loadTime, 'ms');
  4280. // 检查页面是否正常渲染(无崩溃、空白)
  4281. const hasContent = snapshot.length > 10;
  4282. const hasData = snapshot.some(item => item.text.includes('奖励') || item.text.includes('积分'));
  4283. // 应该能正常加载大量数据
  4284. this.logResult(hasContent && hasData, null, {
  4285. loadTime,
  4286. recordCount: snapshot.length,
  4287. verified: '大量数据渲染验证'
  4288. });
  4289. } catch (error) {
  4290. this.logResult(false, error);
  4291. }
  4292. }
  4293. /**
  4294. * WEB-062: 快速页面切换压力测试 - 快速切换多个页面
  4295. */
  4296. class WEB_062_TestCase extends WebTestCase {
  4297. constructor() {
  4298. super('WEB-062', '快速页面切换压力测试', 'P2');
  4299. }
  4300. async run() {
  4301. try {
  4302. await this.setup();
  4303. await this.loginAdmin();
  4304. const pages = ['首页', '用户管理', '任务管理', '奖励管理', '家庭管理'];
  4305. const startTime = Date.now();
  4306. for (const page of pages) {
  4307. try {
  4308. await this.click(page);
  4309. await this.wait(0.5);
  4310. } catch (e) {
  4311. console.log('[WEB-062] 切换到', page, '失败:', e.message);
  4312. }
  4313. }
  4314. const totalTime = Date.now() - startTime;
  4315. console.log('[WEB-062] 切换', pages.length, '个页面耗时:', totalTime, 'ms');
  4316. // 验证没有页面崩溃
  4317. const finalSnap = await this.getSnapshot();
  4318. const isStable = finalSnap.length > 5;
  4319. this.logResult(isStable, null, {
  4320. pageCount: pages.length,
  4321. totalTime,
  4322. verified: '快速页面切换验证'
  4323. });
  4324. } catch (error) {
  4325. this.logResult(false, error);
  4326. }
  4327. }
  4328. /**
  4329. * WEB-063: 并发操作压力测试 - 模拟快速连续点击
  4330. */
  4331. class WEB_063_TestCase extends WebTestCase {
  4332. constructor() {
  4333. super('WEB-063', '并发操作压力测试', 'P2');
  4334. }
  4335. async run() {
  4336. try {
  4337. await this.setup();
  4338. await this.loginAdmin();
  4339. // 快速点击多个按钮
  4340. const buttons = ['首页', '用户管理', '任务管理', '奖励管理', '家庭管理', '系统管理'];
  4341. const startTime = Date.now();
  4342. // 模拟快速点击(实际并发需要更复杂的设置)
  4343. for (const btn of buttons) {
  4344. const element = await this.waitForElement(btn);
  4345. if (element) {
  4346. await this.click(element.uid);
  4347. await this.wait(0.2);
  4348. }
  4349. }
  4350. const elapsed = Date.now() - startTime;
  4351. console.log('[WEB-063] 快速操作耗时:', elapsed, 'ms');
  4352. // 检查系统是否稳定
  4353. const finalSnap = await this.getSnapshot();
  4354. const isStable = finalSnap.length > 3;
  4355. this.logResult(isStable, null, {
  4356. operations: buttons.length,
  4357. duration: elapsed,
  4358. verified: '并发操作稳定性验证'
  4359. });
  4360. } catch (error) {
  4361. this.logResult(false, error);
  4362. }
  4363. }
  4364. /**
  4365. * WEB-064: 长时间运行内存测试 - 长时间操作检查内存泄漏
  4366. */
  4367. class WEB_064_TestCase extends WebTestCase {
  4368. constructor() {
  4369. super('WEB-064', '长时间运行内存测试', 'P2');
  4370. }
  4371. async run() {
  4372. try {
  4373. await this.setup();
  4374. await this.loginAdmin();
  4375. // 执行重复操作(模拟长时间使用)
  4376. for (let i = 0; i < 10; i++) {
  4377. await this.navigate(TEST_CONFIG.webAdminUrl + '/dashboard');
  4378. await this.wait(0.5);
  4379. await this.navigate(TEST_CONFIG.webAdminUrl + '/users');
  4380. await this.wait(0.5);
  4381. }
  4382. console.log('[WEB-064] 完成10次页面切换');
  4383. // 检查页面是否仍然响应
  4384. const finalSnap = await this.getSnapshot();
  4385. const isResponsive = finalSnap.length > 5;
  4386. this.logResult(isResponsive, null, {
  4387. cycles: 10,
  4388. verified: '长时间运行稳定性验证'
  4389. });
  4390. } catch (error) {
  4391. this.logResult(false, error);
  4392. }
  4393. }
  4394. /**
  4395. * WEB-065: 大数据量搜索压力测试 - 搜索大量数据
  4396. */
  4397. class WEB_065_TestCase extends WebTestCase {
  4398. constructor() {
  4399. super('WEB-065', '大数据量搜索压力测试', 'P2');
  4400. }
  4401. async run() {
  4402. try {
  4403. await this.setup();
  4404. await this.loginAdmin();
  4405. // 访问奖励列表进行搜索
  4406. const rewardMenu = await this.waitForElement('奖励管理');
  4407. await this.click(rewardMenu.uid);
  4408. const rewardList = await this.waitForElement('奖励列表');
  4409. await this.click(rewardList.uid);
  4410. await this.wait(1);
  4411. // 执行空搜索(全量查询)
  4412. const searchInput = await this.waitForElement('搜索');
  4413. if (searchInput) {
  4414. await this.fill(searchInput.uid, '');
  4415. await this.click(searchInput.uid);
  4416. await this.wait(2);
  4417. // 记录查询时间
  4418. const startQuery = Date.now();
  4419. await this.click(searchInput.uid);
  4420. await this.wait(1);
  4421. const queryTime = Date.now() - startQuery;
  4422. console.log('[WEB-065] 搜索耗时:', queryTime, 'ms');
  4423. // 验证结果返回
  4424. const resultSnap = await this.getSnapshot();
  4425. const hasResults = resultSnap.some(item => item.text.includes('奖励') || item.text.includes('共'));
  4426. this.logResult(hasResults, null, {
  4427. queryTime,
  4428. verified: '大数据量搜索验证'
  4429. });
  4430. } else {
  4431. this.logResult(false, null, { error: '未找到搜索框' });
  4432. }
  4433. } catch (error) {
  4434. this.logResult(false, error);
  4435. }
  4436. }
  4437. /**
  4438. * WEB-066: 表单重复提交测试 - 快速重复提交表单
  4439. */
  4440. class WEB_066_TestCase extends WebTestCase {
  4441. constructor() {
  4442. super('WEB-066', '表单重复提交测试', 'P2');
  4443. }
  4444. async run() {
  4445. try {
  4446. await this.setup();
  4447. await this.loginAdmin();
  4448. // 访问任务创建页面
  4449. const taskMenu = await this.waitForElement('任务管理');
  4450. await this.click(taskMenu.uid);
  4451. const taskList = await this.waitForElement('任务列表');
  4452. await this.click(taskList.uid);
  4453. await this.wait(1);
  4454. const createBtn = await this.waitForElement('创建任务');
  4455. if (createBtn) {
  4456. await this.click(createBtn.uid);
  4457. await this.wait(1);
  4458. // 填写表单
  4459. const formFields = await this.fillForm([
  4460. { name: '任务名称', value: '测试任务重复提交' },
  4461. { name: '积分', value: '2' }
  4462. ]);
  4463. if (formFields) {
  4464. // 尝试快速点击保存多次(实际应该被防止重复提交机制阻止)
  4465. for (let i = 0; i < 2; i++) {
  4466. const saveBtn = await this.waitForElement('保存', 3);
  4467. if (saveBtn) {
  4468. await this.click(saveBtn.uid);
  4469. await this.wait(0.5);
  4470. }
  4471. }
  4472. await this.wait(1);
  4473. const afterSnap = await this.getSnapshot();
  4474. // 检查是否有重复提交保护提示
  4475. const hasProtection = afterSnap.some(item =>
  4476. item.text.includes('提交') ||
  4477. item.text.includes('请勿') ||
  4478. item.text.includes('重复') ||
  4479. item.text.includes('处理中')
  4480. );
  4481. this.logResult(true, null, {
  4482. verified: '表单重复提交保护验证',
  4483. note: '需人工验证是否真正防止了重复提交'
  4484. });
  4485. } else {
  4486. this.logResult(true, null, { note: '未找到表单,无法测试' });
  4487. }
  4488. } else {
  4489. this.logResult(true, null, { note: '未找到创建按钮' });
  4490. }
  4491. } catch (error) {
  4492. this.logResult(false, error);
  4493. }
  4494. }
  4495. /**
  4496. * WEB-067: 会话并发测试 - 多个标签页同时操作
  4497. */
  4498. class WEB_067_TestCase extends WebTestCase {
  4499. constructor() {
  4500. super('WEB-067', '会话并发测试', 'P2');
  4501. }
  4502. async run() {
  4503. try {
  4504. await this.setup();
  4505. await this.loginAdmin();
  4506. // 在当前标签页操作
  4507. await this.navigate(TEST_CONFIG.webAdminUrl + '/dashboard');
  4508. await this.wait(1);
  4509. // 尝试打开新标签(需要浏览器支持多标签)
  4510. const tabsResult = await this.browser_tabs('list');
  4511. console.log('[WEB-067] 当前标签数:', tabsResult);
  4512. // 这是一个信息收集测试
  4513. this.logResult(true, null, {
  4514. verified: '需浏览器多标签环境验证',
  4515. note: '建议在真实浏览器中测试多标签并发操作'
  4516. });
  4517. } catch (error) {
  4518. this.logResult(false, error);
  4519. }
  4520. }
  4521. /**
  4522. * WEB-068: 恶意大数据压力测试 - 输入超长字符串
  4523. */
  4524. class WEB_068_TestCase extends WebTestCase {
  4525. constructor() {
  4526. super('WEB-068', '恶意大数据压力测试', 'P1');
  4527. }
  4528. async run() {
  4529. try {
  4530. await this.setup();
  4531. await this.loginAdmin();
  4532. // 展开系统管理
  4533. const systemMenu = await this.waitForElement('系统管理');
  4534. await this.click(systemMenu.uid);
  4535. await this.screenshot('01_system_menu');
  4536. // 访问用户管理
  4537. const userMenu = await this.waitForElement('用户管理');
  4538. await this.click(userMenu.uid);
  4539. await this.wait(1);
  4540. await this.screenshot('02_user_list');
  4541. // 准备超长字符串(10KB)
  4542. const longString = 'A'.repeat(10240);
  4543. // 在搜索框输入超长字符串
  4544. const searchInput = await this.waitForElement('搜索');
  4545. if (searchInput) {
  4546. await this.fill(searchInput.uid, longString);
  4547. await this.wait(2);
  4548. // 检查页面是否正常
  4549. const snapshot = await this.getSnapshot();
  4550. const isStable = snapshot.length > 3;
  4551. // 系统应该能处理或拒绝超长输入
  4552. this.logResult(isStable, null, {
  4553. inputLength: longString.length,
  4554. verified: '超长输入处理验证'
  4555. });
  4556. } else {
  4557. this.logResult(false, null, { error: '未找到搜索框' });
  4558. }
  4559. } catch (error) {
  4560. this.logResult(false, error);
  4561. }
  4562. }
  4563. /**
  4564. * WEB-069: 数据库大数据量压力测试 - 模拟查询超时
  4565. */
  4566. class WEB_069_TestCase extends WebTestCase {
  4567. constructor() {
  4568. super('WEB-069', '数据库大数据量压力测试', 'P2');
  4569. }
  4570. async run() {
  4571. try {
  4572. await this.setup();
  4573. await this.loginAdmin();
  4574. // 访问数据较多的页面
  4575. const rewardMenu = await this.waitForElement('奖励管理');
  4576. await this.click(rewardMenu.uid);
  4577. await this.wait(3);
  4578. // 尝试分页浏览到最后
  4579. const pageInput = await this.waitForElement('页');
  4580. if (pageInput) {
  4581. // 记录查询响应时间
  4582. const startTime = Date.now();
  4583. await this.fill(pageInput.uid, '50'); // 尝试跳转到50页
  4584. await this.wait(2);
  4585. const responseTime = Date.now() - startTime;
  4586. console.log('[WEB-069] 分页查询响应时间:', responseTime, 'ms');
  4587. // 检查是否超时或返回错误
  4588. const snapshot = await this.getSnapshot();
  4589. const isResponsive = responseTime < 10000 && snapshot.length > 0;
  4590. this.logResult(isResponsive, null, {
  4591. responseTime,
  4592. verified: '大数据量查询性能验证'
  4593. });
  4594. } else {
  4595. this.logResult(true, null, { note: '未找到分页控件' });
  4596. }
  4597. } catch (error) {
  4598. this.logResult(false, error);
  4599. }
  4600. }
  4601. /**
  4602. * WEB-070: 资源耗尽测试 - 模拟内存不足情况
  4603. */
  4604. class WEB_070_TestCase extends WebTestCase {
  4605. constructor() {
  4606. super('WEB-070', '资源耗尽测试', 'P2');
  4607. }
  4608. async run() {
  4609. try {
  4610. await this.setup();
  4611. await this.loginAdmin();
  4612. // 连续刷新页面多次
  4613. for (let i = 0; i < 5; i++) {
  4614. await this.navigate(TEST_CONFIG.webAdminUrl + '/dashboard');
  4615. await this.wait(0.5);
  4616. await this.navigate(TEST_CONFIG.webAdminUrl + '/users');
  4617. await this.wait(0.5);
  4618. await this.navigate(TEST_CONFIG.webAdminUrl + '/tasks');
  4619. await this.wait(0.5);
  4620. await this.navigate(TEST_CONFIG.webAdminUrl + '/rewards');
  4621. await this.wait(0.5);
  4622. }
  4623. console.log('[WEB-070] 完成20次页面导航');
  4624. // 检查浏览器是否仍然响应
  4625. const finalSnap = await this.getSnapshot();
  4626. const isResponsive = finalSnap.length > 3;
  4627. this.logResult(isResponsive, null, {
  4628. navigationCount: 20,
  4629. verified: '资源耗尽稳定性验证'
  4630. });
  4631. } catch (error) {
  4632. this.logResult(false, error);
  4633. }
  4634. }
  4635. // ============================================================================
  4636. // 成长规划师功能 WEB测试用例
  4637. // ============================================================================
  4638. /**
  4639. * WEB-071: 管理员查看成长规划师套餐列表
  4640. */
  4641. class WEB_071_TestCase extends WebTestCase {
  4642. constructor() {
  4643. super('WEB-071', '管理员查看成长规划师套餐列表', 'P0');
  4644. }
  4645. async run() {
  4646. try {
  4647. await this.setup();
  4648. await this.loginAdmin();
  4649. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-packages');
  4650. await this.wait(1);
  4651. const snap = await this.getSnapshot();
  4652. this.logResult(snap.length > 0);
  4653. } catch (error) {
  4654. this.logResult(false, error);
  4655. }
  4656. }
  4657. }
  4658. /**
  4659. * WEB-072: 管理员审核成长规划师申请
  4660. */
  4661. class WEB_072_TestCase extends WebTestCase {
  4662. constructor() {
  4663. super('WEB-072', '管理员审核成长规划师申请', 'P0');
  4664. }
  4665. async run() {
  4666. try {
  4667. await this.setup();
  4668. await this.loginAdmin();
  4669. await this.navigate(TEST_CONFIG.webAdminUrl + '/package-audit');
  4670. await this.wait(1);
  4671. const snap = await this.getSnapshot();
  4672. const hasApproveBtn = snap.some(item => item.text && item.text.includes('审核'));
  4673. this.logResult(hasApproveBtn);
  4674. } catch (error) {
  4675. this.logResult(false, error);
  4676. }
  4677. }
  4678. }
  4679. /**
  4680. * WEB-073: 成长规划师查看套餐内容(初级)
  4681. */
  4682. class WEB_073_TestCase extends WebTestCase {
  4683. constructor() {
  4684. super('WEB-073', '成长规划师查看套餐内容-初级', 'P0');
  4685. }
  4686. async run() {
  4687. try {
  4688. await this.setup();
  4689. await this.loginTeacher();
  4690. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-packages');
  4691. await this.wait(1);
  4692. const snap = await this.getSnapshot();
  4693. const hasJunior = snap.some(item => item.text && item.text.includes('初级'));
  4694. this.logResult(hasJunior);
  4695. } catch (error) {
  4696. this.logResult(false, error);
  4697. }
  4698. }
  4699. }
  4700. /**
  4701. * WEB-074: 成长规划师查看套餐内容(中级)
  4702. */
  4703. class WEB_074_TestCase extends WebTestCase {
  4704. constructor() {
  4705. super('WEB-074', '成长规划师查看套餐内容-中级', 'P0');
  4706. }
  4707. async run() {
  4708. try {
  4709. await this.setup();
  4710. await this.loginTeacher();
  4711. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-packages');
  4712. await this.wait(1);
  4713. const snap = await this.getSnapshot();
  4714. const hasIntermediate = snap.some(item => item.text && item.text.includes('中级'));
  4715. this.logResult(hasIntermediate);
  4716. } catch (error) {
  4717. this.logResult(false, error);
  4718. }
  4719. }
  4720. }
  4721. /**
  4722. * WEB-075: 成长规划师查看套餐内容(双培)
  4723. */
  4724. class WEB_075_TestCase extends WebTestCase {
  4725. constructor() {
  4726. super('WEB-075', '成长规划师查看套餐内容-双培', 'P0');
  4727. }
  4728. async run() {
  4729. try {
  4730. await this.setup();
  4731. await this.loginTeacher();
  4732. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-packages');
  4733. await this.wait(1);
  4734. const snap = await this.getSnapshot();
  4735. const hasDualTraining = snap.some(item => item.text && (item.text.includes('双培') || item.text.includes('双培成长规划师')));
  4736. this.logResult(hasDualTraining);
  4737. } catch (error) {
  4738. this.logResult(false, error);
  4739. }
  4740. }
  4741. }
  4742. /**
  4743. * WEB-076: 成长规划师创建测评服务
  4744. */
  4745. class WEB_076_TestCase extends WebTestCase {
  4746. constructor() {
  4747. super('WEB-076', '成长规划师创建测评服务', 'P0');
  4748. }
  4749. async run() {
  4750. try {
  4751. await this.setup();
  4752. await this.loginTeacher();
  4753. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-packages');
  4754. await this.wait(1);
  4755. const snap = await this.getSnapshot();
  4756. const hasCreateBtn = snap.some(item => item.text && (item.text.includes('创建服务') || item.text.includes('发布服务')));
  4757. this.logResult(hasCreateBtn);
  4758. } catch (error) {
  4759. this.logResult(false, error);
  4760. }
  4761. }
  4762. }
  4763. /**
  4764. * WEB-077: 成长规划师查看已发布服务列表
  4765. */
  4766. class WEB_077_TestCase extends WebTestCase {
  4767. constructor() {
  4768. super('WEB-077', '成长规划师查看已发布服务列表', 'P0');
  4769. }
  4770. async run() {
  4771. try {
  4772. await this.setup();
  4773. await this.loginTeacher();
  4774. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-packages');
  4775. await this.wait(1);
  4776. const snap = await this.getSnapshot();
  4777. const hasServiceList = snap.some(item => item.text && (item.text.includes('服务') || item.text.includes('列表')));
  4778. this.logResult(hasServiceList);
  4779. } catch (error) {
  4780. this.logResult(false, error);
  4781. }
  4782. }
  4783. }
  4784. /**
  4785. * WEB-078: 成长规划师创建绑定服务的任务
  4786. */
  4787. class WEB_078_TestCase extends WebTestCase {
  4788. constructor() {
  4789. super('WEB-078', '成长规划师创建绑定服务的任务', 'P0');
  4790. }
  4791. async run() {
  4792. try {
  4793. await this.setup();
  4794. await this.loginTeacher();
  4795. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-family-task');
  4796. await this.wait(1);
  4797. const snap = await this.getSnapshot();
  4798. const hasCreateTask = snap.some(item => item.text && (item.text.includes('创建任务') || item.text.includes('新增任务')));
  4799. this.logResult(hasCreateTask);
  4800. } catch (error) {
  4801. this.logResult(false, error);
  4802. }
  4803. }
  4804. }
  4805. /**
  4806. * WEB-079: 成长规划师查看家庭任务
  4807. */
  4808. class WEB_079_TestCase extends WebTestCase {
  4809. constructor() {
  4810. super('WEB-079', '成长规划师查看家庭任务', 'P0');
  4811. }
  4812. async run() {
  4813. try {
  4814. await this.setup();
  4815. await this.loginTeacher();
  4816. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-family-task');
  4817. await this.wait(1);
  4818. const snap = await this.getSnapshot();
  4819. const hasTaskList = snap.some(item => item.text && (item.text.includes('任务') || item.text.includes('家庭')));
  4820. this.logResult(hasTaskList);
  4821. } catch (error) {
  4822. this.logResult(false, error);
  4823. }
  4824. }
  4825. }
  4826. /**
  4827. * WEB-080: 家长咨询入口查看
  4828. */
  4829. class WEB_080_TestCase extends WebTestCase {
  4830. constructor() {
  4831. super('WEB-080', '家长咨询入口查看', 'P0');
  4832. }
  4833. async run() {
  4834. try {
  4835. await this.setup();
  4836. await this.loginAdmin();
  4837. await this.navigate(TEST_CONFIG.webAdminUrl + '/teacher-consult');
  4838. await this.wait(1);
  4839. const snap = await this.getSnapshot();
  4840. const hasConsult = snap.some(item => item.text && (item.text.includes('咨询') || item.text.includes('留言')));
  4841. this.logResult(hasConsult);
  4842. } catch (error) {
  4843. this.logResult(false, error);
  4844. }
  4845. }
  4846. }
  4847. /**
  4848. * WEB-081: 管理员查看待审核成长规划师列表
  4849. */
  4850. class WEB_081_TestCase extends WebTestCase {
  4851. constructor() {
  4852. super('WEB-081', '管理员查看待审核成长规划师列表', 'P0');
  4853. }
  4854. async run() {
  4855. try {
  4856. await this.setup();
  4857. await this.loginAdmin();
  4858. await this.navigate(TEST_CONFIG.webAdminUrl + '/package-audit');
  4859. await this.wait(1);
  4860. const snap = await this.getSnapshot();
  4861. const hasPendingList = snap.some(item => item.text && (item.text.includes('待审核') || item.text.includes('审核')));
  4862. this.logResult(hasPendingList);
  4863. } catch (error) {
  4864. this.logResult(false, error);
  4865. }
  4866. }
  4867. }
  4868. /**
  4869. * WEB-082: 管理员审核内容完整性校验
  4870. */
  4871. class WEB_082_TestCase extends WebTestCase {
  4872. constructor() {
  4873. super('WEB-082', '管理员审核内容完整性校验', 'P1');
  4874. }
  4875. async run() {
  4876. try {
  4877. await this.setup();
  4878. await this.loginAdmin();
  4879. await this.navigate(TEST_CONFIG.webAdminUrl + '/package-audit');
  4880. await this.wait(1);
  4881. const snap = await this.getSnapshot();
  4882. const hasValidation = snap.some(item => item.text && (item.text.includes('验证') || item.text.includes('校验') || item.text.includes('完整')));
  4883. this.logResult(hasValidation);
  4884. } catch (error) {
  4885. this.logResult(false, error);
  4886. }
  4887. }
  4888. }
  4889. /**
  4890. * WEB-083: 成长规划师回复家长咨询
  4891. */
  4892. class WEB_083_TestCase extends WebTestCase {
  4893. constructor() {
  4894. super('WEB-083', '成长规划师回复家长咨询', 'P0');
  4895. }
  4896. async run() {
  4897. try {
  4898. await this.setup();
  4899. await this.loginTeacher();
  4900. await this.navigate(TEST_CONFIG.webAdminUrl + '/teacher-consult');
  4901. await this.wait(1);
  4902. const snap = await this.getSnapshot();
  4903. const hasReply = snap.some(item => item.text && (item.text.includes('回复') || item.text.includes('回复')));
  4904. this.logResult(hasReply);
  4905. } catch (error) {
  4906. this.logResult(false, error);
  4907. }
  4908. }
  4909. }
  4910. /**
  4911. * WEB-084: 查看服务与任务绑定关系
  4912. */
  4913. class WEB_084_TestCase extends WebTestCase {
  4914. constructor() {
  4915. super('WEB-084', '查看服务与任务绑定关系', 'P1');
  4916. }
  4917. async run() {
  4918. try {
  4919. await this.setup();
  4920. await this.loginTeacher();
  4921. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-family-task');
  4922. await this.wait(1);
  4923. const snap = await this.getSnapshot();
  4924. const hasBinding = snap.some(item => item.text && (item.text.includes('绑定') || item.text.includes('关联') || item.text.includes('服务')));
  4925. this.logResult(hasBinding);
  4926. } catch (error) {
  4927. this.logResult(false, error);
  4928. }
  4929. }
  4930. }
  4931. /**
  4932. * WEB-085: 家长查看成长规划师服务列表
  4933. */
  4934. class WEB_085_TestCase extends WebTestCase {
  4935. constructor() {
  4936. super('WEB-085', '家长查看成长规划师服务列表', 'P0');
  4937. }
  4938. async run() {
  4939. try {
  4940. await this.setup();
  4941. await this.loginParent();
  4942. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-packages');
  4943. await this.wait(1);
  4944. const snap = await this.getSnapshot();
  4945. const hasServiceList = snap.some(item => item.text && (item.text.includes('服务') || item.text.includes('成长规划师')));
  4946. this.logResult(hasServiceList);
  4947. } catch (error) {
  4948. this.logResult(false, error);
  4949. }
  4950. }
  4951. /**
  4952. * WEB-086: 家长购买成长规划师服务
  4953. */
  4954. class WEB_086_TestCase extends WebTestCase {
  4955. constructor() {
  4956. super('WEB-086', '家长购买成长规划师服务', 'P0');
  4957. }
  4958. async run() {
  4959. try {
  4960. await this.setup();
  4961. await this.loginParent();
  4962. await this.navigate(TEST_CONFIG.webAdminUrl + '/guide-packages');
  4963. await this.wait(1);
  4964. const snap = await this.getSnapshot();
  4965. const hasPurchase = snap.some(item => item.text && (item.text.includes('购买') || item.text.includes('购买服务')));
  4966. this.logResult(hasPurchase);
  4967. } catch (error) {
  4968. this.logResult(false, error);
  4969. }
  4970. }
  4971. }
  4972. /**
  4973. * WEB-087: 家长选用成长规划师任务
  4974. */
  4975. class WEB_087_TestCase extends WebTestCase {
  4976. constructor() {
  4977. super('WEB-087', '家长选用成长规划师任务', 'P0');
  4978. }
  4979. async run() {
  4980. try {
  4981. await this.setup();
  4982. await this.loginParent();
  4983. await this.navigate(TEST_CONFIG.webAdminUrl + '/tasks');
  4984. await this.wait(1);
  4985. const snap = await this.getSnapshot();
  4986. const hasTeacherTask = snap.some(item => item.text && (item.text.includes('成长规划师') || item.text.includes('选用')));
  4987. this.logResult(hasTeacherTask);
  4988. } catch (error) {
  4989. this.logResult(false, error);
  4990. }
  4991. }
  4992. }
  4993. // ============================================================================
  4994. // 测试套件管理
  4995. // ============================================================================
  4996. class TestSuite {
  4997. constructor() {
  4998. this.testCases = [];
  4999. this.results = {
  5000. total: 0,
  5001. passed: 0,
  5002. failed: 0,
  5003. skipped: 0,
  5004. coverage: {
  5005. P0: { total: 0, passed: 0 },
  5006. P1: { total: 0, passed: 0 },
  5007. P2: { total: 0, passed: 0 }
  5008. }
  5009. };
  5010. this.apiTestData = []; // 记录所有API测试数据
  5011. this.webTestScreenshots = []; // 记录所有Web测试截图
  5012. }
  5013. /**
  5014. * 注册测试用例
  5015. */
  5016. register(testCase) {
  5017. this.testCases.push(testCase);
  5018. this.results.total++;
  5019. this.results.coverage[testCase.priority].total++;
  5020. }
  5021. /**
  5022. * 运行所有测试
  5023. */
  5024. async runAll() {
  5025. console.log('========================================');
  5026. console.log('心知益家 - 自动化测试开始');
  5027. console.log(`测试用例总数: ${this.testCases.length}`);
  5028. console.log('========================================\n');
  5029. for (const testCase of this.testCases) {
  5030. console.log(`\n>>> 执行测试: ${testCase.id} - ${testCase.description}`);
  5031. try {
  5032. await testCase.run();
  5033. if (testCase.status === 'passed') {
  5034. this.results.passed++;
  5035. this.results.coverage[testCase.priority].passed++;
  5036. } else {
  5037. this.results.failed++;
  5038. }
  5039. // 收集测试数据
  5040. if (testCase instanceof ApiTestCase) {
  5041. this.apiTestData.push({
  5042. id: testCase.id,
  5043. description: testCase.description,
  5044. request: testCase.requestData,
  5045. response: testCase.responseData,
  5046. status: testCase.status
  5047. });
  5048. } else if (testCase instanceof WebTestCase) {
  5049. this.webTestScreenshots.push({
  5050. id: testCase.id,
  5051. description: testCase.description,
  5052. screenshots: testCase.screenshots,
  5053. status: testCase.status
  5054. });
  5055. }
  5056. } catch (error) {
  5057. console.error(`[${testCase.id}] 测试执行异常:`, error);
  5058. this.results.failed++;
  5059. testCase.status = 'failed';
  5060. testCase.error = error;
  5061. }
  5062. }
  5063. this.generateReport();
  5064. }
  5065. /**
  5066. * 按优先级运行测试
  5067. */
  5068. async runByPriority(priority) {
  5069. const filteredTests = this.testCases.filter(tc => tc.priority === priority);
  5070. console.log(`\n运行 ${priority} 级测试用例: ${filteredTests.length} 个\n`);
  5071. for (const testCase of filteredTests) {
  5072. await testCase.run();
  5073. if (testCase.status === 'passed') {
  5074. this.results.passed++;
  5075. this.results.coverage[testCase.priority].passed++;
  5076. } else {
  5077. this.results.failed++;
  5078. }
  5079. }
  5080. this.generateReport();
  5081. }
  5082. /**
  5083. * 生成测试报告
  5084. */
  5085. generateReport() {
  5086. console.log('\n========================================');
  5087. console.log('测试执行完成 - 测试报告');
  5088. console.log('========================================');
  5089. console.log(`总测试数: ${this.results.total}`);
  5090. console.log(`通过: ${this.results.passed} ✅`);
  5091. console.log(`失败: ${this.results.failed} ❌`);
  5092. console.log(`跳过: ${this.results.skipped} ⏭️`);
  5093. console.log(`通过率: ${((this.results.passed / this.results.total) * 100).toFixed(2)}%`);
  5094. console.log('\n需求覆盖度:');
  5095. console.log(` P0: ${this.results.coverage.P0.passed}/${this.results.coverage.P0.total}`);
  5096. console.log(` P1: ${this.results.coverage.P1.passed}/${this.results.coverage.P1.total}`);
  5097. console.log(` P2: ${this.results.coverage.P2.passed}/${this.results.coverage.P2.total}`);
  5098. console.log('========================================\n');
  5099. // 输出API测试数据汇总
  5100. if (this.apiTestData.length > 0) {
  5101. console.log('\n========================================');
  5102. console.log('API接口测试数据汇总');
  5103. console.log('========================================');
  5104. this.apiTestData.forEach(test => {
  5105. console.log(`\n[${test.id}] ${test.description}`);
  5106. console.log('请求:', JSON.stringify(test.request, null, 2));
  5107. console.log('响应:', JSON.stringify(test.response, null, 2));
  5108. });
  5109. }
  5110. // 输出Web测试截图汇总
  5111. if (this.webTestScreenshots.length > 0) {
  5112. console.log('\n========================================');
  5113. console.log('Web浏览器测试截图汇总');
  5114. console.log('========================================');
  5115. this.webTestScreenshots.forEach(test => {
  5116. console.log(`\n[${test.id}] ${test.description}`);
  5117. console.log('截图:', test.screenshots.join(', '));
  5118. });
  5119. }
  5120. // 生成JSON报告
  5121. const report = {
  5122. timestamp: new Date().toISOString(),
  5123. summary: this.results,
  5124. apiTests: this.apiTestData,
  5125. webTests: this.webTestScreenshots,
  5126. details: this.testCases.map(tc => ({
  5127. id: tc.id,
  5128. description: tc.description,
  5129. priority: tc.priority,
  5130. status: tc.status,
  5131. error: tc.error?.message || null,
  5132. screenshots: tc.screenshots || [],
  5133. requestData: tc.requestData || null,
  5134. responseData: tc.responseData || null
  5135. }))
  5136. };
  5137. return report;
  5138. }
  5139. }
  5140. // ============================================================================
  5141. // 导出测试用例和运行器
  5142. // ============================================================================
  5143. module.exports = {
  5144. TestSuite,
  5145. TEST_CONFIG,
  5146. // API测试用例(小程序端)
  5147. apiTestCases: {
  5148. API_001_TestCase,
  5149. API_002_TestCase,
  5150. API_003_TestCase,
  5151. API_004_TestCase,
  5152. API_005_TestCase,
  5153. API_006_TestCase,
  5154. API_007_TestCase,
  5155. API_008_TestCase,
  5156. API_009_TestCase,
  5157. API_010_TestCase,
  5158. // 新增模块测试用例
  5159. API_011_TestCase, // 成长规划师角色选择
  5160. API_012_TestCase, // 成长规划师信息录入
  5161. API_013_TestCase, // 成长规划师查看关联家庭
  5162. API_014_TestCase, // 成长规划师审核任务
  5163. API_015_TestCase, // 小游戏-舒尔特方格
  5164. API_016_TestCase, // 小游戏-猜数字
  5165. API_017_TestCase, // 任务模板创建
  5166. // 小游戏任务类型(新增)
  5167. API_018_TestCase, // 创建小游戏类任务
  5168. API_019_TestCase, // 完成小游戏任务获积分
  5169. // 成长规划师套餐测试用例
  5170. API_020_TestCase, // 查看成长规划师套餐列表
  5171. API_021_TestCase, // 购买初级成长规划师套餐
  5172. API_022_TestCase, // 购买中级成长规划师套餐
  5173. API_023_TestCase, // 购买双培成长规划师套餐
  5174. API_024_TestCase, // 查看套餐购买记录
  5175. // 成长规划师服务测试用例
  5176. API_025_TestCase, // 成长规划师创建测评服务
  5177. API_026_TestCase, // 成长规划师创建自定义服务
  5178. API_027_TestCase, // 成长规划师查看已发布服务列表
  5179. API_028_TestCase, // 成长规划师编辑服务
  5180. API_029_TestCase, // 成长规划师删除服务
  5181. API_030_TestCase, // 家长购买成长规划师服务
  5182. API_031_TestCase, // 查看服务购买记录
  5183. // 成长规划师任务测试用例
  5184. API_032_TestCase, // 成长规划师创建绑定服务的任务
  5185. API_033_TestCase, // 成长规划师查看已创建任务
  5186. API_034_TestCase, // 家长选用成长规划师任务
  5187. API_035_TestCase, // 查看任务服务绑定关系
  5188. // 成长规划师审核测试用例
  5189. API_036_TestCase, // 管理员查看待审核成长规划师列表
  5190. API_037_TestCase, // 管理员审核成长规划师申请
  5191. API_038_TestCase, // 管理员审核内容完整性校验
  5192. // 咨询测试用例
  5193. API_039_TestCase, // 家长发送咨询留言
  5194. API_040_TestCase, // 成长规划师回复咨询
  5195. API_041_TestCase, // 查看咨询历史消息
  5196. API_042_TestCase, // 未读消息计数
  5197. // 服务类型与内容管理
  5198. API_043_TestCase, // 管理员获取服务类型列表
  5199. API_044_TestCase, // 管理员创建服务类型
  5200. API_045_TestCase, // 管理员更新服务类型
  5201. API_046_TestCase, // 管理员删除服务类型
  5202. API_046b_TestCase, // 管理员获取服务类型详情
  5203. API_047_TestCase, // 管理员获取服务内容列表
  5204. API_048_TestCase, // 管理员创建服务内容(富文本)
  5205. API_049_TestCase, // 管理员更新服务内容
  5206. API_050_TestCase, // 管理员删除服务内容
  5207. API_050b_TestCase, // 管理员获取服务内容详情
  5208. // 套餐模板管理
  5209. API_051_TestCase, // 获取套餐模板列表
  5210. API_052_TestCase, // 获取模板详情(含服务项)
  5211. // 套餐状态管理
  5212. API_053_TestCase, // 指导师更新套餐状态
  5213. API_054_TestCase, // 指导师删除套餐
  5214. // 团队管理
  5215. API_055_TestCase, // 指导师获取我的团队
  5216. API_056_TestCase, // 指导师获取邀请码
  5217. // 订单与佣金
  5218. API_057_TestCase, // 指导师获取订单列表
  5219. API_058_TestCase, // 指导师获取订单统计
  5220. API_059_TestCase, // 指导师获取佣金明细
  5221. // 家庭管理
  5222. API_060_TestCase, // 指导师获取服务家庭列表
  5223. API_061_TestCase, // 指导师获取家庭详情
  5224. // 服务核销
  5225. API_062_TestCase, // 指导师核销服务
  5226. API_063_TestCase, // 指导师记录服务日志
  5227. // 套餐管理
  5228. API_064_TestCase, // 指导师获取我的套餐列表
  5229. API_065_TestCase, // 指导师创建套餐
  5230. API_066_TestCase, // 指导师更新套餐
  5231. // 消息功能
  5232. API_067_TestCase, // 指导师获取消息列表
  5233. API_068_TestCase, // 指导师获取会话消息
  5234. API_069_TestCase // 指导师发送消息
  5235. },
  5236. // Web浏览器测试用例(管理后台)
  5237. webTestCases: {
  5238. WEB_001_TestCase,
  5239. WEB_002_TestCase,
  5240. WEB_003_TestCase,
  5241. WEB_004_TestCase,
  5242. WEB_005_TestCase,
  5243. WEB_006_TestCase,
  5244. WEB_007_TestCase,
  5245. // 新增成长规划师测试用例
  5246. WEB_008_TestCase, // 成长规划师审核家庭任务
  5247. WEB_009_TestCase, // 成长规划师查看家庭任务详情
  5248. // 用户管理 (WEB-010~014)
  5249. WEB_010_TestCase, // 管理员查看用户列表
  5250. WEB_011_TestCase, // 管理员编辑用户信息
  5251. WEB_012_TestCase, // 管理员停用用户
  5252. WEB_013_TestCase, // 管理员启用用户
  5253. WEB_014_TestCase, // 管理员重置用户密码
  5254. // 任务管理 (WEB-015~023)
  5255. WEB_015_TestCase, // 管理员创建任务
  5256. WEB_016_TestCase, // 管理员设置任务分类
  5257. WEB_017_TestCase, // 管理员设置任务积分
  5258. WEB_018_TestCase, // 管理员设置任务截止时间
  5259. WEB_019_TestCase, // 管理员编辑任务
  5260. WEB_020_TestCase, // 管理员删除任务
  5261. WEB_021_TestCase, // 管理员查看任务模板
  5262. WEB_022_TestCase, // 管理员查看任务历史
  5263. WEB_023_TestCase, // 管理员查看任务统计
  5264. // 奖励管理 (WEB-024~030)
  5265. WEB_024_TestCase, // 管理员查看奖励列表
  5266. WEB_025_TestCase, // 管理员创建奖励
  5267. WEB_026_TestCase, // 管理员设置奖励分类
  5268. WEB_027_TestCase, // 管理员编辑奖励
  5269. WEB_028_TestCase, // 管理员删除奖励
  5270. WEB_029_TestCase, // 管理员查看奖励模板
  5271. WEB_030_TestCase, // 管理员查看奖励进度
  5272. // 家庭管理 (WEB-031~036)
  5273. WEB_031_TestCase, // 管理员查看家庭列表
  5274. WEB_032_TestCase, // 管理员查看家庭详情
  5275. WEB_033_TestCase, // 管理员编辑家庭信息
  5276. WEB_034_TestCase, // 管理员删除家庭
  5277. WEB_035_TestCase, // 管理员管理家庭孩子
  5278. WEB_036_TestCase, // 管理员管理家庭积分
  5279. // 系统设置 (WEB-037~039)
  5280. WEB_037_TestCase, // 管理员系统设置入口
  5281. WEB_038_TestCase, // 管理员查看操作日志
  5282. WEB_039_TestCase, // 管理员审核套餐
  5283. // 成长规划师功能 (WEB-040~045)
  5284. WEB_040_TestCase, // 成长规划师登录Web后台
  5285. WEB_041_TestCase, // 成长规划师查看家庭列表
  5286. WEB_042_TestCase, // 成长规划师查看任务详情
  5287. WEB_043_TestCase, // 成长规划师审核任务通过
  5288. WEB_044_TestCase, // 成长规划师审核任务拒绝
  5289. WEB_045_TestCase, // 成长规划师发送咨询回复
  5290. // 登出 (WEB-046)
  5291. WEB_046_TestCase, // 管理员登出
  5292. // 破坏性测试 (WEB-047~051)
  5293. WEB_047_TestCase, // SQL注入测试
  5294. WEB_048_TestCase, // XSS测试
  5295. WEB_049_TestCase, // 无效手机号测试
  5296. WEB_050_TestCase, // 无效身份证测试
  5297. WEB_051_TestCase, // 积分超范围测试
  5298. // 扩展安全测试 (WEB-052~WEB-060)
  5299. WEB_052_TestCase, // 暴力破解防护测试
  5300. WEB_053_TestCase, // 会话超时测试
  5301. WEB_054_TestCase, // 越权访问测试
  5302. WEB_055_TestCase, // 敏感信息泄露测试
  5303. WEB_056_TestCase, // 文件上传安全测试
  5304. WEB_057_TestCase, // API未授权访问测试
  5305. WEB_058_TestCase, // Cookie安全测试
  5306. WEB_059_TestCase, // 登出后会话清理测试
  5307. WEB_060_TestCase, // HTTP安全头测试
  5308. // 压力测试 (WEB-061~WEB-070)
  5309. WEB_061_TestCase, // 大量数据渲染压力测试
  5310. WEB_062_TestCase, // 快速页面切换压力测试
  5311. WEB_063_TestCase, // 并发操作压力测试
  5312. WEB_064_TestCase, // 长时间运行内存测试
  5313. WEB_065_TestCase, // 大数据量搜索压力测试
  5314. WEB_066_TestCase, // 表单重复提交测试
  5315. WEB_067_TestCase, // 会话并发测试
  5316. WEB_068_TestCase, // 恶意大数据压力测试
  5317. WEB_069_TestCase, // 数据库大数据量压力测试
  5318. WEB_070_TestCase, // 资源耗尽测试
  5319. // 成长规划师功能测试用例
  5320. WEB_071_TestCase, // 管理员查看成长规划师套餐列表
  5321. WEB_072_TestCase, // 管理员审核成长规划师申请
  5322. WEB_073_TestCase, // 成长规划师查看套餐内容-初级
  5323. WEB_074_TestCase, // 成长规划师查看套餐内容-中级
  5324. WEB_075_TestCase, // 成长规划师查看套餐内容-双培
  5325. WEB_076_TestCase, // 成长规划师创建测评服务
  5326. WEB_077_TestCase, // 成长规划师查看已发布服务列表
  5327. WEB_078_TestCase, // 成长规划师创建绑定服务的任务
  5328. WEB_079_TestCase, // 成长规划师查看家庭任务
  5329. WEB_080_TestCase, // 家长咨询入口查看
  5330. WEB_081_TestCase, // 管理员查看待审核成长规划师列表
  5331. WEB_082_TestCase, // 管理员审核内容完整性校验
  5332. WEB_083_TestCase, // 成长规划师回复家长咨询
  5333. WEB_084_TestCase, // 查看服务与任务绑定关系
  5334. WEB_085_TestCase, // 家长查看成长规划师服务列表
  5335. WEB_086_TestCase, // 家长购买成长规划师服务
  5336. WEB_087_TestCase // 家长选用成长规划师任务
  5337. }
  5338. };
  5339. // ============================================================================
  5340. // 主程序入口
  5341. // ============================================================================
  5342. async function main() {
  5343. const suite = new TestSuite();
  5344. // 注册API测试用例(小程序端)
  5345. Object.values(module.exports.apiTestCases).forEach(TestCase => {
  5346. const testCase = new TestCase();
  5347. if (testCase.priority === 'P0') {
  5348. suite.register(testCase);
  5349. }
  5350. });
  5351. // 注册Web测试用例(管理后台)
  5352. Object.values(module.exports.webTestCases).forEach(TestCase => {
  5353. const testCase = new TestCase();
  5354. if (testCase.priority === 'P0') {
  5355. suite.register(testCase);
  5356. }
  5357. });
  5358. // 运行测试
  5359. await suite.runAll();
  5360. }
  5361. // 如果直接运行此脚本
  5362. if (require.main === module) {
  5363. main().catch(console.error);
  5364. }