| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Form
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'Zend_Form_FormTest::main');
- }
- require_once 'Zend/Form.php';
- require_once 'Zend/Config.php';
- require_once 'Zend/Controller/Action/HelperBroker.php';
- require_once 'Zend/Form/Decorator/Form.php';
- require_once 'Zend/Form/DisplayGroup.php';
- require_once 'Zend/Form/Element.php';
- require_once 'Zend/Form/Element/Text.php';
- require_once 'Zend/Form/Element/File.php';
- require_once 'Zend/Form/SubForm.php';
- require_once 'Zend/Loader/PluginLoader.php';
- require_once 'Zend/Registry.php';
- require_once 'Zend/Translate.php';
- require_once 'Zend/View.php';
- /**
- * @category Zend
- * @package Zend_Form
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Form
- */
- class Zend_Form_FormTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_Form
- */
- public $form;
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite('Zend_Form_FormTest');
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- public function clearRegistry()
- {
- if (Zend_Registry::isRegistered('Zend_Translate')) {
- $registry = Zend_Registry::getInstance();
- unset($registry['Zend_Translate']);
- }
- }
- public function setUp()
- {
- $this->clearRegistry();
- Zend_Form::setDefaultTranslator(null);
- if (isset($this->error)) {
- unset($this->error);
- }
- Zend_Controller_Action_HelperBroker::resetHelpers();
- $this->form = new Zend_Form();
- }
- public function tearDown()
- {
- $this->clearRegistry();
- }
- public function testZendFormImplementsZendValidateInterface()
- {
- $this->assertTrue($this->form instanceof Zend_Validate_Interface);
- }
- // Configuration
- public function getOptions()
- {
- $options = array(
- 'name' => 'foo',
- 'class' => 'someform',
- 'action' => '/foo/bar',
- 'method' => 'put',
- );
- return $options;
- }
- public function testCanSetObjectStateViaSetOptions()
- {
- $options = $this->getOptions();
- $this->form->setOptions($options);
- $this->assertEquals('foo', $this->form->getName());
- $this->assertEquals('someform', $this->form->getAttrib('class'));
- $this->assertEquals('/foo/bar', $this->form->getAction());
- $this->assertEquals('put', $this->form->getMethod());
- }
- public function testCanSetObjectStateByPassingOptionsToConstructor()
- {
- $options = $this->getOptions();
- $form = new Zend_Form($options);
- $this->assertEquals('foo', $form->getName());
- $this->assertEquals('someform', $form->getAttrib('class'));
- $this->assertEquals('/foo/bar', $form->getAction());
- $this->assertEquals('put', $form->getMethod());
- }
- public function testSetOptionsSkipsCallsToSetOptionsAndSetConfig()
- {
- $options = $this->getOptions();
- $config = new Zend_Config($options);
- $options['config'] = $config;
- $options['options'] = $config->toArray();
- $this->form->setOptions($options);
- }
- public function testSetOptionsSkipsSettingAccessorsRequiringObjectsWhenNonObjectPassed()
- {
- $options = $this->getOptions();
- $options['pluginLoader'] = true;
- $options['view'] = true;
- $options['translator'] = true;
- $options['default'] = true;
- $options['attrib'] = true;
- $this->form->setOptions($options);
- }
- public function testSetOptionsWithAttribsDoesNotOverwriteActionOrMethodOrName()
- {
- $attribs = $this->getOptions();
- unset($attribs['action'], $attribs['method']);
- $options = array(
- 'name' => 'MYFORM',
- 'action' => '/bar/baz',
- 'method' => 'GET',
- 'attribs' => $attribs,
- );
- $form = new Zend_Form($options);
- $this->assertEquals($options['name'], $form->getName());
- $this->assertEquals($options['action'], $form->getAction());
- $this->assertEquals(strtolower($options['method']), strtolower($form->getMethod()));
- }
- public function getElementOptions()
- {
- $elements = array(
- 'foo' => 'text',
- array('text', 'bar', array('class' => 'foobar')),
- array(
- 'options' => array('class' => 'barbaz'),
- 'type' => 'text',
- 'name' => 'baz',
- ),
- 'bat' => array(
- 'options' => array('class' => 'bazbat'),
- 'type' => 'text',
- ),
- 'lol' => array(
- 'text',
- array('class' => 'lolcat'),
- )
- );
- return $elements;
- }
- public function testSetOptionsSetsElements()
- {
- $options = $this->getOptions();
- $options['elements'] = $this->getElementOptions();
- $this->form->setOptions($options);
- $this->assertTrue(isset($this->form->foo));
- $this->assertTrue($this->form->foo instanceof Zend_Form_Element_Text);
- $this->assertTrue(isset($this->form->bar));
- $this->assertTrue($this->form->bar instanceof Zend_Form_Element_Text);
- $this->assertEquals('foobar', $this->form->bar->class);
- $this->assertTrue(isset($this->form->baz));
- $this->assertTrue($this->form->baz instanceof Zend_Form_Element_Text);
- $this->assertEquals('barbaz', $this->form->baz->class);
- $this->assertTrue(isset($this->form->bat));
- $this->assertTrue($this->form->bat instanceof Zend_Form_Element_Text);
- $this->assertEquals('bazbat', $this->form->bat->class);
- $this->assertTrue(isset($this->form->lol));
- $this->assertTrue($this->form->lol instanceof Zend_Form_Element_Text);
- $this->assertEquals('lolcat', $this->form->lol->class);
- }
- public function testSetOptionsSetsDefaultValues()
- {
- $options = $this->getOptions();
- $options['defaults'] = array(
- 'bar' => 'barvalue',
- 'bat' => 'batvalue',
- );
- $options['elements'] = $this->getElementOptions();
- $this->form->setOptions($options);
- $this->assertEquals('barvalue', $this->form->bar->getValue());
- $this->assertEquals('batvalue', $this->form->bat->getValue());
- }
- public function testSetOptionsSetsArrayOfStringDecorators()
- {
- $this->_checkZf2794();
- $options = $this->getOptions();
- $options['decorators'] = array('label', 'errors');
- $this->form->setOptions($options);
- $this->assertFalse($this->form->getDecorator('form'));
- $decorator = $this->form->getDecorator('label');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Label);
- $decorator = $this->form->getDecorator('errors');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Errors);
- }
- public function testSetOptionsSetsArrayOfArrayDecorators()
- {
- $this->_checkZf2794();
- $options = $this->getOptions();
- $options['decorators'] = array(
- array('label', array('id' => 'mylabel')),
- array('errors', array('id' => 'errors')),
- );
- $this->form->setOptions($options);
- $this->assertFalse($this->form->getDecorator('form'));
- $decorator = $this->form->getDecorator('label');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Label);
- $options = $decorator->getOptions();
- $this->assertEquals('mylabel', $options['id']);
- $decorator = $this->form->getDecorator('errors');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Errors);
- $options = $decorator->getOptions();
- $this->assertEquals('errors', $options['id']);
- }
- public function testSetOptionsSetsArrayOfAssocArrayDecorators()
- {
- $this->_checkZf2794();
- $options = $this->getOptions();
- $options['decorators'] = array(
- array(
- 'options' => array('id' => 'mylabel'),
- 'decorator' => 'label',
- ),
- array(
- 'options' => array('id' => 'errors'),
- 'decorator' => 'errors',
- ),
- );
- $this->form->setOptions($options);
- $this->assertFalse($this->form->getDecorator('form'));
- $decorator = $this->form->getDecorator('label');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Label);
- $options = $decorator->getOptions();
- $this->assertEquals('mylabel', $options['id']);
- $decorator = $this->form->getDecorator('errors');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Errors);
- $options = $decorator->getOptions();
- $this->assertEquals('errors', $options['id']);
- }
- public function testSetOptionsSetsGlobalPrefixPaths()
- {
- $options = $this->getOptions();
- $options['prefixPath'] = array(
- 'prefix' => 'Zend_Foo',
- 'path' => 'Zend/Foo/'
- );
- $this->form->setOptions($options);
- foreach (array('element', 'decorator') as $type) {
- $loader = $this->form->getPluginLoader($type);
- $paths = $loader->getPaths('Zend_Foo_' . ucfirst($type));
- $this->assertTrue(is_array($paths), "Failed for type $type: " . var_export($paths, 1));
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- }
- public function testSetOptionsSetsIndividualPrefixPathsFromKeyedArrays()
- {
- $options = $this->getOptions();
- $options['prefixPath'] = array(
- 'element' => array('prefix' => 'Zend_Foo', 'path' => 'Zend/Foo/')
- );
- $this->form->setOptions($options);
- $loader = $this->form->getPluginLoader('element');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertTrue(is_array($paths));
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- public function testSetOptionsSetsIndividualPrefixPathsFromUnKeyedArrays()
- {
- $options = $this->getOptions();
- $options['prefixPath'] = array(
- array('type' => 'decorator', 'prefix' => 'Zend_Foo', 'path' => 'Zend/Foo/')
- );
- $this->form->setOptions($options);
- $loader = $this->form->getPluginLoader('decorator');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertTrue(is_array($paths));
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- public function testSetOptionsSetsDisplayGroups()
- {
- $options = $this->getOptions();
- $options['displayGroups'] = array(
- 'barbat' => array(array('bar', 'bat'), array('order' => 20)),
- array(array('foo', 'baz'), 'foobaz', array('order' => 10)),
- array(
- 'name' => 'ghiabc',
- 'elements' => array('ghi', 'abc'),
- 'options' => array('order' => 15),
- ),
- );
- $options['elements'] = array(
- 'foo' => 'text',
- 'bar' => 'text',
- 'baz' => 'text',
- 'bat' => 'text',
- 'abc' => 'text',
- 'ghi' => 'text',
- 'jkl' => 'text',
- 'mno' => 'text',
- );
- $this->form->setOptions($options);
- $this->assertTrue(isset($this->form->barbat));
- $elements = $this->form->barbat->getElements();
- $expected = array('bar', 'bat');
- $this->assertEquals($expected, array_keys($elements));
- $this->assertEquals(20, $this->form->barbat->getOrder());
- $this->assertTrue(isset($this->form->foobaz));
- $elements = $this->form->foobaz->getElements();
- $expected = array('foo', 'baz');
- $this->assertEquals($expected, array_keys($elements));
- $this->assertEquals(10, $this->form->foobaz->getOrder());
- $this->assertTrue(isset($this->form->ghiabc));
- $elements = $this->form->ghiabc->getElements();
- $expected = array('ghi', 'abc');
- $this->assertEquals($expected, array_keys($elements));
- $this->assertEquals(15, $this->form->ghiabc->getOrder());
- }
- /**
- * @group ZF-3250
- */
- public function testDisplayGroupOrderInConfigShouldNotMatter()
- {
- require_once 'Zend/Config/Xml.php';
- $config = new Zend_Config_Xml(dirname(__FILE__) . '/_files/config/zf3250.xml', 'sitearea', true);
- $form = new Zend_Form($config->test);
- // no assertions needed; throws error if order matters
- }
- /**
- * @group ZF-3112
- */
- public function testSetOptionsShouldCreateDisplayGroupsLast()
- {
- $options = array();
- $options['displayGroups'] = array(
- 'barbat' => array(array('bar', 'bat'), array('order' => 20)),
- array(array('foo', 'baz'), 'foobaz', array('order' => 10)),
- array(
- 'name' => 'ghiabc',
- 'elements' => array('ghi', 'abc'),
- 'options' => array('order' => 15),
- ),
- );
- $options = array_merge($options, $this->getOptions());
- $options['elements'] = array(
- 'foo' => 'text',
- 'bar' => 'text',
- 'baz' => 'text',
- 'bat' => 'text',
- 'abc' => 'text',
- 'ghi' => 'text',
- 'jkl' => 'text',
- 'mno' => 'text',
- );
- $this->form = new Zend_Form($options);
- $this->assertTrue(isset($this->form->barbat));
- $elements = $this->form->barbat->getElements();
- $expected = array('bar', 'bat');
- $this->assertEquals($expected, array_keys($elements));
- $this->assertEquals(20, $this->form->barbat->getOrder());
- $this->assertTrue(isset($this->form->foobaz));
- $elements = $this->form->foobaz->getElements();
- $expected = array('foo', 'baz');
- $this->assertEquals($expected, array_keys($elements));
- $this->assertEquals(10, $this->form->foobaz->getOrder());
- $this->assertTrue(isset($this->form->ghiabc));
- $elements = $this->form->ghiabc->getElements();
- $expected = array('ghi', 'abc');
- $this->assertEquals($expected, array_keys($elements));
- $this->assertEquals(15, $this->form->ghiabc->getOrder());
- }
- public function testSetConfigSetsObjectState()
- {
- $config = new Zend_Config($this->getOptions());
- $this->form->setConfig($config);
- $this->assertEquals('foo', $this->form->getName());
- $this->assertEquals('someform', $this->form->getAttrib('class'));
- $this->assertEquals('/foo/bar', $this->form->getAction());
- $this->assertEquals('put', $this->form->getMethod());
- }
- public function testCanSetObjectStateByPassingConfigObjectToConstructor()
- {
- $config = new Zend_Config($this->getOptions());
- $form = new Zend_Form($config);
- $this->assertEquals('foo', $form->getName());
- $this->assertEquals('someform', $form->getAttrib('class'));
- $this->assertEquals('/foo/bar', $form->getAction());
- $this->assertEquals('put', $form->getMethod());
- }
- // Attribs:
- public function testAttribsArrayInitiallyEmpty()
- {
- $attribs = $this->form->getAttribs();
- $this->assertTrue(is_array($attribs));
- $this->assertTrue(empty($attribs));
- }
- public function testRetrievingUndefinedAttribReturnsNull()
- {
- $this->assertNull($this->form->getAttrib('foo'));
- }
- public function testCanAddAndRetrieveSingleAttribs()
- {
- $this->testRetrievingUndefinedAttribReturnsNull();
- $this->form->setAttrib('foo', 'bar');
- $this->assertEquals('bar', $this->form->getAttrib('foo'));
- }
- public function testCanAddAndRetrieveMultipleAttribs()
- {
- $this->form->setAttrib('foo', 'bar');
- $this->assertEquals('bar', $this->form->getAttrib('foo'));
- $this->form->addAttribs(array(
- 'bar' => 'baz',
- 'baz' => 'bat',
- 'bat' => 'foo'
- ));
- $test = $this->form->getAttribs();
- $attribs = array(
- 'foo' => 'bar',
- 'bar' => 'baz',
- 'baz' => 'bat',
- 'bat' => 'foo'
- );
- $this->assertSame($attribs, $test);
- }
- public function testSetAttribsOverwritesExistingAttribs()
- {
- $this->testCanAddAndRetrieveMultipleAttribs();
- $array = array('bogus' => 'value', 'not' => 'real');
- $this->form->setAttribs($array);
- $this->assertSame($array, $this->form->getAttribs());
- }
- public function testCanRemoveSingleAttrib()
- {
- $this->testCanAddAndRetrieveSingleAttribs();
- $this->assertTrue($this->form->removeAttrib('foo'));
- $this->assertNull($this->form->getAttrib('foo'));
- }
- public function testRemoveAttribReturnsFalseIfAttribDoesNotExist()
- {
- $this->assertFalse($this->form->removeAttrib('foo'));
- }
- public function testCanClearAllAttribs()
- {
- $this->testCanAddAndRetrieveMultipleAttribs();
- $this->form->clearAttribs();
- $attribs = $this->form->getAttribs();
- $this->assertTrue(is_array($attribs));
- $this->assertTrue(empty($attribs));
- }
- public function testNameIsInitiallyNull()
- {
- $this->assertNull($this->form->getName());
- }
- public function testCanSetName()
- {
- $this->testNameIsInitiallyNull();
- $this->form->setName('foo');
- $this->assertEquals('foo', $this->form->getName());
- }
- public function testZeroAsNameIsAllowed()
- {
- try {
- $this->form->setName(0);
- $this->assertEquals(0, $this->form->getName());
- } catch (Zend_Form_Exception $e) {
- $this->fail('Should allow zero as form name');
- }
- }
- public function testSetNameNormalizesValueToContainOnlyValidVariableCharacters()
- {
- $this->form->setName('f%\o^&*)o\(%$b#@!.a}{;-,r');
- $this->assertEquals('foobar', $this->form->getName());
- try {
- $this->form->setName('%\^&*)\(%$#@!.}{;-,');
- $this->fail('Empty names should raise exception');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('Invalid name provided', $e->getMessage());
- }
- }
- public function testActionDefaultsToEmptyString()
- {
- $this->assertSame('', $this->form->getAction());
- }
- public function testCanSetAction()
- {
- $this->testActionDefaultsToEmptyString();
- $this->form->setAction('/foo/bar');
- $this->assertEquals('/foo/bar', $this->form->getAction());
- }
- /**
- * @group ZF-7067
- */
- public function testCanSetActionWithGetParams()
- {
- $this->testActionDefaultsToEmptyString();
- $this->form->setAction('/foo.php?bar')
- ->setView(new Zend_View);
- $html = $this->form->render();
- $this->assertContains('action="/foo.php?bar"', $html);
- $this->assertEquals('/foo.php?bar', $this->form->getAction());
- }
- public function testMethodDefaultsToPost()
- {
- $this->assertEquals('post', $this->form->getMethod());
- }
- public function testCanSetMethod()
- {
- $this->testMethodDefaultsToPost();
- $this->form->setMethod('get');
- $this->assertEquals('get', $this->form->getMethod());
- }
- public function testMethodLimitedToGetPostPutAndDelete()
- {
- foreach (array('get', 'post', 'put', 'delete') as $method) {
- $this->form->setMethod($method);
- $this->assertEquals($method, $this->form->getMethod());
- }
- try {
- $this->form->setMethod('bogus');
- $this->fail('Invalid method type should throw exception');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('invalid', $e->getMessage());
- }
- }
- public function testEnctypeDefaultsToUrlEncoded()
- {
- $this->assertEquals(Zend_Form::ENCTYPE_URLENCODED, $this->form->getEnctype());
- }
- public function testCanSetEnctype()
- {
- $this->testEnctypeDefaultsToUrlEncoded();
- $this->form->setEnctype(Zend_Form::ENCTYPE_MULTIPART);
- $this->assertEquals(Zend_Form::ENCTYPE_MULTIPART, $this->form->getEnctype());
- }
- public function testLegendInitiallyNull()
- {
- $this->assertNull($this->form->getLegend());
- }
- public function testCanSetLegend()
- {
- $this->testLegendInitiallyNull();
- $legend = "This is a legend";
- $this->form->setLegend($legend);
- $this->assertEquals($legend, $this->form->getLegend());
- }
- public function testDescriptionInitiallyNull()
- {
- $this->assertNull($this->form->getDescription());
- }
- public function testCanSetDescription()
- {
- $this->testDescriptionInitiallyNull();
- $description = "This is a description";
- $this->form->setDescription($description);
- $this->assertEquals($description, $this->form->getDescription());
- }
- // Plugin loaders
- public function testGetPluginLoaderRetrievesDefaultDecoratorPluginLoader()
- {
- $loader = $this->form->getPluginLoader('decorator');
- $this->assertTrue($loader instanceof Zend_Loader_PluginLoader);
- $paths = $loader->getPaths('Zend_Form_Decorator');
- $this->assertTrue(is_array($paths), var_export($loader, 1));
- $this->assertTrue(0 < count($paths));
- $this->assertContains('Form', $paths[0]);
- $this->assertContains('Decorator', $paths[0]);
- }
- public function testPassingInvalidTypeToSetPluginLoaderThrowsException()
- {
- $loader = new Zend_Loader_PluginLoader();
- try {
- $this->form->setPluginLoader($loader, 'foo');
- $this->fail('Invalid plugin loader type should raise exception');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('Invalid type', $e->getMessage());
- }
- }
- public function testPassingInvalidTypeToGetPluginLoaderThrowsException()
- {
- try {
- $this->form->getPluginLoader('foo');
- $this->fail('Invalid plugin loader type should raise exception');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('Invalid type', $e->getMessage());
- }
- }
- public function testCanSetCustomDecoratorPluginLoader()
- {
- $loader = new Zend_Loader_PluginLoader();
- $this->form->setPluginLoader($loader, 'decorator');
- $test = $this->form->getPluginLoader('decorator');
- $this->assertSame($loader, $test);
- }
- public function testPassingInvalidTypeToAddPrefixPathThrowsException()
- {
- try {
- $this->form->addPrefixPath('Zend_Foo', 'Zend/Foo/', 'foo');
- $this->fail('Passing invalid loader type to addPrefixPath() should raise exception');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('Invalid type', $e->getMessage());
- }
- }
- public function testCanAddDecoratorPluginLoaderPrefixPath()
- {
- $loader = $this->form->getPluginLoader('decorator');
- $this->form->addPrefixPath('Zend_Foo', 'Zend/Foo/', 'decorator');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertTrue(is_array($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- public function testUpdatedDecoratorPrefixPathUsedForNewElements()
- {
- $loader = $this->form->getPluginLoader('decorator');
- $this->form->addPrefixPath('Zend_Foo', 'Zend/Foo/', 'decorator');
- $foo = new Zend_Form_Element_Text('foo');
- $this->form->addElement($foo);
- $loader = $foo->getPluginLoader('decorator');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertTrue(is_array($paths));
- $this->assertContains('Foo', $paths[0]);
- $this->form->addElement('text', 'bar');
- $bar = $this->form->bar;
- $loader = $bar->getPluginLoader('decorator');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertTrue(is_array($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- public function testUpdatedDecoratorPrefixPathUsedForNewDisplayGroups()
- {
- $loader = $this->form->getPluginLoader('decorator');
- $this->form->addPrefixPath('Zend_Foo', 'Zend/Foo/', 'decorator');
- $this->setupElements();
- $foo = $this->form->foo;
- $loader = $foo->getPluginLoader('decorator');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertTrue(is_array($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- public function testUpdatedPrefixPathUsedForNewSubForms()
- {
- $loader = $this->form->getPluginLoader('decorator');
- $this->form->addPrefixPath('Zend_Foo', 'Zend/Foo/', 'decorator');
- $this->setupSubForm();
- $loader = $this->form->sub->getPluginLoader('decorator');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertTrue(is_array($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- public function testGetPluginLoaderRetrievesDefaultElementPluginLoader()
- {
- $loader = $this->form->getPluginLoader('element');
- $this->assertTrue($loader instanceof Zend_Loader_PluginLoader);
- $paths = $loader->getPaths('Zend_Form_Element');
- $this->assertTrue(is_array($paths), var_export($loader, 1));
- $this->assertTrue(0 < count($paths));
- $this->assertContains('Form', $paths[0]);
- $this->assertContains('Element', $paths[0]);
- }
- public function testCanSetCustomDecoratorElementLoader()
- {
- $loader = new Zend_Loader_PluginLoader();
- $this->form->setPluginLoader($loader, 'element');
- $test = $this->form->getPluginLoader('element');
- $this->assertSame($loader, $test);
- }
- public function testCanAddElementPluginLoaderPrefixPath()
- {
- $loader = $this->form->getPluginLoader('element');
- $this->form->addPrefixPath('Zend_Foo', 'Zend/Foo/', 'element');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertTrue(is_array($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- public function testAddAllPluginLoaderPrefixPathsSimultaneously()
- {
- $decoratorLoader = new Zend_Loader_PluginLoader();
- $elementLoader = new Zend_Loader_PluginLoader();
- $this->form->setPluginLoader($decoratorLoader, 'decorator')
- ->setPluginLoader($elementLoader, 'element')
- ->addPrefixPath('Zend', 'Zend/');
- $paths = $decoratorLoader->getPaths('Zend_Decorator');
- $this->assertTrue(is_array($paths), var_export($paths, 1));
- $this->assertContains('Decorator', $paths[0]);
- $paths = $elementLoader->getPaths('Zend_Element');
- $this->assertTrue(is_array($paths), var_export($paths, 1));
- $this->assertContains('Element', $paths[0]);
- }
- // Elements:
- public function testCanAddAndRetrieveSingleElements()
- {
- $element = new Zend_Form_Element('foo');
- $this->form->addElement($element);
- $this->assertSame($element, $this->form->getElement('foo'));
- }
- public function testGetElementReturnsNullForUnregisteredElement()
- {
- $this->assertNull($this->form->getElement('foo'));
- }
- public function testCanAddAndRetrieveSingleElementsByStringType()
- {
- $this->form->addElement('text', 'foo');
- $element = $this->form->getElement('foo');
- $this->assertTrue($element instanceof Zend_Form_Element);
- $this->assertTrue($element instanceof Zend_Form_Element_Text);
- $this->assertEquals('foo', $element->getName());
- }
- public function testAddElementAsStringElementThrowsExceptionWhenNoNameProvided()
- {
- try {
- $this->form->addElement('text');
- $this->fail('Should not be able to specify string element type without name');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('must have', $e->getMessage());
- }
- }
- public function testCreateElementReturnsNewElement()
- {
- $element = $this->form->createElement('text', 'foo');
- $this->assertTrue($element instanceof Zend_Form_Element);
- }
- public function testCreateElementDoesNotAttachElementToForm()
- {
- $element = $this->form->createElement('text', 'foo');
- $this->assertTrue($element instanceof Zend_Form_Element);
- $this->assertNull($this->form->foo);
- }
- public function testCanAddAndRetrieveMultipleElements()
- {
- $this->form->addElements(array(
- 'foo' => 'text',
- array('text', 'bar'),
- array('text', 'baz', array('foo' => 'bar')),
- new Zend_Form_Element_Text('bat'),
- ));
- $elements = $this->form->getElements();
- $names = array('foo', 'bar', 'baz', 'bat');
- $this->assertEquals($names, array_keys($elements));
- $foo = $elements['foo'];
- $this->assertTrue($foo instanceof Zend_Form_Element_Text);
- $bar = $elements['bar'];
- $this->assertTrue($bar instanceof Zend_Form_Element_Text);
- $baz = $elements['baz'];
- $this->assertTrue($baz instanceof Zend_Form_Element_Text);
- $this->assertEquals('bar', $baz->foo, var_export($baz->getAttribs(), 1));
- $bat = $elements['bat'];
- $this->assertTrue($bat instanceof Zend_Form_Element_Text);
- }
- public function testSetElementsOverwritesExistingElements()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->form->setElements(array(
- 'bogus' => 'text'
- ));
- $elements = $this->form->getElements();
- $names = array('bogus');
- $this->assertEquals($names, array_keys($elements));
- }
- public function testCanRemoveSingleElement()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->assertTrue($this->form->removeElement('bar'));
- $this->assertNull($this->form->getElement('bar'));
- }
- public function testRemoveElementReturnsFalseWhenElementNotRegistered()
- {
- $this->assertFalse($this->form->removeElement('bogus'));
- }
- public function testCanClearAllElements()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->form->clearElements();
- $elements = $this->form->getElements();
- $this->assertTrue(is_array($elements));
- $this->assertTrue(empty($elements));
- }
- public function testGetValueReturnsNullForUndefinedElements()
- {
- $this->assertNull($this->form->getValue('foo'));
- }
- public function testCanSetElementDefaultValues()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $values = array(
- 'foo' => 'foovalue',
- 'bar' => 'barvalue',
- 'baz' => 'bazvalue',
- 'bat' => 'batvalue'
- );
- $this->form->setDefaults($values);
- $elements = $this->form->getElements();
- foreach (array_keys($values) as $name) {
- $this->assertEquals($name . 'value', $elements[$name]->getValue(), var_export($elements[$name], 1));
- }
- }
- public function testSettingElementDefaultsDoesNotSetElementValuesToNullIfNotInDefaultsArray()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->form->baz->setValue('testing');
- $this->form->bar->setValue('testing');
- $values = array(
- 'foo' => 'foovalue',
- 'bat' => 'batvalue'
- );
- $this->form->setDefaults($values);
- $this->assertEquals('foovalue', $this->form->foo->getValue());
- $this->assertEquals('batvalue', $this->form->bat->getValue());
- $this->assertNotNull($this->form->baz->getValue());
- $this->assertNotNull($this->form->bar->getValue());
- }
- public function testCanRetrieveSingleElementValue()
- {
- $this->form->addElement('text', 'foo', array('value' => 'foovalue'));
- $this->assertEquals('foovalue', $this->form->getValue('foo'));
- }
- public function testCanRetrieveAllElementValues()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $values = array(
- 'foo' => 'foovalue',
- 'bar' => 'barvalue',
- 'baz' => 'bazvalue',
- 'bat' => 'batvalue'
- );
- $this->form->setDefaults($values);
- $test = $this->form->getValues();
- $elements = $this->form->getElements();
- foreach (array_keys($values) as $name) {
- $this->assertEquals($values[$name], $test[$name]);
- }
- }
- public function testRetrievingAllElementValuesSkipsThoseFlaggedAsIgnore()
- {
- $this->form->addElements(array(
- 'foo' => 'text',
- 'bar' => 'text',
- 'baz' => 'text'
- ));
- $this->form->setDefaults(array(
- 'foo' => 'Foo Value',
- 'bar' => 'Bar Value',
- 'baz' => 'Baz Value',
- ));
- $this->form->bar->setIgnore(true);
- $test = $this->form->getValues();
- $this->assertFalse(array_key_exists('bar', $test));
- $this->assertTrue(array_key_exists('foo', $test));
- $this->assertTrue(array_key_exists('baz', $test));
- }
- public function testCanRetrieveSingleUnfilteredElementValue()
- {
- $foo = new Zend_Form_Element_Text('foo');
- $foo->addFilter('StringToUpper')
- ->setValue('foovalue');
- $this->form->addElement($foo);
- $this->assertEquals('FOOVALUE', $this->form->getValue('foo'));
- $this->assertEquals('foovalue', $this->form->getUnfilteredValue('foo'));
- }
- public function testCanRetrieveAllUnfilteredElementValues()
- {
- $foo = new Zend_Form_Element_Text('foo');
- $foo->addFilter('StringToUpper')
- ->setValue('foovalue');
- $bar = new Zend_Form_Element_Text('bar');
- $bar->addFilter('StringToUpper')
- ->setValue('barvalue');
- $this->form->addElements(array($foo, $bar));
- $values = $this->form->getValues();
- $unfiltered = $this->form->getUnfilteredValues();
- foreach (array('foo', 'bar') as $key) {
- $value = $key . 'value';
- $this->assertEquals(strtoupper($value), $values[$key]);
- $this->assertEquals($value, $unfiltered[$key]);
- }
- }
- public function testOverloadingElements()
- {
- $this->form->addElement('text', 'foo');
- $this->assertTrue(isset($this->form->foo));
- $element = $this->form->foo;
- $this->assertTrue($element instanceof Zend_Form_Element);
- unset($this->form->foo);
- $this->assertFalse(isset($this->form->foo));
- $bar = new Zend_Form_Element_Text('bar');
- $this->form->bar = $bar;
- $this->assertTrue(isset($this->form->bar));
- $element = $this->form->bar;
- $this->assertSame($bar, $element);
- }
- public function testOverloadingGetReturnsNullForUndefinedFormItems()
- {
- $this->assertNull($this->form->bogus);
- }
- public function testOverloadingSetThrowsExceptionForInvalidTypes()
- {
- try {
- $this->form->foo = true;
- $this->fail('Overloading should not allow scalars');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('Only form elements and groups may be overloaded', $e->getMessage());
- }
- try {
- $this->form->foo = new Zend_Config(array());
- $this->fail('Overloading should not allow arbitrary object types');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('Only form elements and groups may be overloaded', $e->getMessage());
- $this->assertContains('Zend_Config', $e->getMessage());
- }
- }
- public function testFormIsNotAnArrayByDefault()
- {
- $this->assertFalse($this->form->isArray());
- }
- public function testCanSetArrayFlag()
- {
- $this->testFormIsNotAnArrayByDefault();
- $this->form->setIsArray(true);
- $this->assertTrue($this->form->isArray());
- $this->form->setIsArray(false);
- $this->assertFalse($this->form->isArray());
- }
- public function testElementsBelongToReturnsFormNameWhenFormIsArray()
- {
- $this->form->setName('foo')
- ->setIsArray(true);
- $this->assertEquals('foo', $this->form->getElementsBelongTo());
- }
- public function testElementsInitiallyBelongToNoArrays()
- {
- $this->assertNull($this->form->getElementsBelongTo());
- }
- public function testCanSetArrayToWhichElementsBelong()
- {
- $this->testElementsInitiallyBelongToNoArrays();
- $this->form->setElementsBelongTo('foo');
- $this->assertEquals('foo', $this->form->getElementsBelongTo());
- }
- public function testSettingArrayToWhichElementsBelongSetsArrayFlag()
- {
- $this->testFormIsNotAnArrayByDefault();
- $this->testCanSetArrayToWhichElementsBelong();
- $this->assertTrue($this->form->isArray());
- }
- public function testArrayToWhichElementsBelongCanConsistOfValidVariableCharsOnly()
- {
- $this->testElementsInitiallyBelongToNoArrays();
- $this->form->setElementsBelongTo('f%\o^&*)o\(%$b#@!.a}{;-,r');
- $this->assertEquals('foobar', $this->form->getElementsBelongTo());
- }
- public function testSettingArrayToWhichElementsBelongEmptyClearsIt()
- {
- $this->testCanSetArrayToWhichElementsBelong();
- $this->form->setElementsBelongTo('');
- $this->assertNull($this->form->getElementsBelongTo());
- }
- public function testSettingArrayToWhichElementsBelongEmptySetsArrayFlagToFalse()
- {
- $this->testSettingArrayToWhichElementsBelongEmptyClearsIt();
- $this->assertFalse($this->form->isArray());
- }
- /**
- * @group ZF-6741
- */
- public function testUseIdForDdTagByDefault()
- {
- $this->form->addSubForm(new Zend_Form_SubForm(), 'bar')
- ->bar->addElement('text', 'foo');
- $html = $this->form->setView($this->getView())->render();
- $this->assertRegexp('/<dd.*?bar-foo.*?>/', $html);
- }
- public function testUseIdForDtTagByDefault()
- {
- $this->form->addSubForm(new Zend_Form_SubForm(), 'bar')
- ->bar->addElement('text', 'foo');
- $html = $this->form->setView($this->getView())->render();
- $this->assertRegexp('/<dt.*?bar-foo.*?>/', $html);
- }
- /**
- * @group ZF-3146
- */
- public function testSetElementsBelongToShouldApplyToBothExistingAndFutureElements()
- {
- $this->form->addElement('text', 'testBelongsTo');
- $this->form->setElementsBelongTo('foo');
- $this->assertEquals('foo', $this->form->testBelongsTo->getBelongsTo(), 'Failed determining testBelongsTo belongs to array');
- $this->setupElements();
- foreach ($this->form->getElements() as $element) {
- $message = sprintf('Failed determining element "%s" belongs to foo', $element->getName());
- $this->assertEquals('foo', $element->getBelongsTo(), $message);
- }
- }
- /**
- * @group ZF-3742
- */
- public function testElementsInDisplayGroupsShouldInheritFormElementsBelongToSetting()
- {
- $subForm = new Zend_Form_SubForm();
- $subForm->addElements(array(
- new Zend_Form_Element_Text('foo'),
- new Zend_Form_Element_Text('bar'),
- new Zend_Form_Element_Text('baz'),
- new Zend_Form_Element_Text('bat'),
- ))
- ->addDisplayGroup(array('bar', 'baz'), 'barbaz');
- $this->form->addSubForm($subForm, 'sub')
- ->setElementsBelongTo('myform')
- ->setView(new Zend_View);
- $html = $this->form->render();
- foreach (array('foo', 'bar', 'baz', 'bat') as $test) {
- $this->assertContains('id="myform-sub-' . $test . '"', $html);
- $this->assertContains('name="myform[sub][' . $test . ']"', $html);
- }
- }
- public function testIsValidWithOneLevelElementsBelongTo()
- {
- $this->form->addElement('text', 'test')->test
- ->addValidator('Identical', false, array('Test Value'));
- $this->form->setElementsBelongTo('foo');
- $data = array(
- 'foo' => array(
- 'test' => 'Test Value',
- ),
- );
- $this->assertTrue($this->form->isValid($data));
- }
- public function testIsValidWithMultiLevelElementsBelongTo()
- {
- $this->form->addElement('text', 'test')->test
- ->addValidator('Identical', false, array('Test Value'));
- $this->form->setElementsBelongTo('foo[bar][zot]');
- $data = array(
- 'foo' => array(
- 'bar' => array(
- 'zot' => array(
- 'test' => 'Test Value',
- ),
- ),
- ),
- );
- $this->assertTrue($this->form->isValid($data));
- }
- // Sub forms
- public function testCanAddAndRetrieveSingleSubForm()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'));
- $this->form->addSubForm($subForm, 'page1');
- $test = $this->form->getSubForm('page1');
- $this->assertSame($subForm, $test);
- }
- public function testAddingSubFormSetsSubFormName()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'));
- $this->form->addSubForm($subForm, 'page1');
- $this->assertEquals('page1', $subForm->getName());
- }
- public function testAddingSubFormResetsBelongsToWithDifferentSubFormName()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->setName('quo')
- ->addElement('text', 'foo');
- $this->form->addSubForm($subForm, 'bar');
- $this->assertEquals('bar', $subForm->foo->getBelongsTo());
- }
- public function testGetSubFormReturnsNullForUnregisteredSubForm()
- {
- $this->assertNull($this->form->getSubForm('foo'));
- }
- public function testCanAddAndRetrieveMultipleSubForms()
- {
- $page1 = new Zend_Form_SubForm();
- $page2 = new Zend_Form_SubForm();
- $page3 = new Zend_Form_SubForm();
- $this->form->addSubForms(array(
- 'page1' => $page1,
- array($page2, 'page2'),
- array($page3, 'page3', 3)
- ));
- $subforms = $this->form->getSubForms();
- $keys = array('page1', 'page2', 'page3');
- $this->assertEquals($keys, array_keys($subforms));
- $this->assertSame($page1, $subforms['page1']);
- $this->assertSame($page2, $subforms['page2']);
- $this->assertSame($page3, $subforms['page3']);
- }
- public function testSetSubFormsOverwritesExistingSubForms()
- {
- $this->testCanAddAndRetrieveMultipleSubForms();
- $foo = new Zend_Form_SubForm();
- $this->form->setSubForms(array('foo' => $foo));
- $subforms = $this->form->getSubForms();
- $keys = array('foo');
- $this->assertEquals($keys, array_keys($subforms));
- $this->assertSame($foo, $subforms['foo']);
- }
- public function testCanRemoveSingleSubForm()
- {
- $this->testCanAddAndRetrieveMultipleSubForms();
- $this->assertTrue($this->form->removeSubForm('page2'));
- $this->assertNull($this->form->getSubForm('page2'));
- }
- public function testRemoveSubFormReturnsFalseForNonexistantSubForm()
- {
- $this->assertFalse($this->form->removeSubForm('foo'));
- }
- public function testCanClearAllSubForms()
- {
- $this->testCanAddAndRetrieveMultipleSubForms();
- $this->form->clearSubForms();
- $subforms = $this->form->getSubForms();
- $this->assertTrue(is_array($subforms));
- $this->assertTrue(empty($subforms));
- }
- public function testOverloadingSubForms()
- {
- $foo = new Zend_Form_SubForm;
- $this->form->addSubForm($foo, 'foo');
- $this->assertTrue(isset($this->form->foo));
- $subform = $this->form->foo;
- $this->assertSame($foo, $subform);
- unset($this->form->foo);
- $this->assertFalse(isset($this->form->foo));
- $bar = new Zend_Form_SubForm();
- $this->form->bar = $bar;
- $this->assertTrue(isset($this->form->bar));
- $subform = $this->form->bar;
- $this->assertSame($bar, $subform);
- }
- public function testCanSetDefaultsForSubFormElementsFromForm()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'));
- $this->form->addSubForm($subForm, 'page1');
- $data = array('foo' => 'foo value', 'bar' => 'bar value');
- $this->form->setDefaults($data);
- $this->assertEquals($data['foo'], $subForm->foo->getValue());
- $this->assertEquals($data['bar'], $subForm->bar->getValue());
- }
- public function testCanSetDefaultsForSubFormElementsFromFormWithArray()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'));
- $this->form->addSubForm($subForm, 'page1');
- $data = array( 'page1' => array(
- 'foo' => 'foo value',
- 'bar' => 'bar value'
- ));
- $this->form->setDefaults($data);
- $this->assertEquals($data['page1']['foo'], $subForm->foo->getValue());
- $this->assertEquals($data['page1']['bar'], $subForm->bar->getValue());
- }
- public function testGetValuesReturnsSubFormValues()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'));
- $subForm->foo->setValue('foo value');
- $subForm->bar->setValue('bar value');
- $this->form->addSubForm($subForm, 'page1');
- $values = $this->form->getValues();
- $this->assertTrue(isset($values['page1']));
- $this->assertTrue(isset($values['page1']['foo']));
- $this->assertTrue(isset($values['page1']['bar']));
- $this->assertEquals($subForm->foo->getValue(), $values['page1']['foo']);
- $this->assertEquals($subForm->bar->getValue(), $values['page1']['bar']);
- }
- public function testGetValuesReturnsSubFormValuesFromArrayToWhichElementsBelong()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'))
- ->setElementsBelongTo('subform');
- $subForm->foo->setValue('foo value');
- $subForm->bar->setValue('bar value');
- $this->form->addSubForm($subForm, 'page1');
- $values = $this->form->getValues();
- $this->assertTrue(isset($values['subform']), var_export($values, 1));
- $this->assertTrue(isset($values['subform']['foo']));
- $this->assertTrue(isset($values['subform']['bar']));
- $this->assertEquals($subForm->foo->getValue(), $values['subform']['foo']);
- $this->assertEquals($subForm->bar->getValue(), $values['subform']['bar']);
- }
- public function testGetValuesReturnsNestedSubFormValuesFromArraysToWhichElementsBelong()
- {
- $form = new Zend_Form();
- $form->setElementsBelongTo('foobar');
- $form->addElement('text', 'firstName')
- ->getElement('firstName')
- ->setRequired(true);
- $form->addElement('text', 'lastName')
- ->getElement('lastName')
- ->setRequired(true);
- $subForm = new Zend_Form_SubForm();
- $subForm->setElementsBelongTo('baz[quux]');
- $subForm->addElement('text', 'email')
- ->getElement('email')->setRequired(true);
- $subSubForm = new Zend_Form_SubForm();
- $subSubForm->setElementsBelongTo('bat');
- $subSubForm->addElement('checkbox', 'home')
- ->getElement('home')->setRequired(true);
- $subForm->addSubForm($subSubForm, 'subSub');
- $form->addSubForm($subForm, 'sub')
- ->addElement('submit', 'save', array('value' => 'submit', 'ignore' => true));
- $data = array('foobar' => array(
- 'firstName' => 'Mabel',
- 'lastName' => 'Cow',
- 'baz' => array(
- 'quux' => array(
- 'email' => 'mabel@cow.org',
- 'bat' => array(
- 'home' => 1,
- )
- ),
- )
- ));
- $this->assertTrue($form->isValid($data));
- $values = $form->getValues();
- $this->assertEquals($data, $values);
- }
- public function testGetValueCanReturnSubFormValues()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'));
- $subForm->foo->setValue('foo value');
- $subForm->bar->setValue('bar value');
- $this->form->addSubForm($subForm, 'page1');
- $values = $this->form->getValue('page1');
- $this->assertTrue(isset($values['foo']), var_export($values, 1));
- $this->assertTrue(isset($values['bar']));
- $this->assertEquals($subForm->foo->getValue(), $values['foo']);
- $this->assertEquals($subForm->bar->getValue(), $values['bar']);
- }
- public function testGetValueCanReturnSubFormValuesFromArrayToWhichElementsBelong()
- {
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'))
- ->setElementsBelongTo('subform');
- $subForm->foo->setValue('foo value');
- $subForm->bar->setValue('bar value');
- $this->form->addSubForm($subForm, 'page1');
- $values = $this->form->getValue('subform');
- $this->assertTrue(isset($values['foo']), var_export($values, 1));
- $this->assertTrue(isset($values['bar']));
- $this->assertEquals($subForm->foo->getValue(), $values['foo']);
- $this->assertEquals($subForm->bar->getValue(), $values['bar']);
- }
- public function testIsValidCanValidateSubFormsWithArbitraryElementsBelong()
- {
- $subForm = new Zend_Form_SubForm();
- $subForm->addElement('text', 'test')->test
- ->setRequired(true)->addValidator('Identical', false, array('Test Value'));
- $this->form->addSubForm($subForm, 'sub');
- $this->form->setElementsBelongTo('foo[bar]');
- $subForm->setElementsBelongTo('my[subform]');
- $data = array(
- 'foo' => array(
- 'bar' => array(
- 'my' => array(
- 'subform' => array(
- 'test' => 'Test Value',
- ),
- ),
- ),
- ),
- );
- $this->assertTrue($this->form->isValid($data));
- }
- public function testIsValidCanValidateNestedSubFormsWithArbitraryElementsBelong()
- {
- $subForm = new Zend_Form_SubForm();
- $subForm->addElement('text', 'test1')->test1
- ->setRequired(true)->addValidator('Identical', false, array('Test1 Value'));
- $this->form->addSubForm($subForm, 'sub');
- $subSubForm = new Zend_Form_SubForm();
- $subSubForm->addElement('text', 'test2')->test2
- ->setRequired(true)->addValidator('Identical', false, array('Test2 Value'));
- $subForm->addSubForm($subSubForm, 'subSub');
- $this->form->setElementsBelongTo('form[first]');
- // Notice we skipped subForm, to mix manual and auto elementsBelongTo.
- $subSubForm->setElementsBelongTo('subsubform[first]');
- $data = array(
- 'form' => array(
- 'first' => array(
- 'sub' => array(
- 'test1' => 'Test1 Value',
- 'subsubform' => array(
- 'first' => array(
- 'test2' => 'Test2 Value',
- ),
- ),
- ),
- ),
- ),
- );
- $this->assertTrue($this->form->isValid($data));
- }
- /**
- * @group ZF-9679
- */
- public function testIsValidDiscardsValidatedValues()
- {
- $this->form->addElement('text', 'foo');
- $this->form->addSubForm(new Zend_Form_SubForm(), 'bar')
- ->bar->addElement('text', 'foo')
- ->foo->setAllowEmpty(true)
- ->addValidator('Identical', true, '');
- $this->assertTrue($this->form->isValid(array('foo' => 'foo Value')));
- }
- /**
- * @group ZF-9666
- */
- public function testSetDefaultsDiscardsPopulatedValues()
- {
- $this->form->addElement('text', 'foo');
- $this->form->addSubForm(new Zend_Form_SubForm(), 'bar')
- ->bar->addElement('text', 'foo');
- $this->form->populate(array('foo' => 'foo Value'));
- $html = $this->form->setView($this->getView())
- ->render();
- $this->assertEquals(1, preg_match_all('/foo Value/', $html, $matches));
- }
- public function _setup9350()
- {
- $this->form->addSubForm(new Zend_Form_SubForm(), 'foo')
- ->foo->setElementsBelongTo('foo[foo]') // foo[foo]
- ->addSubForm(new Zend_Form_SubForm(), 'foo') // foo[foo][foo]
- ->foo->setIsArray(false)
- ->addElement('text', 'foo') // foo[foo][foo][foo]
- ->foo->addValidator('Identical',
- false,
- array('foo Value'));
- $this->form->foo->addSubForm(new Zend_Form_SubForm(), 'baz') // foo[foo][baz]
- ->baz->setIsArray(false)
- ->addSubForm(new Zend_Form_SubForm(), 'baz')
- ->baz->setElementsBelongTo('baz[baz]') // foo[foo][baz][baz][baz]
- ->addElement('text', 'baz') // foo[foo][baz][baz][baz][baz]
- ->baz->addValidator('Identical',
- false,
- array('baz Value'));
- // This is appending a different named SubForm and setting
- // elementsBelongTo to a !isArray() Subform name from same level
- $this->form->foo->addSubForm(new Zend_Form_SubForm(), 'quo')
- ->quo->setElementsBelongTo('foo') // foo[foo][foo] !!!!
- ->addElement('text', 'quo') // foo[foo][foo][quo]
- ->quo->addValidator('Identical',
- false,
- array('quo Value'));
- // This is setting elementsBelongTo point into the middle of
- // a chain of another SubForms elementsBelongTo
- $this->form->addSubForm(new Zend_Form_SubForm(), 'duh')
- ->duh->setElementsBelongTo('foo[zoo]') // foo[zoo] !!!!
- ->addElement('text', 'zoo') // foo[zoo][zoo]
- ->zoo->addValidator('Identical',
- false,
- array('zoo Value'));
- // This is !isArray SubForms Name equal to the last segment
- // of another SubForms elementsBelongTo
- $this->form->addSubForm(new Zend_Form_SubForm(), 'iek')
- ->iek->setElementsBelongTo('foo') // foo !!!!
- ->addSubForm(new Zend_Form_SubForm(), 'zoo') // foo[zoo] !!!!
- ->zoo->setIsArray(false)
- ->addElement('text', 'iek') // foo[zoo][iek]
- ->iek->addValidator('Identical',
- false,
- array('iek Value'));
- $data = array('valid' => array('foo' =>
- array('foo' =>
- array('foo' =>
- array('foo' => 'foo Value',
- 'quo' => 'quo Value'),
- 'baz' =>
- array('baz' =>
- array('baz' =>
- array('baz' => 'baz Value')))),
- 'zoo' =>
- array('zoo' => 'zoo Value',
- 'iek' => 'iek Value'))),
- 'invalid' => array('foo' =>
- array('foo' =>
- array('foo' =>
- array('foo' => 'foo Invalid',
- 'quo' => 'quo Value'),
- 'baz' =>
- array('baz' =>
- array('baz' =>
- array('baz' => 'baz Value')))),
- 'zoo' =>
- array('zoo' => 'zoo Value',
- 'iek' => 'iek Invalid'))),
- 'partial' => array('foo' =>
- array('foo' =>
- array('baz' =>
- array('baz' =>
- array('baz' =>
- array('baz' => 'baz Value'))),
- 'foo' =>
- array('quo' => 'quo Value')),
- 'zoo' =>
- array('zoo' => 'zoo Value'))));
- return $data;
- }
- public function testIsValidEqualSubFormAndElementName()
- {
- $data = $this->_setup9350();
- $this->assertTrue($this->form->isValid($data['valid']));
- }
- public function testIsValidPartialEqualSubFormAndElementName()
- {
- $data = $this->_setup9350();
- $this->assertTrue($this->form->isValidPartial($data['partial']));
- }
- public function testPopulateWithElementsBelongTo()
- {
- $data = $this->_setup9350();
- $this->form->setView($this->getView())->populate($data['valid']);
- $html = $this->form->render();
- $this->assertRegexp('/value=.foo Value./', $html);
- $this->assertRegexp('/value=.baz Value./', $html);
- $this->assertRegexp('/value=.quo Value./', $html);
- $this->assertRegexp('/value=.zoo Value./', $html);
- $this->assertRegexp('/value=.iek Value./', $html);
- }
- public function testGetValidValuesWithElementsBelongTo()
- {
- $data = $this->_setup9350();
- $this->assertSame($this->form->getValidValues($data['invalid']), $data['partial']);
- }
- public function testGetErrorsWithElementsBelongTo()
- {
- $data = $this->_setup9350();
- $this->form->isValid($data['invalid']);
- $errors = $this->form->getErrors();
- $this->assertTrue(isset($errors['foo']['foo']['foo']['foo']));
- $this->assertTrue(isset($errors['foo']['zoo']['iek']));
- }
- public function testGetValuesWithElementsBelongTo()
- {
- $data = $this->_setup9350();
- $this->form->populate($data['valid']);
- $this->assertSame($this->form->getValues(), $data['valid']);
- }
- public function testGetMessagesWithElementsBelongTo()
- {
- $data = $this->_setup9350();
- $this->form->isValid($data['invalid']);
- $msgs = $this->form->getMessages();
- $this->assertTrue(isset($msgs['foo']['foo']['foo']['foo']));
- $this->assertTrue(isset($msgs['foo']['zoo']['iek']));
- }
- public function _setup9401()
- {
- $sub0 = 0;
- $this->form->addSubForm(new Zend_Form_SubForm(), $sub0)
- ->$sub0->setElementsBelongTo('f[2]')
- ->addElement('text', 'foo')
- ->foo->addValidator('Identical',
- false,
- array('foo Value'));
- $this->form->$sub0->addSubForm(new Zend_Form_SubForm(), $sub0)
- ->$sub0->addElement('text', 'quo')
- ->quo->addValidator('Identical',
- false,
- array('quo Value'));
- $data = array('valid' => array('f' =>
- array(2 =>
- array('foo' => 'foo Value',
- 0 =>
- array('quo' => 'quo Value')))),
- 'invalid' => array('f' =>
- array(2 =>
- array('foo' => 'foo Invalid',
- 0 =>
- array('quo' => 'quo Value')))),
- 'partial' => array('f' =>
- array(2 =>
- array(0 =>
- array('quo' => 'quo Value')))));
- return $data;
- }
- public function testGetErrorsNumericalSubForms()
- {
- $data = $this->_setup9401();
- $this->form->isValid($data['invalid']);
- $err = $this->form->getErrors();
- $this->assertTrue(is_array($err['f'][2]['foo']) && !empty($err['f'][2]['foo']));
- }
- public function testGetMessagesNumericalSubForms()
- {
- $data = $this->_setup9401();
- $this->form->isValid($data['invalid']);
- $msg = $this->form->getMessages();
- $this->assertTrue(is_array($msg['f'][2]['foo']) && !empty($msg['f'][2]['foo']));
- }
- public function testGetValuesNumericalSubForms()
- {
- $data = $this->_setup9401();
- $this->form->populate($data['valid']);
- $this->assertEquals($this->form->getValues(), $data['valid']);
- }
- public function testGetValidValuesNumericalSubForms()
- {
- $data = $this->_setup9401();
- $this->assertEquals($this->form->getValidValues($data['invalid']), $data['partial']);
- }
- public function _setup9607()
- {
- $this->form->addElement('text', 'foo')
- ->foo->setBelongsTo('bar[quo]')
- ->setRequired(true)
- ->addValidator('Identical',
- false,
- 'foo Value');
- $this->form->addElement('text', 'quo')
- ->quo->setBelongsTo('bar[quo]')
- ->addValidator('Identical',
- false,
- 'quo Value');
- $data = array('valid' => array('bar' =>
- array('quo' =>
- array('foo' => 'foo Value',
- 'quo' => 'quo Value'))),
- 'invalid' => array('bar' =>
- array('quo' =>
- array('foo' => 'foo Invalid',
- 'quo' => 'quo Value'))),
- 'partial' => array('bar' =>
- array('quo' =>
- array('quo' => 'quo Value'))));
- return $data;
- }
- public function testIsValidWithBelongsTo()
- {
- $data = $this->_setup9607();
- $this->assertTrue($this->form->isValid($data['valid']));
- }
- public function testIsValidPartialWithBelongsTo()
- {
- $data = $this->_setup9607();
- $this->assertTrue($this->form->isValidPartial($data['valid']));
- $this->assertSame('foo Value', $this->form->foo->getValue());
- }
- public function testPopulateWithBelongsTo()
- {
- $data = $this->_setup9607();
- $this->form->populate($data['valid']);
- $this->assertSame('foo Value', $this->form->foo->getValue());
- }
- public function testGetValuesWithBelongsTo()
- {
- $data = $this->_setup9607();
- $this->form->populate($data['valid']);
- $this->assertSame($data['valid'], $this->form->getValues());
- }
- public function testGetValidValuesWithBelongsTo()
- {
- $data = $this->_setup9607();
- $this->assertSame($data['partial'], $this->form->getValidValues($data['invalid']));
- }
- public function testZF9788_NumericArrayIndex()
- {
- $s = 2;
- $e = 4;
- $this->form->setName('f')
- ->setIsArray(true)
- ->addElement('text', (string)$e)
- ->$e->setRequired(true);
- $this->form->addSubForm(new Zend_Form_SubForm(), $s)
- ->$s->addElement('text', (string)$e)
- ->$e->setRequired(true);
- $valid = array('f' => array($e => 1,
- $s => array($e => 1)));
- $this->form->populate($valid);
- $this->assertEquals($valid, $this->form->getValues());
- $vv = $this->form->getValidValues(array('f' => array($e => 1,
- $s => array($e => 1))));
- $this->assertEquals($valid, $vv);
- $this->form->isValid(array());
- $err = $this->form->getErrors();
- $msg = $this->form->getMessages();
- $this->assertTrue(is_array($err['f'][$e]) && is_array($err['f'][$s][$e]));
- $this->assertTrue(is_array($msg['f'][$e]) && is_array($msg['f'][$s][$e]));
- }
- // Display groups
- public function testCanAddAndRetrieveSingleDisplayGroups()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->form->addDisplayGroup(array('bar', 'bat'), 'barbat');
- $group = $this->form->getDisplayGroup('barbat');
- $this->assertTrue($group instanceof Zend_Form_DisplayGroup);
- $elements = $group->getElements();
- $expected = array('bar' => $this->form->bar, 'bat' => $this->form->bat);
- $this->assertEquals($expected, $elements);
- }
- public function testDisplayGroupsMustContainAtLeastOneElement()
- {
- try {
- $this->form->addDisplayGroup(array(), 'foo');
- $this->fail('Empty display group should raise exception');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('No valid elements', $e->getMessage());
- }
- }
- public function testCanAddAndRetrieveMultipleDisplayGroups()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->form->addDisplayGroups(array(
- array(array('bar', 'bat'), 'barbat'),
- 'foobaz' => array('baz', 'foo')
- ));
- $groups = $this->form->getDisplayGroups();
- $expected = array(
- 'barbat' => array('bar' => $this->form->bar, 'bat' => $this->form->bat),
- 'foobaz' => array('baz' => $this->form->baz, 'foo' => $this->form->foo),
- );
- foreach ($groups as $group) {
- $this->assertTrue($group instanceof Zend_Form_DisplayGroup);
- }
- $this->assertEquals($expected['barbat'], $groups['barbat']->getElements());
- $this->assertEquals($expected['foobaz'], $groups['foobaz']->getElements());
- }
- public function testSetDisplayGroupsOverwritesExistingDisplayGroups()
- {
- $this->testCanAddAndRetrieveMultipleDisplayGroups();
- $this->form->setDisplayGroups(array('foobar' => array('bar', 'foo')));
- $groups = $this->form->getDisplayGroups();
- $expected = array('bar' => $this->form->bar, 'foo' => $this->form->foo);
- $this->assertEquals(1, count($groups));
- $this->assertTrue(isset($groups['foobar']));
- $this->assertEquals($expected, $groups['foobar']->getElements());
- }
- public function testCanRemoveSingleDisplayGroup()
- {
- $this->testCanAddAndRetrieveMultipleDisplayGroups();
- $this->assertTrue($this->form->removeDisplayGroup('barbat'));
- $this->assertNull($this->form->getDisplayGroup('barbat'));
- }
- public function testRemoveDisplayGroupReturnsFalseForNonexistantGroup()
- {
- $this->assertFalse($this->form->removeDisplayGroup('bogus'));
- }
- public function testCanClearAllDisplayGroups()
- {
- $this->testCanAddAndRetrieveMultipleDisplayGroups();
- $this->form->clearDisplayGroups();
- $groups = $this->form->getDisplayGroups();
- $this->assertTrue(is_array($groups));
- $this->assertTrue(empty($groups));
- }
- public function testOverloadingDisplayGroups()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->form->addDisplayGroup(array('foo', 'bar'), 'foobar');
- $this->assertTrue(isset($this->form->foobar));
- $group = $this->form->foobar;
- $expected = array('foo' => $this->form->foo, 'bar' => $this->form->bar);
- $this->assertEquals($expected, $group->getElements());
- unset($this->form->foobar);
- $this->assertFalse(isset($this->form->foobar));
- $this->form->barbaz = array('bar', 'baz');
- $this->assertTrue(isset($this->form->barbaz));
- $group = $this->form->barbaz;
- $expected = array('bar' => $this->form->bar, 'baz' => $this->form->baz);
- $this->assertSame($expected, $group->getElements());
- }
- public function testDefaultDisplayGroupClassExists()
- {
- $this->assertEquals('Zend_Form_DisplayGroup', $this->form->getDefaultDisplayGroupClass());
- }
- public function testCanSetDefaultDisplayGroupClass()
- {
- $this->testDefaultDisplayGroupClassExists();
- $this->form->setDefaultDisplayGroupClass('Zend_Form_FormTest_DisplayGroup');
- $this->assertEquals('Zend_Form_FormTest_DisplayGroup', $this->form->getDefaultDisplayGroupClass());
- }
- public function testDefaultDisplayGroupClassUsedForNewDisplayGroups()
- {
- $this->form->setDefaultDisplayGroupClass('Zend_Form_FormTest_DisplayGroup');
- $this->setupElements();
- $this->form->addDisplayGroup(array('foo', 'bar'), 'foobar');
- $displayGroup = $this->form->getDisplayGroup('foobar');
- $this->assertTrue($displayGroup instanceof Zend_Form_FormTest_DisplayGroup);
- }
- public function testCanPassDisplayGroupClassWhenAddingDisplayGroup()
- {
- $this->setupElements();
- $this->form->addDisplayGroup(array('foo', 'bar'), 'foobar', array('displayGroupClass' => 'Zend_Form_FormTest_DisplayGroup'));
- $this->assertTrue($this->form->foobar instanceof Zend_Form_FormTest_DisplayGroup);
- }
- /**
- * @group ZF-3254
- */
- public function testAddingDisplayGroupShouldPassOptions()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->form->addDisplayGroup(array('bar', 'bat'), 'barbat', array('disableLoadDefaultDecorators' => true));
- $group = $this->form->getDisplayGroup('barbat');
- $this->assertTrue($group instanceof Zend_Form_DisplayGroup);
- $decorators = $group->getDecorators();
- $this->assertTrue(is_array($decorators));
- $this->assertTrue(empty($decorators));
- }
- // Processing
- public function testPopulateProxiesToSetDefaults()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $values = array(
- 'foo' => 'foovalue',
- 'bar' => 'barvalue',
- 'baz' => 'bazvalue',
- 'bat' => 'batvalue'
- );
- $this->form->populate($values);
- $test = $this->form->getValues();
- $elements = $this->form->getElements();
- foreach (array_keys($values) as $name) {
- $this->assertEquals($values[$name], $test[$name]);
- }
- }
- public function setupElements()
- {
- $foo = new Zend_Form_Element_Text('foo');
- $foo->addValidator('NotEmpty')
- ->addValidator('Alpha');
- $bar = new Zend_Form_Element_Text('bar');
- $bar->addValidator('NotEmpty')
- ->addValidator('Digits');
- $baz = new Zend_Form_Element_Text('baz');
- $baz->addValidator('NotEmpty')
- ->addValidator('Alnum');
- $this->form->addElements(array($foo, $bar, $baz));
- $this->elementValues = array(
- 'foo' => 'fooBarBAZ',
- 'bar' => '123456789',
- 'baz' => 'foo123BAR',
- );
- }
- public function testIsValidShouldThrowExceptionWithNonArrayArgument()
- {
- try {
- $this->form->isValid(true);
- $this->fail('isValid() should raise exception with non-array argument');
- } catch (Zend_Form_Exception $e) {
- $this->assertContains('expects an array', $e->getMessage());
- }
- }
- public function testCanValidateFullFormContainingOnlyElements()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->assertTrue($this->form->isValid($this->elementValues));
- $values = array(
- 'foo' => '12345',
- 'bar' => 'abc',
- 'baz' => 'abc-123'
- );
- $this->assertFalse($this->form->isValid($values));
- $validator = $this->form->foo->getValidator('alpha');
- $this->assertEquals('12345', $validator->value);
- $validator = $this->form->bar->getValidator('digits');
- $this->assertEquals('abc', $validator->value);
- $validator = $this->form->baz->getValidator('alnum');
- $this->assertEquals('abc-123', $validator->value);
- }
- public function testValidationTakesElementRequiredFlagsIntoAccount()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->assertTrue($this->form->isValid(array()));
- $this->form->getElement('foo')->setRequired(true);
- $this->assertTrue($this->form->isValid(array(
- 'foo' => 'abc',
- 'baz' => 'abc123'
- )));
- $this->assertFalse($this->form->isValid(array(
- 'baz' => 'abc123'
- )));
- }
- public function testCanValidatePartialFormContainingOnlyElements()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->form->getElement('foo')->setRequired(true);
- $this->form->getElement('bar')->setRequired(true);
- $this->form->getElement('baz')->setRequired(true);
- $this->assertTrue($this->form->isValidPartial(array(
- 'foo' => 'abc',
- 'baz' => 'abc123'
- )));
- $this->assertFalse($this->form->isValidPartial(array(
- 'foo' => '123',
- 'baz' => 'abc-123'
- )));
- }
- public function setupSubForm()
- {
- $subForm = new Zend_Form_SubForm();
- $foo = new Zend_Form_Element_Text('subfoo');
- $foo->addValidators(array('NotEmpty', 'Alpha'))->setRequired(true);
- $bar = new Zend_Form_Element_Text('subbar');
- $bar->addValidators(array('NotEmpty', 'Digits'));
- $baz = new Zend_Form_Element_Text('subbaz');
- $baz->addValidators(array('NotEmpty', 'Alnum'))->setRequired(true);
- $subForm->addElements(array($foo, $bar, $baz));
- $this->form->addSubForm($subForm, 'sub');
- }
- public function testFullDataArrayUsedToValidateSubFormByDefault()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->setupSubForm();
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'subfoo' => 'abcdef',
- 'subbar' => '123456',
- 'subbaz' => '123abc',
- );
- $this->assertTrue($this->form->isValid($data));
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'subfoo' => '123',
- 'subbar' => 'abc',
- 'subbaz' => '123-abc',
- );
- $this->assertFalse($this->form->isValid($data));
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'subfoo' => 'abc',
- 'subbaz' => '123abc',
- );
- $this->assertTrue($this->form->isValid($data));
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'subbar' => '123',
- 'subbaz' => '123abc',
- );
- $this->assertFalse($this->form->isValid($data));
- }
- public function testDataKeyWithSameNameAsSubFormIsUsedForValidatingSubForm()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->setupSubForm();
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'sub' => array(
- 'subfoo' => 'abcdef',
- 'subbar' => '123456',
- 'subbaz' => '123abc',
- ),
- );
- $this->assertTrue($this->form->isValid($data));
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'sub' => array(
- 'subfoo' => '123',
- 'subbar' => 'abc',
- 'subbaz' => '123-abc',
- )
- );
- $this->assertFalse($this->form->isValid($data));
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'sub' => array(
- 'subfoo' => 'abc',
- 'subbaz' => '123abc',
- )
- );
- $this->assertTrue($this->form->isValid($data));
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'sub' => array(
- 'subbar' => '123',
- 'subbaz' => '123abc',
- )
- );
- $this->assertFalse($this->form->isValid($data));
- }
- public function testCanValidateNestedFormsWithElementsBelongingToArrays()
- {
- $form = new Zend_Form();
- $form->setElementsBelongTo('foobar');
- $form->addElement('text', 'firstName')
- ->getElement('firstName')
- ->setRequired(true);
- $form->addElement('text', 'lastName')
- ->getElement('lastName')
- ->setRequired(true);
- $subForm = new Zend_Form_SubForm();
- $subForm->setElementsBelongTo('baz');
- $subForm->addElement('text', 'email')
- ->getElement('email')->setRequired(true);
- $subSubForm = new Zend_Form_SubForm();
- $subSubForm->setElementsBelongTo('bat');
- $subSubForm->addElement('checkbox', 'home')
- ->getElement('home')->setRequired(true);
- $subForm->addSubForm($subSubForm, 'subSub');
- $form->addSubForm($subForm, 'sub')
- ->addElement('submit', 'save', array('value' => 'submit'));
- $data = array('foobar' => array(
- 'firstName' => 'Mabel',
- 'lastName' => 'Cow',
- 'baz' => array(
- 'email' => 'mabel@cow.org',
- 'bat' => array(
- 'home' => 1,
- )
- )
- ));
- $this->assertTrue($form->isValid($data));
- $this->assertEquals('Mabel', $form->firstName->getValue());
- $this->assertEquals('Cow', $form->lastName->getValue());
- $this->assertEquals('mabel@cow.org', $form->sub->email->getValue());
- $this->assertEquals(1, $form->sub->subSub->home->getValue());
- }
- public function testCanValidatePartialFormContainingSubForms()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->setupSubForm();
- $data = array(
- 'subfoo' => 'abcdef',
- 'subbar' => '123456',
- );
- $this->assertTrue($this->form->isValidPartial($data));
- $data = array(
- 'foo' => 'abcdef',
- 'baz' => '123abc',
- 'sub' => array(
- 'subbar' => '123',
- )
- );
- $this->assertTrue($this->form->isValidPartial($data));
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'sub' => array(
- 'subfoo' => '123',
- )
- );
- $this->assertFalse($this->form->isValidPartial($data));
- }
- public function testCanValidatePartialNestedFormsWithElementsBelongingToArrays()
- {
- $this->_checkZf2794();
- $form = new Zend_Form();
- $form->setElementsBelongTo('foobar');
- $form->addElement('text', 'firstName')
- ->getElement('firstName')
- ->setRequired(false);
- $form->addElement('text', 'lastName')
- ->getElement('lastName')
- ->setRequired(true);
- $subForm = new Zend_Form_SubForm();
- $subForm->setElementsBelongTo('baz');
- $subForm->addElement('text', 'email')
- ->getElement('email')
- ->setRequired(true)
- ->addValidator('NotEmpty');
- $subSubForm = new Zend_Form_SubForm();
- $subSubForm->setElementsBelongTo('bat');
- $subSubForm->addElement('checkbox', 'home')
- ->getElement('home')
- ->setRequired(true)
- ->addValidator('InArray', false, array(array('1')));
- $subForm->addSubForm($subSubForm, 'subSub');
- $form->addSubForm($subForm, 'sub')
- ->addElement('submit', 'save', array('value' => 'submit'));
- $data = array('foobar' => array(
- 'lastName' => 'Cow',
- ));
- $this->assertTrue($form->isValidPartial($data));
- $this->assertEquals('Cow', $form->lastName->getValue());
- $firstName = $form->firstName->getValue();
- $email = $form->sub->email->getValue();
- $home = $form->sub->subSub->home->getValue();
- $this->assertTrue(empty($firstName));
- $this->assertTrue(empty($email));
- $this->assertTrue(empty($home));
- $form->sub->subSub->home->addValidator('StringLength', false, array(4, 6));
- $data['foobar']['baz'] = array('bat' => array('home' => 'ab'));
- $this->assertFalse($form->isValidPartial($data), var_export($data, 1));
- $this->assertEquals('0', $form->sub->subSub->home->getValue());
- $messages = $form->getMessages();
- $this->assertFalse(empty($messages));
- $this->assertTrue(isset($messages['foobar']['baz']['bat']['home']), var_export($messages, 1));
- $this->assertTrue(isset($messages['foobar']['baz']['bat']['home']['notInArray']), var_export($messages, 1));
- }
- public function testCanValidatePartialNestedFormsWithMultiLevelElementsBelongingToArrays()
- {
- $this->_checkZf2794();
- $form = new Zend_Form();
- $form->setElementsBelongTo('foo[bar]');
- $form->addElement('text', 'firstName')
- ->getElement('firstName')
- ->setRequired(false);
- $form->addElement('text', 'lastName')
- ->getElement('lastName')
- ->setRequired(true);
- $subForm = new Zend_Form_SubForm();
- $subForm->setElementsBelongTo('baz');
- $subForm->addElement('text', 'email')
- ->getElement('email')
- ->setRequired(true)
- ->addValidator('NotEmpty');
- $subSubForm = new Zend_Form_SubForm();
- $subSubForm->setElementsBelongTo('bat[quux]');
- $subSubForm->addElement('checkbox', 'home')
- ->getElement('home')
- ->setRequired(true)
- ->addValidator('InArray', false, array(array('1')));
- $subForm->addSubForm($subSubForm, 'subSub');
- $form->addSubForm($subForm, 'sub')
- ->addElement('submit', 'save', array('value' => 'submit'));
- $data = array('foo' => array(
- 'bar' => array(
- 'lastName' => 'Cow',
- ),
- ));
- $this->assertTrue($form->isValidPartial($data));
- $this->assertEquals('Cow', $form->lastName->getValue());
- $firstName = $form->firstName->getValue();
- $email = $form->sub->email->getValue();
- $home = $form->sub->subSub->home->getValue();
- $this->assertTrue(empty($firstName));
- $this->assertTrue(empty($email));
- $this->assertTrue(empty($home));
- $form->sub->subSub->home->addValidator('StringLength', false, array(4, 6));
- $data['foo']['bar']['baz'] = array('bat' => array('quux' => array('home' => 'ab')));
- $this->assertFalse($form->isValidPartial($data), var_export($data, 1));
- $this->assertEquals('0', $form->sub->subSub->home->getValue());
- }
- public function testCanGetMessagesOfNestedFormsWithMultiLevelElementsBelongingToArrays()
- {
- $this->_checkZf2794();
- $form = new Zend_Form();
- $form->setElementsBelongTo('foo[bar]');
- $form->addElement('text', 'firstName')
- ->getElement('firstName')
- ->setRequired(false);
- $form->addElement('text', 'lastName')
- ->getElement('lastName')
- ->setRequired(true);
- $subForm = new Zend_Form_SubForm();
- $subForm->setElementsBelongTo('baz');
- $subForm->addElement('text', 'email')
- ->getElement('email')
- ->setRequired(true)
- ->addValidator('NotEmpty');
- $subSubForm = new Zend_Form_SubForm();
- $subSubForm->setElementsBelongTo('bat[quux]');
- $subSubForm->addElement('checkbox', 'home')
- ->getElement('home')
- ->setRequired(true)
- ->addValidator('InArray', false, array(array('1')));
- $subForm->addSubForm($subSubForm, 'subSub');
- $form->addSubForm($subForm, 'sub')
- ->addElement('submit', 'save', array('value' => 'submit'));
- $data = array('foo' => array(
- 'bar' => array(
- 'lastName' => 'Cow',
- ),
- ));
- $form->sub->subSub->home->addValidator('StringLength', false, array(4, 6));
- $data['foo']['bar']['baz'] = array('bat' => array('quux' => array('home' => 'ab')));
- $form->isValidPartial($data);
- $messages = $form->getMessages();
- $this->assertFalse(empty($messages));
- $this->assertTrue(isset($messages['foo']['bar']['baz']['bat']['quux']['home']), var_export($messages, 1));
- $this->assertTrue(isset($messages['foo']['bar']['baz']['bat']['quux']['home']['notInArray']), var_export($messages, 1));
- }
- public function testValidatingFormWithDisplayGroupsDoesSameAsWithout()
- {
- $this->setupElements();
- $this->form->addDisplayGroup(array('foo', 'baz'), 'foobaz');
- $this->assertTrue($this->form->isValid($this->elementValues));
- $this->assertFalse($this->form->isValid(array(
- 'foo' => '123',
- 'bar' => 'abc',
- 'baz' => 'abc-123'
- )));
- }
- public function testValidatePartialFormWithDisplayGroupsDoesSameAsWithout()
- {
- $this->setupElements();
- $this->form->addDisplayGroup(array('foo', 'baz'), 'foobaz');
- $this->assertTrue($this->form->isValid(array(
- 'foo' => 'abc',
- 'baz' => 'abc123'
- )));
- $this->assertFalse($this->form->isValid(array(
- 'foo' => '123',
- 'baz' => 'abc-123'
- )));
- }
- public function testProcessAjaxReturnsJsonTrueForValidForm()
- {
- $this->setupElements();
- $return = $this->form->processAjax($this->elementValues);
- $this->assertTrue(Zend_Json::decode($return));
- }
- public function testProcessAjaxReturnsJsonTrueForValidPartialForm()
- {
- $this->setupElements();
- $data = array('foo' => 'abcdef', 'baz' => 'abc123');
- $return = $this->form->processAjax($data);
- $this->assertTrue(Zend_Json::decode($return));
- }
- public function testProcessAjaxReturnsJsonWithAllErrorMessagesForInvalidForm()
- {
- $this->setupElements();
- $data = array('foo' => '123456', 'bar' => 'abcdef', 'baz' => 'abc-123');
- $return = Zend_Json::decode($this->form->processAjax($data));
- $this->assertTrue(is_array($return));
- $this->assertEquals(array_keys($data), array_keys($return));
- }
- public function testProcessAjaxReturnsJsonWithAllErrorMessagesForInvalidPartialForm()
- {
- $this->setupElements();
- $data = array('baz' => 'abc-123');
- $return = Zend_Json::decode($this->form->processAjax($data));
- $this->assertTrue(is_array($return));
- $this->assertEquals(array_keys($data), array_keys($return), var_export($return, 1));
- }
- public function testPersistDataStoresDataInSession()
- {
- $this->markTestIncomplete('Zend_Form does not implement session storage at this time');
- }
- public function testCanCheckIfErrorsAreRegistered()
- {
- $this->assertFalse($this->form->hasErrors());
- $this->testCanValidateFullFormContainingOnlyElements();
- $this->assertTrue($this->form->hasErrors());
- }
- /**
- * @group ZF-9914
- */
- public function testDeprecatedIsErrorsProxiesToHasErrors()
- {
- $this->testCanValidateFullFormContainingOnlyElements();
- $this->assertEquals($this->form->isErrors(), $this->form->hasErrors());
- }
- public function testCanRetrieveErrorCodesFromAllElementsAfterFailedValidation()
- {
- $this->_checkZf2794();
- $this->testCanValidateFullFormContainingOnlyElements();
- $codes = $this->form->getErrors();
- $keys = array('foo', 'bar', 'baz');
- $this->assertEquals($keys, array_keys($codes));
- }
- public function testCanRetrieveErrorCodesFromSingleElementAfterFailedValidation()
- {
- $this->_checkZf2794();
- $this->testCanValidateFullFormContainingOnlyElements();
- $codes = $this->form->getErrors();
- $keys = array('foo', 'bar', 'baz');
- $errors = $this->form->getErrors('foo');
- $foo = $this->form->foo;
- $this->assertEquals($foo->getErrors(), $errors);
- }
- public function testCanRetrieveErrorMessagesFromAllElementsAfterFailedValidation()
- {
- $this->_checkZf2794();
- $this->testCanValidateFullFormContainingOnlyElements();
- $codes = $this->form->getMessages();
- $keys = array('foo', 'bar', 'baz');
- $this->assertEquals($keys, array_keys($codes));
- }
- public function testCanRetrieveErrorMessagesFromSingleElementAfterFailedValidation()
- {
- $this->_checkZf2794();
- $this->testCanValidateFullFormContainingOnlyElements();
- $codes = $this->form->getMessages();
- $keys = array('foo', 'bar', 'baz');
- $messages = $this->form->getMessages('foo');
- $foo = $this->form->foo;
- $this->assertEquals($foo->getMessages(), $messages);
- }
- public function testErrorCodesFromSubFormReturnedInSeparateArray()
- {
- $this->_checkZf2794();
- $this->testFullDataArrayUsedToValidateSubFormByDefault();
- $codes = $this->form->getErrors();
- $this->assertTrue(array_key_exists('sub', $codes));
- $this->assertTrue(is_array($codes['sub']));
- $keys = array('subfoo', 'subbar', 'subbaz');
- $this->assertEquals($keys, array_keys($codes['sub']));
- }
- public function testCanRetrieveErrorCodesFromSingleSubFormAfterFailedValidation()
- {
- $this->_checkZf2794();
- $this->testFullDataArrayUsedToValidateSubFormByDefault();
- $codes = $this->form->getErrors('sub');
- $this->assertTrue(is_array($codes));
- $this->assertFalse(empty($codes));
- $keys = array('subfoo', 'subbar', 'subbaz');
- $this->assertEquals($keys, array_keys($codes));
- }
- public function testGetErrorsHonorsElementsBelongTo()
- {
- $this->_checkZf2794();
- $subForm = new Zend_Form_SubForm();
- $subForm->setElementsBelongTo('foo[bar]');
- $subForm->addElement('text', 'test')->test
- ->setRequired(true);
- $this->form->addSubForm($subForm, 'sub');
- $data = array('foo' => array(
- 'bar' => array(
- 'test' => '',
- ),
- ));
- $this->form->isValid($data);
- $codes = $this->form->getErrors();
- $this->assertFalse(empty($codes['foo']['bar']['test']));
- }
- public function testErrorMessagesFromSubFormReturnedInSeparateArray()
- {
- $this->_checkZf2794();
- $this->testFullDataArrayUsedToValidateSubFormByDefault();
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'subfoo' => '123',
- 'subbar' => 'abc',
- 'subbaz' => '123-abc',
- );
- $this->assertFalse($this->form->isValid($data));
- $codes = $this->form->getMessages();
- $this->assertTrue(array_key_exists('sub', $codes));
- $this->assertTrue(is_array($codes['sub']));
- $keys = array('subfoo', 'subbar', 'subbaz');
- $this->assertEquals($keys, array_keys($codes['sub']));
- }
- public function testCanRetrieveErrorMessagesFromSingleSubFormAfterFailedValidation()
- {
- $this->_checkZf2794();
- $this->testFullDataArrayUsedToValidateSubFormByDefault();
- $data = array(
- 'foo' => 'abcdef',
- 'bar' => '123456',
- 'baz' => '123abc',
- 'subfoo' => '123',
- 'subbar' => 'abc',
- 'subbaz' => '123-abc',
- );
- $this->assertFalse($this->form->isValid($data));
- $codes = $this->form->getMessages('sub');
- $this->assertTrue(is_array($codes));
- $this->assertFalse(empty($codes));
- $keys = array('subfoo', 'subbar', 'subbaz');
- $this->assertEquals($keys, array_keys($codes), var_export($codes, 1));
- }
- public function testErrorMessagesAreLocalizedWhenTranslateAdapterPresent()
- {
- $this->_checkZf2794();
- $translations = include dirname(__FILE__) . '/_files/locale/array.php';
- $translate = new Zend_Translate('array', $translations, 'en');
- $translate->setLocale('en');
- $this->form->addElements(array(
- 'foo' => array(
- 'type' => 'text',
- 'options' => array(
- 'required' => true,
- 'validators' => array('NotEmpty')
- )
- ),
- 'bar' => array(
- 'type' => 'text',
- 'options' => array(
- 'required' => true,
- 'validators' => array('Digits')
- )
- ),
- ))
- ->setTranslator($translate);
- $data = array(
- 'foo' => '',
- 'bar' => 'abc',
- );
- if ($this->form->isValid($data)) {
- $this->fail('Form should not validate');
- }
- $messages = $this->form->getMessages();
- $this->assertTrue(isset($messages['foo']));
- $this->assertTrue(isset($messages['bar']));
- foreach ($messages['foo'] as $key => $message) {
- if (array_key_exists($key, $translations)) {
- $this->assertEquals($translations[$key], $message);
- } else {
- $this->fail('Translation for ' . $key . ' does not exist?');
- }
- }
- foreach ($messages['bar'] as $key => $message) {
- if (array_key_exists($key, $translations)) {
- $this->assertEquals($translations[$key], $message);
- } else {
- $this->fail('Translation for ' . $key . ' does not exist?');
- }
- }
- }
- public function testErrorMessagesFromPartialValidationAreLocalizedWhenTranslateAdapterPresent()
- {
- $this->_checkZf2794();
- $translations = include dirname(__FILE__) . '/_files/locale/array.php';
- $translate = new Zend_Translate('array', $translations, 'en');
- $translate->setLocale('en');
- $this->form->addElements(array(
- 'foo' => array(
- 'type' => 'text',
- 'options' => array(
- 'required' => true,
- 'validators' => array('NotEmpty')
- )
- ),
- 'bar' => array(
- 'type' => 'text',
- 'options' => array(
- 'required' => true,
- 'validators' => array('Digits')
- )
- ),
- ))
- ->setTranslator($translate);
- $data = array(
- 'foo' => '',
- );
- if ($this->form->isValidPartial($data)) {
- $this->fail('Form should not validate');
- }
- $messages = $this->form->getMessages();
- $this->assertTrue(isset($messages['foo']));
- $this->assertFalse(isset($messages['bar']));
- foreach ($messages['foo'] as $key => $message) {
- if (array_key_exists($key, $translations)) {
- $this->assertEquals($translations[$key], $message);
- } else {
- $this->fail('Translation for ' . $key . ' does not exist?');
- }
- }
- }
- public function testErrorMessagesFromProcessAjaxAreLocalizedWhenTranslateAdapterPresent()
- {
- $this->_checkZf2794();
- $translations = include dirname(__FILE__) . '/_files/locale/array.php';
- $translate = new Zend_Translate('array', $translations, 'en');
- $translate->setLocale('en');
- $this->form->addElements(array(
- 'foo' => array(
- 'type' => 'text',
- 'options' => array(
- 'required' => true,
- 'validators' => array('NotEmpty')
- )
- ),
- 'bar' => array(
- 'type' => 'text',
- 'options' => array(
- 'required' => true,
- 'validators' => array('Digits')
- )
- ),
- ))
- ->setTranslator($translate);
- $data = array(
- 'foo' => '',
- );
- $return = $this->form->processAjax($data);
- $messages = Zend_Json::decode($return);
- $this->assertTrue(is_array($messages));
- $this->assertTrue(isset($messages['foo']));
- $this->assertFalse(isset($messages['bar']));
- foreach ($messages['foo'] as $key => $message) {
- if (array_key_exists($key, $translations)) {
- $this->assertEquals($translations[$key], $message);
- } else {
- $this->fail('Translation for ' . $key . ' does not exist?');
- }
- }
- }
- /**
- * @Group ZF-9697
- */
- public function _setup9697()
- {
- $callback = function($value, $options) {
- return (isset($options["bar"]["quo"]["foo"]) && "foo Value" === $options["bar"]["quo"]["foo"]);
- };
- $this->form->addElement('text', 'foo')
- ->foo->setBelongsTo('bar[quo]');
- $this->form->addElement('text', 'quo')
- ->quo->setBelongsTo('bar[quo]')
- ->addValidator('Callback',
- false,
- $callback);
- return array('bar' => array('quo' => array('foo' => 'foo Value',
- 'quo' => 'quo Value')));
- }
- public function testIsValidKeepsContext()
- {
- $data = $this->_setup9697();
- $this->assertTrue($this->form->isValid($data));
- }
- public function testIsValidPartialKeepsContext()
- {
- $data = $this->_setup9697();
- $this->assertTrue($this->form->isValidPartial($data));
- }
- public function testGetValidValuesKeepsContext()
- {
- $data = $this->_setup9697();
- $this->assertSame($data, $this->form->getValidValues($data));
- }
- /**
- * @group ZF-2988
- */
- public function testSettingErrorMessageShouldOverrideValidationErrorMessages()
- {
- $this->form->addElement('text', 'foo', array('validators' => array('Alpha')));
- $this->form->addErrorMessage('Invalid values entered');
- $this->assertFalse($this->form->isValid(array('foo' => 123)));
- $messages = $this->form->getMessages();
- $this->assertEquals(1, count($messages));
- $this->assertEquals('Invalid values entered', array_shift($messages));
- }
- public function testCustomErrorMessagesShouldBeManagedInAStack()
- {
- $this->form->addElement('text', 'foo', array('validators' => array('Alpha')));
- $this->form->addErrorMessage('Invalid values entered');
- $this->form->addErrorMessage('Really, they are not valid');
- $messages = $this->form->getErrorMessages();
- $this->assertEquals(2, count($messages));
- $this->assertFalse($this->form->isValid(array('foo' => 123)));
- $messages = $this->form->getMessages();
- $this->assertEquals(2, count($messages));
- $this->assertEquals('Invalid values entered', array_shift($messages));
- $this->assertEquals('Really, they are not valid', array_shift($messages));
- }
- public function testShouldAllowSettingMultipleErrorMessagesAtOnce()
- {
- $set1 = array('foo', 'bar', 'baz');
- $this->form->addErrorMessages($set1);
- $this->assertSame($set1, $this->form->getErrorMessages());
- }
- public function testSetErrorMessagesShouldOverwriteMessages()
- {
- $set1 = array('foo', 'bar', 'baz');
- $set2 = array('bat', 'cat');
- $this->form->addErrorMessages($set1);
- $this->assertSame($set1, $this->form->getErrorMessages());
- $this->form->setErrorMessages($set2);
- $this->assertSame($set2, $this->form->getErrorMessages());
- }
- public function testCustomErrorMessageStackShouldBeClearable()
- {
- $this->testCustomErrorMessagesShouldBeManagedInAStack();
- $this->form->clearErrorMessages();
- $messages = $this->form->getErrorMessages();
- $this->assertTrue(empty($messages));
- }
- public function testCustomErrorMessagesShouldBeTranslated()
- {
- $translations = array(
- 'foo' => 'Foo message',
- );
- $translate = new Zend_Translate('array', $translations);
- $this->form->addElement('text', 'foo', array('validators' => array('Alpha')));
- $this->form->setTranslator($translate)
- ->addErrorMessage('foo');
- $this->assertFalse($this->form->isValid(array('foo' => 123)));
- $messages = $this->form->getMessages();
- $this->assertEquals(1, count($messages));
- $this->assertEquals('Foo message', array_shift($messages));
- }
- public function testShouldAllowMarkingFormAsInvalid()
- {
- $this->form->addErrorMessage('Invalid values entered');
- $this->assertFalse($this->form->hasErrors());
- $this->form->markAsError();
- $this->assertTrue($this->form->hasErrors());
- $messages = $this->form->getMessages();
- $this->assertEquals(1, count($messages));
- $this->assertEquals('Invalid values entered', array_shift($messages));
- }
- public function testShouldAllowPushingErrorsOntoErrorStackWithErrorMessages()
- {
- $this->assertFalse($this->form->hasErrors());
- $this->form->setErrors(array('Error 1', 'Error 2'))
- ->addError('Error 3')
- ->addErrors(array('Error 4', 'Error 5'));
- $this->assertTrue($this->form->hasErrors());
- $messages = $this->form->getMessages();
- $this->assertEquals(5, count($messages));
- foreach (range(1, 5) as $id) {
- $message = 'Error ' . $id;
- $this->assertContains($message, $messages);
- }
- }
- /**#@-*/
- // View object
- public function getView()
- {
- $view = new Zend_View();
- return $view;
- }
- public function testGetViewRetrievesFromViewRendererByDefault()
- {
- $viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer');
- $viewRenderer->initView();
- $view = $viewRenderer->view;
- $test = $this->form->getView();
- $this->assertSame($view, $test);
- }
- public function testGetViewReturnsNullWhenNoViewRegisteredWithViewRenderer()
- {
- $this->assertNull($this->form->getView());
- }
- public function testCanSetView()
- {
- $view = new Zend_View();
- $this->assertNull($this->form->getView());
- $this->form->setView($view);
- $received = $this->form->getView();
- $this->assertSame($view, $received);
- }
- // Decorators
- public function testFormDecoratorRegisteredByDefault()
- {
- $this->_checkZf2794();
- $decorator = $this->form->getDecorator('form');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Form);
- }
- public function testCanDisableRegisteringFormDecoratorsDuringInitialization()
- {
- $form = new Zend_Form(array('disableLoadDefaultDecorators' => true));
- $decorators = $form->getDecorators();
- $this->assertEquals(array(), $decorators);
- }
- public function testCanAddSingleDecoratorAsString()
- {
- $this->_checkZf2794();
- $this->form->clearDecorators();
- $this->assertFalse($this->form->getDecorator('viewHelper'));
- $this->form->addDecorator('viewHelper');
- $decorator = $this->form->getDecorator('viewHelper');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_ViewHelper);
- }
- public function testNotCanRetrieveSingleDecoratorRegisteredAsStringUsingClassName()
- {
- $this->assertFalse($this->form->getDecorator('Zend_Form_Decorator_Form'));
- }
- public function testCanAddSingleDecoratorAsDecoratorObject()
- {
- $this->form->clearDecorators();
- $this->assertFalse($this->form->getDecorator('viewHelper'));
- $decorator = new Zend_Form_Decorator_ViewHelper;
- $this->form->addDecorator($decorator);
- $test = $this->form->getDecorator('Zend_Form_Decorator_ViewHelper');
- $this->assertSame($decorator, $test);
- }
- public function testCanRetrieveSingleDecoratorRegisteredAsDecoratorObjectUsingShortName()
- {
- $this->_checkZf2794();
- $this->form->clearDecorators();
- $this->assertFalse($this->form->getDecorator('viewHelper'));
- $decorator = new Zend_Form_Decorator_ViewHelper;
- $this->form->addDecorator($decorator);
- $test = $this->form->getDecorator('viewHelper');
- $this->assertSame($decorator, $test);
- }
- public function testCanAddMultipleDecorators()
- {
- $this->_checkZf2794();
- $this->form->clearDecorators();
- $this->assertFalse($this->form->getDecorator('viewHelper'));
- $testDecorator = new Zend_Form_Decorator_Errors;
- $this->form->addDecorators(array(
- 'ViewHelper',
- $testDecorator
- ));
- $viewHelper = $this->form->getDecorator('viewHelper');
- $this->assertTrue($viewHelper instanceof Zend_Form_Decorator_ViewHelper);
- $decorator = $this->form->getDecorator('errors');
- $this->assertSame($testDecorator, $decorator);
- }
- public function testRemoveDecoratorReturnsFalseForUnregisteredDecorators()
- {
- $this->_checkZf2794();
- $this->assertFalse($this->form->removeDecorator('foobar'));
- }
- public function testCanRemoveDecorator()
- {
- $this->_checkZf2794();
- $this->testFormDecoratorRegisteredByDefault();
- $this->form->removeDecorator('form');
- $this->assertFalse($this->form->getDecorator('form'));
- }
- /**
- * @group ZF-3069
- */
- public function testRemovingNamedDecoratorShouldWork()
- {
- $this->_checkZf2794();
- $this->form->setDecorators(array(
- 'FormElements',
- array(array('div' => 'HtmlTag'), array('tag' => 'div')),
- array(array('fieldset' => 'HtmlTag'), array('tag' => 'fieldset')),
- ));
- $decorators = $this->form->getDecorators();
- $this->assertTrue(array_key_exists('div', $decorators));
- $this->assertTrue(array_key_exists('fieldset', $decorators));
- $this->form->removeDecorator('div');
- $decorators = $this->form->getDecorators();
- $this->assertFalse(array_key_exists('div', $decorators));
- $this->assertTrue(array_key_exists('fieldset', $decorators));
- }
- public function testCanClearAllDecorators()
- {
- $this->_checkZf2794();
- $this->testCanAddMultipleDecorators();
- $this->form->clearDecorators();
- $this->assertFalse($this->form->getDecorator('viewHelper'));
- $this->assertFalse($this->form->getDecorator('fieldset'));
- }
- public function testCanAddDecoratorAliasesToAllowMultipleDecoratorsOfSameType()
- {
- $this->_checkZf2794();
- $this->form->setDecorators(array(
- array('HtmlTag', array('tag' => 'div')),
- array('decorator' => array('FooBar' => 'HtmlTag'), 'options' => array('tag' => 'dd')),
- ));
- $decorator = $this->form->getDecorator('FooBar');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_HtmlTag);
- $this->assertEquals('dd', $decorator->getOption('tag'));
- $decorator = $this->form->getDecorator('HtmlTag');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_HtmlTag);
- $this->assertEquals('div', $decorator->getOption('tag'));
- }
- public function testRetrievingNamedDecoratorShouldNotReorderDecorators()
- {
- $this->form->setDecorators(array(
- 'FormElements',
- array(array('div' => 'HtmlTag'), array('tag' => 'div')),
- array(array('fieldset' => 'HtmlTag'), array('tag' => 'fieldset')),
- 'Form',
- ));
- $decorator = $this->form->getDecorator('fieldset');
- $decorators = $this->form->getDecorators();
- $i = 0;
- $order = array();
- foreach (array_keys($decorators) as $name) {
- $order[$name] = $i;
- ++$i;
- }
- $this->assertEquals(2, $order['fieldset'], var_export($order, 1));
- }
- // Rendering
- public function checkMarkup($html)
- {
- $this->assertFalse(empty($html));
- $this->assertContains('<form', $html);
- $this->assertRegexp('/<form[^>]+action="' . $this->form->getAction() . '"/', $html);
- $this->assertRegexp('/<form[^>]+method="' . $this->form->getMethod() . '"/i', $html);
- $this->assertRegexp('#<form[^>]+enctype="application/x-www-form-urlencoded"#', $html);
- $this->assertContains('</form>', $html);
- }
- public function testRenderReturnsMarkup()
- {
- $this->setupElements();
- $html = $this->form->render($this->getView());
- $this->checkMarkup($html);
- }
- public function testRenderReturnsMarkupRepresentingAllElements()
- {
- $this->testRenderReturnsMarkup();
- $html = $this->form->render();
- foreach ($this->form->getElements() as $key => $element) {
- $this->assertFalse(empty($key));
- $this->assertFalse(is_numeric($key));
- $this->assertContains('<input', $html);
- $this->assertRegexp('/<input type="text" name="' . $key . '"/', $html);
- }
- }
- public function testRenderReturnsMarkupContainingSubForms()
- {
- $this->setupElements();
- $this->setupSubForm();
- $this->form->setView($this->getView());
- $html = $this->form->render();
- $this->assertRegexp('/<fieldset/', $html);
- $this->assertContains('</fieldset>', $html);
- foreach ($this->form->sub as $key => $item) {
- $this->assertFalse(empty($key));
- $this->assertFalse(is_numeric($key));
- $this->assertContains('<input', $html);
- $pattern = '/<input type="text" name="sub\[' . $key . '\]"/';
- $this->assertRegexp($pattern, $html, 'Pattern: ' . $pattern . "\nHTML:\n" . $html);
- }
- }
- public function testRenderReturnsMarkupContainingDisplayGroups()
- {
- $this->setupElements();
- $this->form->addDisplayGroup(array('foo', 'baz'), 'foobaz', array('legend' => 'Display Group'));
- $this->form->setView($this->getView());
- $html = $this->html = $this->form->render();
- $this->assertRegexp('/<fieldset/', $html);
- $this->assertContains('</fieldset>', $html);
- $this->assertRegexp('#<legend>Display Group</legend>#', $html, $html);
- $dom = new DOMDocument();
- $dom->loadHTML($html);
- $fieldsets = $dom->getElementsByTagName('fieldset');
- $this->assertTrue(0 < $fieldsets->length);
- $fieldset = $fieldsets->item(0);
- $nodes = $fieldset->childNodes;
- $this->assertNotNull($nodes);
- for ($i = 0; $i < $nodes->length; ++$i) {
- $node = $nodes->item($i);
- if ('input' != $node->nodeName) {
- continue;
- }
- $this->assertTrue($node->hasAttribute('name'));
- $nameNode = $node->getAttributeNode('name');
- switch ($i) {
- case 0:
- $this->assertEquals('foo', $nameNode->nodeValue);
- break;
- case 1:
- $this->assertEquals('baz', $nameNode->nodeValue);
- break;
- default:
- $this->fail('There should only be two input nodes in this display group: ' . $html);
- }
- }
- }
- public function testRenderDoesNotRepeatElementsInDisplayGroups()
- {
- $this->testRenderReturnsMarkupContainingDisplayGroups();
- if (!preg_match_all('#<input[^>]+name="foo"#', $this->html, $matches)) {
- $this->fail("Should find foo element in rendered form");
- }
- $this->assertEquals(1, count($matches));
- $this->assertEquals(1, count($matches[0]));
- }
- public function testElementsRenderAsArrayMembersWhenElementsBelongToAnArray()
- {
- $this->setupElements();
- $this->form->setElementsBelongTo('anArray');
- $html = $this->form->render($this->getView());
- $this->assertContains('name="anArray[foo]"', $html);
- $this->assertContains('name="anArray[bar]"', $html);
- $this->assertContains('name="anArray[baz]"', $html);
- $this->assertContains('id="anArray-foo"', $html);
- $this->assertContains('id="anArray-bar"', $html);
- $this->assertContains('id="anArray-baz"', $html);
- }
- public function testElementsRenderAsSubArrayMembersWhenElementsBelongToASubArray()
- {
- $this->setupElements();
- $this->form->setElementsBelongTo('data[foo]');
- $html = $this->form->render($this->getView());
- $this->assertContains('name="data[foo][foo]"', $html);
- $this->assertContains('name="data[foo][bar]"', $html);
- $this->assertContains('name="data[foo][baz]"', $html);
- $this->assertContains('id="data-foo-foo"', $html);
- $this->assertContains('id="data-foo-bar"', $html);
- $this->assertContains('id="data-foo-baz"', $html);
- }
- public function testElementsRenderAsArrayMembersWhenRenderAsArrayToggled()
- {
- $this->setupElements();
- $this->form->setName('data')
- ->setIsArray(true);
- $html = $this->form->render($this->getView());
- $this->assertContains('name="data[foo]"', $html);
- $this->assertContains('name="data[bar]"', $html);
- $this->assertContains('name="data[baz]"', $html);
- $this->assertContains('id="data-foo"', $html);
- $this->assertContains('id="data-bar"', $html);
- $this->assertContains('id="data-baz"', $html);
- }
- public function testElementsRenderAsMembersOfSubFormsWithElementsBelongTo()
- {
- $this->form->setName('data')
- ->setIsArray(true);
- $subForm = new Zend_Form_SubForm();
- $subForm->setElementsBelongTo('billing[info]');
- $subForm->addElement('text', 'name');
- $subForm->addElement('text', 'number');
- $this->form->addSubForm($subForm, 'sub');
- $html = $this->form->render($this->getView());
- $this->assertContains('name="data[billing][info][name]', $html);
- $this->assertContains('name="data[billing][info][number]', $html);
- $this->assertContains('id="data-billing-info-name"', $html);
- $this->assertContains('id="data-billing-info-number"', $html);
- }
- public function testToStringProxiesToRender()
- {
- $this->setupElements();
- $this->form->setView($this->getView());
- $html = $this->form->__toString();
- $this->checkMarkup($html);
- }
- public function raiseDecoratorException($content, $element, $options)
- {
- throw new Exception('Raising exception in decorator callback');
- }
- public function handleDecoratorErrors($errno, $errstr, $errfile = '', $errline = 0, array $errcontext = array())
- {
- $this->error = $errstr;
- }
- public function testToStringRaisesErrorWhenExceptionCaught()
- {
- $this->form->setDecorators(array(
- array(
- 'decorator' => 'Callback',
- 'options' => array('callback' => array($this, 'raiseDecoratorException'))
- ),
- ));
- $origErrorHandler = set_error_handler(array($this, 'handleDecoratorErrors'), E_USER_WARNING);
- $text = $this->form->__toString();
- restore_error_handler();
- $this->assertTrue(empty($text));
- $this->assertTrue(isset($this->error));
- $this->assertContains('Raising exception in decorator callback', $this->error);
- }
- /**
- * ZF-2718
- */
- public function testHiddenElementsGroupedWhenRendered()
- {
- $this->markTestIncomplete('Scheduling for future release');
- $this->form->addElements(array(
- array('type' => 'hidden', 'name' => 'first', 'options' => array('value' => 'first value')),
- array('type' => 'text', 'name' => 'testone'),
- array('type' => 'hidden', 'name' => 'second', 'options' => array('value' => 'second value')),
- array('type' => 'text', 'name' => 'testtwo'),
- array('type' => 'hidden', 'name' => 'third', 'options' => array('value' => 'third value')),
- array('type' => 'text', 'name' => 'testthree'),
- ));
- $html = $this->form->render($this->getView());
- if (!preg_match('#(<input type="hidden" name="[^>].*>\s*){3}#', $html, $matches)) {
- $this->fail('Hidden elements should be grouped');
- }
- foreach (array('first', 'second', 'third') as $which) {
- $this->assertRegexp('#<input[^]*name="' . $which . '"#', $matches[0]);
- $this->assertRegexp('#<input[^]*value="' . $which . ' value"#', $matches[0]);
- }
- }
- // Localization
- public function testTranslatorIsNullByDefault()
- {
- $this->assertNull($this->form->getTranslator());
- }
- public function testCanSetTranslator()
- {
- require_once 'Zend/Translate/Adapter/Array.php';
- $translator = new Zend_Translate('array', array('foo' => 'bar'));
- $this->form->setTranslator($translator);
- $received = $this->form->getTranslator($translator);
- $this->assertSame($translator->getAdapter(), $received);
- }
- public function testCanSetDefaultGlobalTranslator()
- {
- $this->assertNull($this->form->getTranslator());
- $translator = new Zend_Translate('array', array('foo' => 'bar'));
- Zend_Form::setDefaultTranslator($translator);
- $received = Zend_Form::getDefaultTranslator();
- $this->assertSame($translator->getAdapter(), $received);
- $received = $this->form->getTranslator();
- $this->assertSame($translator->getAdapter(), $received);
- $form = new Zend_Form();
- $received = $form->getTranslator();
- $this->assertSame($translator->getAdapter(), $received);
- }
- public function testLocalTranslatorPreferredOverDefaultGlobalTranslator()
- {
- $this->assertNull($this->form->getTranslator());
- $translatorDefault = new Zend_Translate('array', array('foo' => 'bar'));
- Zend_Form::setDefaultTranslator($translatorDefault);
- $received = $this->form->getTranslator();
- $this->assertSame($translatorDefault->getAdapter(), $received);
- $translator = new Zend_Translate('array', array('foo' => 'bar'));
- $this->form->setTranslator($translator);
- $received = $this->form->getTranslator();
- $this->assertNotSame($translatorDefault->getAdapter(), $received);
- $this->assertSame($translator->getAdapter(), $received);
- }
- public function testTranslatorFromRegistryUsedWhenNoneRegistered()
- {
- $this->assertNull($this->form->getTranslator());
- $translator = new Zend_Translate('array', array('foo' => 'bar'));
- Zend_Registry::set('Zend_Translate', $translator);
- $received = Zend_Form::getDefaultTranslator();
- $this->assertSame($translator->getAdapter(), $received);
- $received = $this->form->getTranslator();
- $this->assertSame($translator->getAdapter(), $received);
- $form = new Zend_Form();
- $received = $form->getTranslator();
- $this->assertSame($translator->getAdapter(), $received);
- }
- public function testCanDisableTranslation()
- {
- $this->testCanSetDefaultGlobalTranslator();
- $this->form->setDisableTranslator(true);
- $this->assertNull($this->form->getTranslator());
- }
- // Iteration
- public function testFormObjectIsIterableAndIteratesElements()
- {
- $this->setupElements();
- $expected = array('foo', 'bar', 'baz');
- $received = array();
- foreach ($this->form as $key => $value) {
- $received[] = $key;
- }
- $this->assertSame($expected, $received);
- }
- public function testFormObjectIteratesElementsInExpectedOrder()
- {
- $this->setupElements();
- $this->form->addElement('text', 'checkorder', array('order' => 2));
- $expected = array('foo', 'bar', 'checkorder', 'baz');
- $received = array();
- foreach ($this->form as $key => $value) {
- $received[] = $key;
- $this->assertTrue($value instanceof Zend_Form_Element);
- }
- $this->assertSame($expected, $received);
- }
- public function testFormObjectIteratesElementsInExpectedOrderWhenAllElementsHaveOrder()
- {
- $this->form->addElement('submit', 'submit')->submit->setLabel('Submit')->setOrder(30);
- $this->form->addElement('text', 'name')->name->setLabel('Name')->setOrder(10);
- $this->form->addElement('text', 'email')->email->setLabel('E-mail')->setOrder(20);
- $expected = array('name', 'email', 'submit');
- $received = array();
- foreach ($this->form as $key => $value) {
- $received[] = $key;
- $this->assertTrue($value instanceof Zend_Form_Element);
- }
- $this->assertSame($expected, $received);
- }
- public function testFormObjectIteratesElementsInExpectedOrderWhenFirstElementHasNoOrderSpecified()
- {
- $this->form->addElement(new Zend_Form_Element('a',array('label'=>'a')))
- ->addElement(new Zend_Form_Element('b',array('label'=>'b', 'order' => 0)))
- ->addElement(new Zend_Form_Element('c',array('label'=>'c', 'order' => 1)))
- ->setView($this->getView());
- $test = $this->form->render();
- $this->assertContains('name="a"', $test);
- if (!preg_match_all('/(<input[^>]+>)/', $test, $matches)) {
- $this->fail('Expected markup not found');
- }
- $order = array();
- foreach ($matches[1] as $element) {
- if (preg_match('/name="(a|b|c)"/', $element, $m)) {
- $order[] = $m[1];
- }
- }
- $this->assertSame(array('b', 'c', 'a'), $order);
- }
- public function testFormObjectIteratesElementsAndSubforms()
- {
- $this->setupElements();
- $this->setupSubForm();
- $expected = array('foo', 'bar', 'baz', 'sub');
- $received = array();
- foreach ($this->form as $key => $value) {
- $received[] = $key;
- $this->assertTrue(($value instanceof Zend_Form_Element)
- or ($value instanceof Zend_Form_SubForm));
- }
- $this->assertSame($expected, $received);
- }
- public function testFormObjectIteratesDisplayGroupsButSkipsDisplayGroupElements()
- {
- $this->setupElements();
- $this->form->addDisplayGroup(array('foo', 'baz'), 'foobaz');
- $expected = array('bar', 'foobaz');
- $received = array();
- foreach ($this->form as $key => $value) {
- $received[] = $key;
- $this->assertTrue(($value instanceof Zend_Form_Element)
- or ($value instanceof Zend_Form_DisplayGroup));
- }
- $this->assertSame($expected, $received);
- }
- public function testRemovingFormItemsShouldNotRaiseExceptionsDuringIteration()
- {
- $this->setupElements();
- $bar = $this->form->bar;
- $this->form->removeElement('bar');
- try {
- foreach ($this->form as $item) {
- }
- } catch (Exception $e) {
- $this->fail('Exceptions should not be raised by iterator when elements are removed; error message: ' . $e->getMessage());
- }
- $this->form->addElement($bar);
- $this->form->addDisplayGroup(array('baz', 'bar'), 'bazbar');
- $this->form->removeDisplayGroup('bazbar');
- try {
- foreach ($this->form as $item) {
- }
- } catch (Exception $e) {
- $this->fail('Exceptions should not be raised by iterator when elements are removed; error message: ' . $e->getMessage());
- }
- $subForm = new Zend_Form_SubForm;
- $subForm->addElements(array('foo' => 'text', 'bar' => 'text'));
- $this->form->addSubForm($subForm, 'page1');
- $this->form->removeSubForm('page1');
- try {
- foreach ($this->form as $item) {
- }
- } catch (Exception $e) {
- $this->fail('Exceptions should not be raised by iterator when elements are removed; error message: ' . $e->getMessage());
- }
- }
- public function testClearingAttachedItemsShouldNotCauseIterationToRaiseExceptions()
- {
- $form = new Zend_Form();
- $form->addElements(array(
- 'username' => 'text',
- 'password' => 'text',
- ));
- $form->clearElements();
- try {
- foreach ($form as $item) {
- }
- } catch (Zend_Form_Exception $e) {
- $message = "Clearing elements prior to iteration should not cause iteration to fail;\n"
- . $e->getMessage();
- $this->fail($message);
- }
- $form->addElements(array(
- 'username' => 'text',
- 'password' => 'text',
- ))
- ->addDisplayGroup(array('username', 'password'), 'login');
- $form->clearDisplayGroups();
- try {
- foreach ($form as $item) {
- }
- } catch (Zend_Form_Exception $e) {
- $message = "Clearing display groups prior to iteration should not cause iteration to fail;\n"
- . $e->getMessage();
- $this->fail($message);
- }
- $subForm = new Zend_Form_SubForm();
- $form->addSubForm($subForm, 'foo');
- $form->clearSubForms();
- try {
- foreach ($form as $item) {
- }
- } catch (Zend_Form_Exception $e) {
- $message = "Clearing sub forms prior to iteration should not cause iteration to fail;\n"
- . $e->getMessage();
- $this->fail($message);
- }
- }
- // Countable
- public function testCanCountFormObject()
- {
- $this->setupElements();
- $this->assertEquals(3, count($this->form));
- }
- public function testCountingFormObjectCountsSubForms()
- {
- $this->setupElements();
- $this->setupSubForm();
- $this->assertEquals(4, count($this->form));
- }
- public function testCountingFormCountsDisplayGroupsButOmitsElementsInDisplayGroups()
- {
- $this->testCountingFormObjectCountsSubForms();
- $this->form->addDisplayGroup(array('foo', 'baz'), 'foobaz');
- $this->assertEquals(3, count($this->form));
- }
- // Element decorators and plugin paths
- public function testCanSetAllElementDecoratorsAtOnce()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->form->setElementDecorators(array(
- array('ViewHelper'),
- array('Label'),
- array('Fieldset'),
- ));
- foreach ($this->form->getElements() as $element) {
- $this->assertFalse($element->getDecorator('Errors'));
- $this->assertFalse($element->getDecorator('HtmlTag'));
- $decorator = $element->getDecorator('ViewHelper');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_ViewHelper);
- $decorator = $element->getDecorator('Label');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Label);
- $decorator = $element->getDecorator('Fieldset');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Fieldset);
- }
- }
- /**
- * @group ZF-3597
- */
- public function testSettingElementDecoratorsWithConcreteDecoratorShouldHonorOrder()
- {
- $this->form->setDecorators(array(
- 'FormElements',
- array('HtmlTag', array('tag' => 'table')),
- 'Form',
- ));
- $this->form->addElementPrefixPath('My_Decorator', dirname(__FILE__) . '/_files/decorators/', 'decorator');
- $this->form->addElement('text', 'test', array(
- 'label' => 'Foo',
- 'description' => 'sample description',
- ));
- require_once dirname(__FILE__) . '/_files/decorators/TableRow.php';
- $decorator = new My_Decorator_TableRow();
- $this->form->setElementDecorators(array(
- 'ViewHelper',
- $decorator,
- ));
- $html = $this->form->render($this->getView());
- $this->assertRegexp('#<tr><td>Foo</td><td>.*?<input[^>]+>.*?</td><td>sample description</td></tr>#s', $html, $html);
- }
- /**
- * @group ZF-3228
- */
- public function testShouldAllowSpecifyingSpecificElementsToDecorate()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->form->setElementDecorators(
- array(
- 'Description',
- 'Form',
- 'Fieldset',
- ),
- array(
- 'bar',
- )
- );
- $element = $this->form->bar;
- $this->assertFalse($element->getDecorator('ViewHelper'));
- $this->assertFalse($element->getDecorator('Errors'));
- $this->assertFalse($element->getDecorator('Label'));
- $this->assertFalse($element->getDecorator('HtmlTag'));
- $decorator = $element->getDecorator('Description');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Description);
- $decorator = $element->getDecorator('Form');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Form);
- $decorator = $element->getDecorator('Fieldset');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Fieldset);
- foreach (array('foo', 'baz') as $name) {
- $element = $this->form->$name;
- $this->assertFalse($element->getDecorator('Form'));
- $this->assertFalse($element->getDecorator('Fieldset'));
- }
- }
- public function testShouldAllowSpecifyingListOfElementsNotToDecorate()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->form->setElementDecorators(
- array(
- 'Description',
- 'Form',
- 'Fieldset',
- ),
- array(
- 'foo',
- 'baz',
- ),
- false
- );
- $element = $this->form->bar;
- $this->assertFalse($element->getDecorator('ViewHelper'));
- $this->assertFalse($element->getDecorator('Errors'));
- $this->assertFalse($element->getDecorator('Label'));
- $this->assertFalse($element->getDecorator('HtmlTag'));
- $decorator = $element->getDecorator('Description');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Description);
- $decorator = $element->getDecorator('Form');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Form);
- $decorator = $element->getDecorator('Fieldset');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Fieldset);
- foreach (array('foo', 'baz') as $name) {
- $element = $this->form->$name;
- $this->assertFalse($element->getDecorator('Form'));
- $this->assertFalse($element->getDecorator('Fieldset'));
- }
- }
- /**#@-*/
- public function testCanSetAllElementFiltersAtOnce()
- {
- $this->_checkZf2794();
- $this->setupElements();
- $this->form->setElementFilters(array(
- 'Alnum',
- 'StringToLower'
- ));
- foreach ($this->form->getElements() as $element) {
- $filter = $element->getFilter('Alnum');
- $this->assertTrue($filter instanceof Zend_Filter_Alnum);
- $filter = $element->getFilter('StringToLower');
- $this->assertTrue($filter instanceof Zend_Filter_StringToLower);
- }
- }
- public function testCanSetGlobalElementPrefixPath()
- {
- $this->setupElements();
- $this->form->addElementPrefixPath('Zend_Foo', 'Zend/Foo/');
- $this->form->addElement('text', 'prefixTest');
- foreach ($this->form->getElements() as $element) {
- $loader = $element->getPluginLoader('validate');
- $paths = $loader->getPaths('Zend_Foo_Validate');
- $this->assertFalse(empty($paths), $element->getName() . ':' . var_export($loader->getPaths(), 1));
- $this->assertContains('Foo', $paths[0]);
- $this->assertContains('Validate', $paths[0]);
- $paths = $element->getPluginLoader('filter')->getPaths('Zend_Foo_Filter');
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- $this->assertContains('Filter', $paths[0]);
- $paths = $element->getPluginLoader('decorator')->getPaths('Zend_Foo_Decorator');
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- $this->assertContains('Decorator', $paths[0]);
- }
- }
- public function testCustomGlobalElementPrefixPathUsedInNewlyCreatedElements()
- {
- $this->_checkZf2794();
- $this->form->addElementPrefixPath('My_Decorator', dirname(__FILE__) . '/_files/decorators', 'decorator');
- $this->form->addElement('text', 'prefixTest');
- $element = $this->form->prefixTest;
- $label = $element->getDecorator('Label');
- $this->assertTrue($label instanceof My_Decorator_Label, get_class($label));
- }
- /**
- * @group ZF-3093
- */
- public function testSettingElementPrefixPathPropagatesToAttachedSubForms()
- {
- $subForm = new Zend_Form_SubForm();
- $subForm->addElement('text', 'foo');
- $this->form->addSubForm($subForm, 'subForm');
- $this->form->addElementPrefixPath('Zend_Foo', 'Zend/Foo/');
- $loader = $this->form->subForm->foo->getPluginLoader('decorator');
- $paths = $loader->getPaths('Zend_Foo_Decorator');
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- $this->assertContains('Decorator', $paths[0]);
- }
- public function testCanSetElementValidatorPrefixPath()
- {
- $this->setupElements();
- $this->form->addElementPrefixPath('Zend_Foo', 'Zend/Foo/', 'validate');
- $this->form->addElement('text', 'prefixTest');
- foreach ($this->form->getElements() as $element) {
- $loader = $element->getPluginLoader('validate');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- $this->assertNotContains('Validate', $paths[0]);
- }
- }
- public function testCanSetElementFilterPrefixPath()
- {
- $this->setupElements();
- $this->form->addElementPrefixPath('Zend_Foo', 'Zend/Foo/', 'filter');
- $this->form->addElement('text', 'prefixTest');
- foreach ($this->form->getElements() as $element) {
- $loader = $element->getPluginLoader('filter');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- $this->assertNotContains('Filter', $paths[0]);
- }
- }
- public function testCanSetElementDecoratorPrefixPath()
- {
- $this->setupElements();
- $this->form->addElementPrefixPath('Zend_Foo', 'Zend/Foo/', 'decorator');
- $this->form->addElement('text', 'prefixTest');
- foreach ($this->form->getElements() as $element) {
- $loader = $element->getPluginLoader('decorator');
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- $this->assertNotContains('Decorator', $paths[0]);
- }
- }
- // Display Group decorators and plugin paths
- public function setupDisplayGroups()
- {
- $this->testCanAddAndRetrieveMultipleElements();
- $this->form->addElements(array(
- 'test1' => 'text',
- 'test2' => 'text',
- 'test3' => 'text',
- 'test4' => 'text'
- ));
- $this->form->addDisplayGroup(array('bar', 'bat'), 'barbat');
- $this->form->addDisplayGroup(array('foo', 'baz'), 'foobaz');
- }
- public function testCanSetAllDisplayGroupDecoratorsAtOnce()
- {
- $this->_checkZf2794();
- $this->setupDisplayGroups();
- $this->form->setDisplayGroupDecorators(array(
- array('Callback', array('callback' => 'strip_tags')),
- ));
- foreach ($this->form->getDisplayGroups() as $element) {
- $this->assertFalse($element->getDecorator('FormElements'));
- $this->assertFalse($element->getDecorator('HtmlTag'));
- $this->assertFalse($element->getDecorator('Fieldset'));
- $this->assertFalse($element->getDecorator('DtDdWrapper'));
- $decorator = $element->getDecorator('Callback');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Callback);
- }
- }
- public function testCanSetDisplayGroupPrefixPath()
- {
- $this->setupDisplayGroups();
- $this->form->addDisplayGroupPrefixPath('Zend_Foo', 'Zend/Foo/');
- $this->form->addDisplayGroup(array('test1', 'test2'), 'testgroup');
- foreach ($this->form->getDisplayGroups() as $group) {
- $loader = $group->getPluginLoader();
- $paths = $loader->getPaths('Zend_Foo');
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- }
- /**
- * @group ZF-3213
- */
- public function testShouldAllowSettingDisplayGroupPrefixPathViaConfigOptions()
- {
- require_once 'Zend/Config/Ini.php';
- $config = new Zend_Config_Ini(dirname(__FILE__) . '/_files/config/zf3213.ini', 'form');
- $form = new Zend_Form($config);
- $dg = $form->foofoo;
- $paths = $dg->getPluginLoader()->getPaths('My_Decorator');
- $this->assertTrue($paths !== false);
- }
- // Subform decorators
- public function testCanSetAllSubFormDecoratorsAtOnce()
- {
- $this->_checkZf2794();
- $this->setupSubForm();
- $this->form->setSubFormDecorators(array(
- array('Callback', array('callback' => 'strip_tags')),
- ));
- foreach ($this->form->getSubForms() as $subForm) {
- $this->assertFalse($subForm->getDecorator('FormElements'));
- $this->assertFalse($subForm->getDecorator('HtmlTag'));
- $this->assertFalse($subForm->getDecorator('Fieldset'));
- $this->assertFalse($subForm->getDecorator('DtDdWrapper'));
- $decorator = $subForm->getDecorator('Callback');
- $this->assertTrue($decorator instanceof Zend_Form_Decorator_Callback);
- }
- }
- // Extension
- public function testInitCalledPriorToLoadingDefaultDecorators()
- {
- $form = new Zend_Form_FormTest_FormExtension();
- $decorators = $form->getDecorators();
- $this->assertTrue(empty($decorators));
- }
- // Clone
- /**
- * @group ZF-3819
- */
- public function testCloningShouldCloneAllChildren()
- {
- $form = new Zend_Form();
- $foo = new Zend_Form_SubForm(array(
- 'name' => 'foo',
- 'elements' => array(
- 'one' => 'text',
- 'two' => 'text',
- ),
- ));
- $form->addElement('text', 'bar')
- ->addElement('text', 'baz')
- ->addElement('text', 'bat')
- ->addDisplayGroup(array('bar', 'bat'), 'barbat')
- ->addSubForm($foo, 'foo');
- $bar = $form->bar;
- $baz = $form->baz;
- $bat = $form->bat;
- $barbat = $form->barbat;
- $cloned = clone $form;
- $this->assertNotSame($foo, $cloned->foo);
- $this->assertNotSame($bar, $cloned->bar);
- $this->assertNotSame($baz, $cloned->baz);
- $this->assertNotSame($bat, $cloned->bat);
- $this->assertNotSame($barbat, $cloned->getDisplayGroup('barbat'));
- $this->assertNotSame($foo->one, $cloned->foo->one);
- $this->assertNotSame($foo->two, $cloned->foo->two);
- }
- // Reset
- /**
- * @group ZF-3227
- */
- public function testFormsShouldAllowResetting()
- {
- $form = new Zend_Form();
- $foo = new Zend_Form_SubForm(array(
- 'name' => 'foo',
- 'elements' => array(
- 'one' => 'text',
- 'two' => 'text',
- ),
- ));
- $form->addElement('text', 'bar')
- ->addElement('text', 'baz')
- ->addElement('text', 'bat')
- ->addDisplayGroup(array('bar', 'bat'), 'barbat')
- ->addSubForm($foo, 'foo');
- $values = array(
- 'bar' => 'Bar Value',
- 'baz' => 'Baz Value',
- 'bat' => 'Bat Value',
- 'foo' => array(
- 'one' => 'One Value',
- 'two' => 'Two Value',
- ),
- );
- $form->populate($values);
- $test = $form->getValues();
- $this->assertEquals($values, $test);
- $form->reset();
- $test = $form->getValues();
- $this->assertNotEquals($values, $test);
- $this->assertEquals(0, array_sum($test));
- }
- /**
- * @group ZF-3217
- */
- public function testFormShouldOverloadToRenderDecorators()
- {
- $this->setupElements();
- $this->form->setView($this->getView());
- $html = $this->form->renderFormElements();
- foreach ($this->form->getElements() as $element) {
- $this->assertContains('id="' . $element->getFullyQualifiedName() . '"', $html, 'Received: ' . $html);
- }
- $this->assertNotContains('<dl', $html);
- $this->assertNotContains('<form', $html);
- $html = $this->form->renderForm('this is the content');
- $this->assertContains('<form', $html);
- $this->assertContains('</form>', $html);
- $this->assertContains('this is the content', $html);
- }
- /**
- * @group ZF-3217
- * @expectedException Zend_Form_Exception
- */
- public function testOverloadingToInvalidMethodsShouldThrowAnException()
- {
- $html = $this->form->bogusMethodCall();
- }
- /**
- * @group ZF-2950
- */
- public function testDtDdElementsWithLabelGetUniqueId()
- {
- $form = new Zend_Form();
- $form->setView($this->getView());
- $fooElement = new Zend_Form_Element_Text('foo');
- $fooElement->setLabel('Foo');
- $form->addElement($fooElement);
- $html = $form->render();
- $this->assertContains('<dt id="foo-label">', $html);
- $this->assertContains('<dd id="foo-element">', $html);
- }
- /**
- * @group ZF-2950
- */
- public function testDtDdElementsWithoutLabelGetUniqueId()
- {
- $form = new Zend_Form();
- $form->setView($this->getView())
- ->addElement(new Zend_Form_Element_Text('foo'));
- $html = $form->render();
- $this->assertContains('<dt id="foo-label"> </dt>', $html);
- $this->assertContains('<dd id="foo-element">', $html);
- }
- /**
- * @group ZF-2950
- */
- public function testSubFormGetsUniqueIdWithName()
- {
- $form = new Zend_Form();
- $form->setView($this->getView())
- ->setName('testform')
- ->addSubForm(new Zend_Form_SubForm(), 'testform');
- $html = $form->render();
- $this->assertContains('<dt id="testform-label"> </dt>', $html);
- $this->assertContains('<dd id="testform-element">', $html);
- }
- /**
- * @group ZF-5370
- */
- public function testEnctypeDefaultsToMultipartWhenFileElementIsAttachedToForm()
- {
- $file = new Zend_Form_Element_File('txt');
- $this->form->addElement($file);
- $html = $this->form->render($this->getView());
- $this->assertFalse(empty($html));
- $this->assertRegexp('#<form[^>]+enctype="multipart/form-data"#', $html);
- }
- /**
- * @group ZF-5370
- */
- public function testEnctypeDefaultsToMultipartWhenFileElementIsAttachedToSubForm()
- {
- $subForm = new Zend_Form_SubForm();
- $subForm->addElement('file', 'txt');
- $this->form->addSubForm($subForm, 'page1')
- ->setView(new Zend_View);
- $html = $this->form->render();
- $this->assertContains('id="txt"', $html);
- $this->assertContains('name="txt"', $html);
- $this->assertRegexp('#<form[^>]+enctype="multipart/form-data"#', $html, $html);
- }
- /**
- * @group ZF-5370
- */
- public function testEnctypeDefaultsToMultipartWhenFileElementIsAttachedToDisplayGroup()
- {
- $this->form->addElement('file', 'txt')
- ->addDisplayGroup(array('txt'), 'txtdisplay')
- ->setView(new Zend_View);
- $html = $this->form->render();
- $this->assertContains('id="txt"', $html);
- $this->assertContains('name="txt"', $html);
- $this->assertRegexp('#<form[^>]+enctype="multipart/form-data"#', $html, $html);
- }
- /**
- * @group ZF-6070
- */
- public function testIndividualElementDecoratorsShouldOverrideGlobalElementDecorators()
- {
- $this->form->setOptions(array(
- 'elementDecorators' => array(
- 'ViewHelper',
- 'Label',
- ),
- 'elements' => array(
- 'foo' => array(
- 'type' => 'text',
- 'options' => array(
- 'decorators' => array(
- 'Errors',
- 'ViewHelper',
- ),
- ),
- ),
- ),
- ));
- $element = $this->form->getElement('foo');
- $expected = array('Zend_Form_Decorator_Errors', 'Zend_Form_Decorator_ViewHelper');
- $actual = array();
- foreach ($element->getDecorators() as $decorator) {
- $actual[] = get_class($decorator);
- }
- $this->assertSame($expected, $actual);
- }
- /**
- * @group ZF-5150
- */
- public function testIsValidShouldFailIfAddErrorHasBeenCalled()
- {
- $this->form->addError('Error');
- $this->assertFalse($this->form->isValid(array()));
- }
- /**
- * @group ZF-8494
- */
- public function testGetValidValues()
- {
- $data = array('valid' => 1234, 'invalid' => 'invalid', 'noElement' => 'noElement');
- require_once "Zend/Validate/Int.php";
- $validElement = new Zend_Form_Element("valid");
- $validElement->addValidator(new Zend_Validate_Int());
- $this->form->addElement($validElement);
- $invalidElement = new Zend_Form_Element('invalid');
- $invalidElement->addValidator(new Zend_Validate_Int());
- $this->form->addElement($invalidElement);
- $this->assertEquals(array('valid' => 1234), $this->form->getValidValues($data));
- }
- /**
- * @group ZF-8494
- */
- public function testGetValidSubFormValues()
- {
- $data = array('sub' => array('valid' => 1234, 'invalid' => 'invalid', 'noElement' => 'noElement'));
- require_once "Zend/Validate/Int.php";
- $subForm = new Zend_Form_SubForm();
- $validElement = new Zend_Form_Element("valid");
- $validElement->addValidator(new Zend_Validate_Int());
- $subForm->addElement($validElement);
- $invalidElement = new Zend_Form_Element('invalid');
- $invalidElement->addValidator(new Zend_Validate_Int());
- $subForm->addElement($invalidElement);
- $this->form->addSubForm($subForm, 'sub');
- $this->assertEquals(array('sub' => array('valid' => 1234)), $this->form->getValidValues($data));
- }
- /**
- * @group ZF-9275
- */
- public function testElementTranslatorNotOverriddenbyGlobalTranslatorDuringValidation()
- {
- $translator = new Zend_Translate('array', array('foo' => 'bar'));
- Zend_Registry::set('Zend_Translate', $translator);
- $this->form->addElement('text', 'foo');
- $this->form->isValid(array());
- $received = $this->form->foo->hasTranslator();
- $this->assertSame(false, $received);
- }
- /**
- * @group ZF-9275
- */
- public function testZendValidateDefaultTranslatorOverridesZendTranslateDefaultTranslator()
- {
- $translate = new Zend_Translate('array', array('isEmpty' => 'translate'));
- Zend_Registry::set('Zend_Translate', $translate);
- $translateValidate = new Zend_Translate('array', array('isEmpty' => 'validate'));
- Zend_Validate_Abstract::setDefaultTranslator($translateValidate);
- $this->form->addElement('text', 'foo', array('required'=>1));
- $this->form->isValid(array());
- $this->assertSame(array('isEmpty' => 'validate'), $this->form->foo->getMessages());
- }
- /**
- * @group ZF-9494
- */
- public function testElementTranslatorNotOveriddenbyFormTranslator()
- {
- $translations = array(
- 'isEmpty' => 'Element message',
- );
- $translate = new Zend_Translate('array', $translations);
- $this->form->addElement('text', 'foo', array('required'=>true, 'translator'=>$translate));
- $this->assertFalse($this->form->isValid(array('foo'=>'')));
- $messages = $this->form->getMessages();
- $this->assertEquals(1, count($messages));
- $this->assertEquals('Element message', $messages['foo']['isEmpty']);
- $this->assertFalse($this->form->isValidPartial(array('foo'=>'')));
- $messages = $this->form->getMessages();
- $this->assertEquals(1, count($messages));
- $this->assertEquals('Element message', $messages['foo']['isEmpty']);
- }
- /**
- * @group ZF-9364
- */
- public function testElementTranslatorPreferredOverFormTranslator()
- {
- $formTanslations = array(
- 'isEmpty' => 'Form message',
- );
- $elementTanslations = array(
- 'isEmpty' => 'Element message',
- );
- $formTranslate = new Zend_Translate('array', $formTanslations);
- $elementTranslate = new Zend_Translate('array', $elementTanslations);
- $this->form->setTranslator($formTranslate);
- $this->form->addElement('text', 'foo', array('required'=>true, 'translator'=>$elementTranslate));
- $this->form->addElement('text', 'bar', array('required'=>true));
- $this->assertFalse($this->form->isValid(array('foo'=>'', 'bar'=>'')));
- $messages = $this->form->getMessages();
- $this->assertEquals(2, count($messages));
- $this->assertEquals('Element message', $messages['foo']['isEmpty']);
- $this->assertEquals('Form message', $messages['bar']['isEmpty']);
- $this->assertFalse($this->form->isValidPartial(array('foo'=>'', 'bar'=>'')));
- $messages = $this->form->getMessages();
- $this->assertEquals(2, count($messages));
- $this->assertEquals('Element message', $messages['foo']['isEmpty']);
- $this->assertEquals('Form message', $messages['bar']['isEmpty']);
- }
- /**
- * @group ZF-9364
- */
- public function testElementTranslatorPreferredOverDefaultTranslator()
- {
- $defaultTranslations = array(
- 'isEmpty' => 'Default message',
- );
- $formTranslations = array(
- 'isEmpty' => 'Form message',
- );
- $elementTranslations = array(
- 'isEmpty' => 'Element message',
- );
- $defaultTranslate = new Zend_Translate('array', $defaultTranslations);
- $formTranslate = new Zend_Translate('array', $formTranslations);
- $elementTranslate = new Zend_Translate('array', $elementTranslations);
- Zend_Registry::set('Zend_Translate', $defaultTranslate);
- $this->form->setTranslator($formTranslate);
- $this->form->addElement('text', 'foo', array('required'=>true, 'translator'=>$elementTranslate));
- $this->form->addElement('text', 'bar', array('required'=>true));
- $this->assertFalse($this->form->isValid(array('foo'=>'', 'bar'=>'')));
- $messages = $this->form->getMessages();
- $this->assertEquals(2, count($messages));
- $this->assertEquals('Element message', $messages['foo']['isEmpty']);
- $this->assertEquals('Form message', $messages['bar']['isEmpty']);
- $this->assertFalse($this->form->isValidPartial(array('foo'=>'', 'bar'=>'')));
- $messages = $this->form->getMessages();
- $this->assertEquals(2, count($messages));
- $this->assertEquals('Element message', $messages['foo']['isEmpty']);
- $this->assertEquals('Form message', $messages['bar']['isEmpty']);
- }
- /**
- * @group ZF-9540
- */
- public function testSubFormTranslatorPreferredOverDefaultTranslator()
- {
- $defaultTranslations = array('isEmpty' => 'Default message');
- $subformTranslations = array('isEmpty' => 'SubForm message');
- $defaultTranslate = new Zend_Translate('array', $defaultTranslations);
- $subformTranslate = new Zend_Translate('array', $subformTranslations);
- Zend_Registry::set('Zend_Translate', $defaultTranslate);
- $this->form->addSubForm(new Zend_Form_SubForm(), 'subform');
- $this->form->subform->setTranslator($subformTranslate);
- $this->form->subform->addElement('text', 'foo', array('required'=>true));
- $this->assertFalse($this->form->isValid(array('subform' => array('foo'=>''))));
- $messages = $this->form->getMessages();
- $this->assertEquals('SubForm message', $messages['subform']['foo']['isEmpty']);
- $this->assertFalse($this->form->isValidPartial(array('subform' => array('foo'=>''))));
- $messages = $this->form->getMessages();
- $this->assertEquals('SubForm message', $messages['subform']['foo']['isEmpty']);
- }
- /**
- * @group ZF-12375
- */
- public function testElementTranslatorNotOveriddenbyFormTranslatorDuringRendering()
- {
- // Set translator for form
- $this->form->setTranslator(
- new Zend_Translate(
- 'array',
- array(
- 'labelText' => 'Foo',
- )
- )
- );
- // Add element with his own translator
- $this->form->addElement(
- 'text',
- 'foo',
- array(
- 'label' => 'labelText',
- 'translator' => new Zend_Translate(
- 'array',
- array(
- 'labelText' => 'Bar',
- )
- ),
- 'decorators' => array(
- 'Label',
- ),
- )
- );
- $this->form->setDecorators(array('FormElements'));
- // Test
- $this->assertSame(
- PHP_EOL . '<label for="foo" class="optional">Bar</label>' . PHP_EOL,
- $this->form->render(new Zend_View())
- );
- }
- public function testNameAttributeOutputForXhtml()
- {
- // Create form
- $form = new Zend_Form();
- $form->setName('foo');
- $form->setMethod(Zend_Form::METHOD_GET);
- $form->removeDecorator('HtmlTag');
- // Set doctype
- $this->getView()->getHelper('doctype')->doctype(
- Zend_View_Helper_Doctype::XHTML1_STRICT
- );
- $expected = '<form id="foo" method="get" action="">'
- . PHP_EOL
- . '</form>';
- $this->assertSame(
- $expected,
- $form->render($this->getView())
- );
- }
- /**
- * @group ZF-5613
- */
- public function testAddSubFormsPerConfig()
- {
- // Create form
- $form = new Zend_Form(
- array(
- 'subForms' => array(
- array(
- 'form' => array(
- 'elements' => array(
- 'foo' => array(
- 'text',
- array(
- 'label' => 'Foo',
- 'decorators' => array(
- 'ViewHelper',
- 'Label',
- ),
- ),
- ),
- ),
- 'id' => 'subform1',
- 'decorators' => array(
- 'FormElements',
- ),
- ),
- 'name' => 'subform1',
- 'order' => 2,
- ),
- array(
- 'form' => array(
- 'elements' => array(
- 'bar' => array(
- 'text',
- array(
- 'label' => 'Bar',
- 'decorators' => array(
- 'ViewHelper',
- 'Label',
- ),
- ),
- ),
- ),
- 'id' => 'subform2',
- 'decorators' => array(
- 'FormElements',
- ),
- ),
- 'name' => 'subform2',
- 'order' => 1,
- ),
- ),
- )
- );
- $form->removeDecorator('HtmlTag');
- // Tests
- $subForms = $form->getSubForms();
- $subForm1 = current($subForms);
- $subForm2 = next($subForms);
- $this->assertSame(
- array(
- 'subform1',
- 'subform2',
- ),
- array(
- $subForm1->getName(),
- $subForm2->getName(),
- )
- );
- $expected = '<form enctype="application/x-www-form-urlencoded" action="" method="post">'
- . PHP_EOL
- . PHP_EOL
- . '<label for="subform2-bar" class="optional">Bar</label>'
- . PHP_EOL
- . PHP_EOL
- . '<input type="text" name="subform2[bar]" id="subform2-bar" value="" />'
- . PHP_EOL
- . PHP_EOL
- . '<label for="subform1-foo" class="optional">Foo</label>'
- . PHP_EOL
- . PHP_EOL
- . '<input type="text" name="subform1[foo]" id="subform1-foo" value="" />'
- . '</form>';
- $this->assertSame($expected, $form->render($this->getView()));
- }
- /**
- * Used by test methods susceptible to ZF-2794, marks a test as incomplete
- *
- * @link http://framework.zend.com/issues/browse/ZF-2794
- * @return void
- */
- protected function _checkZf2794()
- {
- if (strtolower(substr(PHP_OS, 0, 3)) == 'win' && version_compare(PHP_VERSION, '5.1.4', '=')) {
- $this->markTestIncomplete('Error occurs for PHP 5.1.4 on Windows');
- }
- }
- /**
- * Prove the fluent interface on Zend_Form::loadDefaultDecorators
- *
- * @link http://framework.zend.com/issues/browse/ZF-9913
- * @return void
- */
- public function testFluentInterfaceOnLoadDefaultDecorators()
- {
- $this->assertSame($this->form, $this->form->loadDefaultDecorators());
- }
- /**
- * @group ZF-7552
- */
- public function testAddDecoratorsKeepsNonNumericKeyNames()
- {
- $this->form->addDecorators(array(array(array('td' => 'HtmlTag'),
- array('tag' => 'td')),
- array(array('tr' => 'HtmlTag'),
- array('tag' => 'tr')),
- array('HtmlTag', array('tag' => 'baz'))));
- $t1 = $this->form->getDecorators();
- $this->form->setDecorators($t1);
- $t2 = $this->form->getDecorators();
- $this->assertEquals($t1, $t2);
- }
- /**
- * @group ZF-10411
- */
- public function testAddingElementToDisplayGroupManuallyShouldPreventRenderingByForm()
- {
- $form = new Zend_Form_FormTest_AddToDisplayGroup();
- $html = $form->render($this->getView());
- $this->assertEquals(1, substr_count($html, 'Customer Type'), $html);
- }
- /**
- * @group ZF-10491
- * @group ZF-10734
- * @group ZF-10731
- */
- public function testAddElementToDisplayGroupByElementInstance()
- {
- $element = new Zend_Form_Element_Text('foo');
- $elementTwo = new Zend_Form_Element_Text('baz-----');
- $this->form->addElements(array($element, $elementTwo));
- $this->form->addDisplayGroup(array($element, $elementTwo), 'bar');
- $displayGroup = $this->form->getDisplayGroup('bar');
- $this->assertNotNull($displayGroup->getElement('foo'));
- $this->assertNotNull($displayGroup->getElement('baz'));
- // clear display groups and elements
- $this->form->clearDisplayGroups()
- ->clearElements();
- $this->form->addDisplayGroup(array($element, $elementTwo), 'bar');
- $displayGroup = $this->form->getDisplayGroup('bar');
- $this->assertNotNull($displayGroup->getElement('foo'));
- $this->assertNotNull($displayGroup->getElement('baz'));
- }
- /**
- * @group ZF-10149
- */
- public function testIfViewIsSetInTime()
- {
- try {
- $form = new Zend_Form(array('view' => new MyTestView()));
- $this->assertTrue($form->getView() instanceof MyTestView);
- $form = new Zend_Form(array('view' => new StdClass()));
- $this->assertNull($form->getView());
- $result = $form->render();
- }
- catch (Zend_Form_Exception $e) {
- $this->fail('Setting a view object using the options array should not throw an exception');
- }
- $this->assertNotEquals($result,'');
- }
- /**
- * @group ZF-11088
- */
- public function testAddErrorOnElementMakesFormInvalidAndReturnsCustomError()
- {
- $element = new Zend_Form_Element_Text('foo');
- $errorString = 'This element made a booboo';
- $element->addError($errorString);
- $errorMessages = $element->getErrorMessages();
- $this->assertSame(1, count($errorMessages));
- $this->assertSame($errorString, $errorMessages[0]);
- $element2 = new Zend_Form_Element_Text('bar');
- $this->form->addElement($element2);
- $this->form->getElement('bar')->addError($errorString);
- $errorMessages2 = $this->form->getElement('bar')->getErrorMessages();
- $this->assertSame(1, count($errorMessages2));
- $this->assertSame($errorString, $errorMessages2[0]);
- }
- /**
- * @group ZF-10865
- * @expectedException Zend_Form_Exception
- */
- public function testExceptionThrownWhenAddElementsIsGivenNullValue()
- {
- $form = new Zend_Form();
- $form->addElement(null);
- }
- /**
- * @group ZF-11729
- */
- public function testDashSeparatedElementsInDisplayGroupsShouldNotRenderOutsideDisplayGroup()
- {
- $form = new Zend_Form();
- $form->addElement('text', 'random-element-name', array(
- 'label' => 'This is weird',
- 'value' => 'think its a bug',
- ));
- $form->addDisplayGroup(array('random-element-name'), 'foobar', array(
- 'legend' => 'foobar',
- ));
- $html = $form->render($this->getView());
- $count = substr_count($html, 'randomelementname-element');
- $this->assertEquals(1, $count, $html);
- }
- /**
- * @group ZF-11831
- */
- public function testElementsOfSubFormReceiveCorrectDefaultTranslator()
- {
- // Global default translator
- $trDefault = new Zend_Translate(array(
- 'adapter' => 'array',
- 'content' => array(
- Zend_Validate_NotEmpty::IS_EMPTY => 'Default'
- ),
- 'locale' => 'en'
- ));
- Zend_Registry::set('Zend_Translate', $trDefault);
- // Translator to use for elements
- $trElement = new Zend_Translate(array(
- 'adapter' => 'array',
- 'content' => array(
- Zend_Validate_NotEmpty::IS_EMPTY =>'Element'
- ),
- 'locale' => 'en'
- ));
- Zend_Validate_Abstract::setDefaultTranslator($trElement);
- // Change the form's translator
- $form = new Zend_Form();
- $form->addElement(new Zend_Form_Element_Text('foo', array(
- 'required' => true,
- 'validators' => array('NotEmpty')
- )));
- // Create a subform with it's own validator
- $sf1 = new Zend_Form_SubForm();
- $sf1->addElement(new Zend_Form_Element_Text('foosub', array(
- 'required' => true,
- 'validators' => array('NotEmpty')
- )));
- $form->addSubForm($sf1, 'Test1');
- $form->isValid(array());
- $messages = $form->getMessages();
- $this->assertEquals(
- 'Element',
- @$messages['foo'][Zend_Validate_NotEmpty::IS_EMPTY],
- 'Form element received wrong validator'
- );
- $this->assertEquals(
- 'Element',
- @$messages['Test1']['foosub'][Zend_Validate_NotEmpty::IS_EMPTY],
- 'SubForm element received wrong validator'
- );
- }
- /**
- * @group ZF-12173
- */
- public function testAddingPrefixPathsWithBackslashWillLoadNamespacedPlugins()
- {
- if (version_compare(PHP_VERSION, '5.3.0', '<')) {
- $this->markTestSkipped(__CLASS__ . '::' . __METHOD__ . ' requires PHP 5.3.0 or greater');
- return;
- }
- $form = new Zend_Form();
- $form->addPrefixPath('Zf\Foo', 'Zf/Foo');
- foreach (array('element', 'decorator') as $type) {
- $loader = $form->getPluginLoader($type);
- $paths = $loader->getPaths('Zf\Foo\\' . ucfirst($type));
- $this->assertTrue(is_array($paths), "Failed for type $type: " . var_export($paths, 1));
- $this->assertFalse(empty($paths));
- $this->assertContains('Foo', $paths[0]);
- }
- }
- /**
- * @group ZF-8942
- */
- public function testCreateElementIncludesElementDecorators()
- {
- // Init form
- $form = new Zend_Form();
- $form->setElementDecorators(
- array(
- new Zend_Form_Decorator_ViewHelper(),
- new Zend_Form_Decorator_Label(),
- )
- );
- $element = $form->createElement('text', 'foo');
- // Test
- $expected = array(
- 'Zend_Form_Decorator_ViewHelper',
- 'Zend_Form_Decorator_Label',
- );
- $actual = array();
- foreach ($element->getDecorators() as $decorator) {
- $actual[] = get_class($decorator);
- }
- $this->assertEquals($expected, $actual);
- }
- /**
- * @group ZF-12387
- */
- public function testAddElementAsObjectWithDecoratorsShouldNotLoseDecorators()
- {
- // Init form
- $form = new Zend_Form();
- $form->setElementDecorators(
- array(
- new Zend_Form_Decorator_ViewHelper(),
- new Zend_Form_Decorator_Label(),
- )
- );
- $element = new Zend_Form_Element_Text('foo');
- $element->setDecorators(array('Errors', 'Description'));
- $form->addElement($element);
- // Test
- $expected = array(
- 'Zend_Form_Decorator_Errors',
- 'Zend_Form_Decorator_Description',
- );
- $actual = array();
- foreach ($form->getElement('foo')->getDecorators() as $decorator) {
- $actual[] = get_class($decorator);
- }
- $this->assertEquals($expected, $actual);
- }
- /**
- * @group ZF-12387
- */
- public function testAddElementAsObjectGetsElementDecoratorsIfNoneIsExplicitlySet()
- {
- // Init form
- $form = new Zend_Form();
- $form->setElementDecorators(
- array(
- new Zend_Form_Decorator_ViewHelper(),
- new Zend_Form_Decorator_Label(),
- )
- );
- // Add element
- $element = new Zend_Form_Element_Text(
- 'foo',
- array('disableLoadDefaultDecorators' => true)
- );
- $form->addElement($element);
- // Test
- $expected = array(
- 'Zend_Form_Decorator_ViewHelper',
- 'Zend_Form_Decorator_Label',
- );
- $actual = array();
- foreach ($form->getElement('foo')->getDecorators() as $decorator) {
- $actual[] = get_class($decorator);
- }
- $this->assertEquals($expected, $actual);
- }
- /**
- * @group GH-319
- */
- public function testHasErrorsMethodShouldCheckAlsoElements()
- {
- // Init form
- $form = new Zend_Form();
- $element = new Zend_Form_Element_Text('foo');
- $form->addElement($element);
- $element->markAsError();
- // Test form
- $this->assertTrue($form->hasErrors());
- $this->assertFalse($form->isValid(array('foo' => 1)));
- // Test element
- $this->assertTrue($element->hasErrors());
- $this->assertFalse($element->isValid(1));
- }
- /**
- * @group GH-319
- */
- public function testHasErrorsMethodShouldCheckAlsoSubForms()
- {
- // Init form
- $form = new Zend_Form();
- $subForm = new Zend_Form_SubForm();
- $element = new Zend_Form_Element_Text('foo');
- $subForm->addElement($element);
- $form->addSubForm($subForm, 'subForm');
- $element->markAsError();
- // Test form
- $this->assertTrue($form->hasErrors());
- $this->assertFalse($form->isValid(array('foo' => 1)));
- // Test element
- $this->assertTrue($element->hasErrors());
- $this->assertFalse($element->isValid(1));
- }
- }
- class Zend_Form_FormTest_DisplayGroup extends Zend_Form_DisplayGroup
- {
- }
- class Zend_Form_FormTest_FormExtension extends Zend_Form
- {
- public function init()
- {
- $this->setDisableLoadDefaultDecorators(true);
- }
- }
- class Zend_Form_FormTest_WithDisplayGroup extends Zend_Form
- {
- public function init()
- {
- $this->addElement('text', 'el1', array(
- 'label' => 'Title',
- 'required' => true,
- ));
- $this->addDisplayGroup(array('el1'), 'group1', array(
- 'legend' => 'legend 1',
- ));
- }
- }
- class Zend_Form_FormTest_AddToDisplayGroup extends Zend_Form_FormTest_WithDisplayGroup
- {
- public function init()
- {
- parent::init();
- $element = new Zend_Form_Element_Text('el2', array(
- 'label' => 'Customer Type',
- ));
- $this->addElement($element);
- $this->group1->addElement($element);
- }
- }
- class MyTestView extends Zend_View
- {
- }
- if (PHPUnit_MAIN_METHOD == 'Zend_Form_FormTest::main') {
- Zend_Form_FormTest::main();
- }
|