Example #1
0
 public function testValidatorAccessAndMutationShouldProxyToAdapter()
 {
     $this->testElementShouldAllowSpecifyingAdapterUsingConcreteInstance();
     $this->element->addValidator('Count', false, 1)->addValidators(array('Extension' => 'jpg', new Zend_Validate_File_Upload()));
     $validators = $this->element->getValidators();
     $test = $this->element->getTransferAdapter()->getValidators();
     $this->assertEquals($validators, $test);
     $this->assertTrue(is_array($test));
     $this->assertEquals(3, count($test));
     $validator = $this->element->getValidator('count');
     $test = $this->element->getTransferAdapter()->getValidator('count');
     $this->assertNotNull($validator);
     $this->assertSame($validator, $test);
     $this->element->removeValidator('Extension');
     $this->assertFalse($this->element->getTransferAdapter()->hasValidator('Extension'));
     $this->element->setValidators(array('Upload', array('validator' => 'Extension', 'options' => 'jpg'), array('validator' => 'Count', 'options' => 1)));
     $validators = $this->element->getValidators();
     $test = $this->element->getTransferAdapter()->getValidators();
     $this->assertSame($validators, $test);
     $this->assertTrue(is_array($test));
     $this->assertEquals(3, count($test), var_export($test, 1));
     $this->element->clearValidators();
     $validators = $this->element->getValidators();
     $this->assertTrue(is_array($validators));
     $this->assertEquals(0, count($validators));
     $test = $this->element->getTransferAdapter()->getValidators();
     $this->assertSame($validators, $test);
 }