public function testResizedImageInsertion()
 {
     $obj = new HtmlEditorFieldTest_Object();
     $editor = new HtmlEditorField('Content');
     /*
      * Following stuff is neccessary to
      *     a) use the proper filename for the image we are referencing
      *     b) not confuse the "existing" filesystem by our test
      */
     $imageFile = $this->objFromFixture('Image', 'example_image');
     $imageFile->Filename = FRAMEWORK_DIR . '/' . $imageFile->Filename;
     $origUpdateFilesystem = Config::inst()->get('File', 'update_filesystem');
     Config::inst()->update('File', 'update_filesystem', false);
     $imageFile->write();
     Config::inst()->update('File', 'update_filesystem', $origUpdateFilesystem);
     /*
      * End of test bet setting
      */
     $editor->setValue('<img src="assets/HTMLEditorFieldTest_example.jpg" width="10" height="20" />');
     $editor->saveInto($obj);
     $parser = new CSSContentParser($obj->Content);
     $xml = $parser->getByXpath('//img');
     $this->assertEquals('', (string) $xml[0]['alt'], 'Alt tags are added by default.');
     $this->assertEquals('', (string) $xml[0]['title'], 'Title tags are added by default.');
     $this->assertEquals(10, (int) $xml[0]['width'], 'Width tag of resized image is set.');
     $this->assertEquals(20, (int) $xml[0]['height'], 'Height tag of resized image is set.');
     $neededFilename = 'assets/_resampled/ResizedImage' . Convert::base64url_encode(array(10, 20)) . '/HTMLEditorFieldTest_example.jpg';
     $this->assertEquals($neededFilename, (string) $xml[0]['src'], 'Correct URL of resized image is set.');
     $this->assertTrue(file_exists(BASE_PATH . DIRECTORY_SEPARATOR . $neededFilename), 'File for resized image exists');
     $this->assertEquals(false, $obj->HasBrokenFile, 'Referenced image file exists.');
 }
 function testProcess()
 {
     $form = $this->setupFormFrontend();
     $controller = new UserDefinedFormControllerTest_Controller($form);
     $this->autoFollowRedirection = false;
     $this->clearEmails();
     // load the form
     $this->get($form->URLSegment);
     $response = $this->submitForm('Form_Form', null, array('basic-text-name' => 'Basic Value'));
     // should have a submitted form field now
     $submitted = DataObject::get('SubmittedFormField', "\"Name\" = 'basic-text-name'");
     $this->assertDOSAllMatch(array('Name' => 'basic-text-name', 'Value' => 'Basic Value', 'Title' => 'Basic Text Field'), $submitted);
     // check emails
     $this->assertEmailSent('*****@*****.**', '*****@*****.**', 'Email Subject');
     $email = $this->findEmail('*****@*****.**', '*****@*****.**', 'Email Subject');
     // assert that the email has the field title and the value html email
     $parser = new CSSContentParser($email['content']);
     $title = $parser->getBySelector('strong');
     $this->assertEquals('Basic Text Field', (string) $title[0], 'Email contains the field name');
     $value = $parser->getBySelector('dd');
     $this->assertEquals('Basic Value', (string) $value[0], 'Email contains the value');
     // no html
     $this->assertEmailSent('*****@*****.**', '*****@*****.**', 'Email Subject');
     $nohtml = $this->findEmail('*****@*****.**', '*****@*****.**', 'Email Subject');
     $this->assertContains('Basic Text Field - Basic Value', $nohtml['content'], 'Email contains no html');
     // no data
     $this->assertEmailSent('*****@*****.**', '*****@*****.**', 'Email Subject');
     $nodata = $this->findEmail('*****@*****.**', '*****@*****.**', 'Email Subject');
     $parser = new CSSContentParser($nodata['content']);
     $list = $parser->getBySelector('dl');
     $this->assertFalse(isset($list[0]), 'Email contains no fields');
     // check to see if the user was redirected (301)
     $this->assertEquals($response->getStatusCode(), 302);
     $this->assertStringEndsWith('finished', $response->getHeader('Location'));
 }
 function testCorrectNumberOfRowsInTable()
 {
     $field = $this->manyManyForm->dataFieldByName('Players');
     $parser = new CSSContentParser($field->FieldHolder());
     $this->assertEquals(count($parser->getBySelector('tbody tr')), 2, 'There are 2 players (rows) in the table');
     $this->assertEquals($field->Items()->Count(), 2, 'There are 2 CTF items in the DataObjectSet');
 }
 public function testShowDeleteButtonsWithAdminPermission()
 {
     $this->logInWithPermission('ADMIN');
     $content = new CSSContentParser($this->gridField->FieldHolder());
     $deleteButtons = $content->getBySelector('.gridfield-button-delete');
     $this->assertEquals(3, count($deleteButtons), 'Delete buttons should show when logged in.');
 }
 public function testShowEditLinksWithAdminPermission()
 {
     $this->logInWithPermission('ADMIN');
     $content = new CSSContentParser($this->gridField->FieldHolder());
     $editLinks = $content->getBySelector('.edit-link');
     $this->assertEquals(2, count($editLinks), 'Edit links should show when logged in.');
 }
Example #6
0
	function testSetDefaultItems() {
		$f = new CheckboxSetField(
			'Test', 
			false, 
			array(0 => 'Zero', 1 => 'One', 2 => 'Two', 3 => 'Three')
		);
		
		$f->setValue(array(0,1));
		$f->setDefaultItems(array(2));
		$p = new CSSContentParser($f->Field());
		$item0 = $p->getBySelector('#Test_0');
		$item1 = $p->getBySelector('#Test_1');
		$item2 = $p->getBySelector('#Test_2');
		$item3 = $p->getBySelector('#Test_3');
		$this->assertEquals(
			(string)$item0[0]['checked'],
			'checked',
			'Selected through value'
		);
		$this->assertEquals(
			(string)$item1[0]['checked'],
			'checked',
			'Selected through value'
		);
		$this->assertEquals(
			(string)$item2[0]['checked'],
			'checked',
			'Selected through default items'
		);
		$this->assertEquals(
			(string)$item3[0]['checked'],
			'',
			'Not selected by either value or default items'
		);
	}
	function testAdd() {
		$this->logInWithPermission('ADMIN');
		$team1 = $this->objFromFixture('GridFieldTest_Team', 'team1');
		$team2 = $this->objFromFixture('GridFieldTest_Team', 'team2');

		$response = $this->get('GridFieldAddExistingAutocompleterTest_Controller');
		$this->assertFalse($response->isError());
		$parser = new CSSContentParser($response->getBody());
		$items = $parser->getBySelector('.ss-gridfield .ss-gridfield-items .ss-gridfield-item');
		$this->assertEquals(1, count($items));
		$this->assertEquals($team1->ID, (int)$items[0]['data-id']);

		$btns = $parser->getBySelector('.ss-gridfield #action_gridfield_relationadd');
		$response = $this->post(
			'GridFieldAddExistingAutocompleterTest_Controller/Form/field/testfield',
			array(
				'relationID' => $team2->ID,
				(string)$btns[0]['name'] => 1
			)
		);
		$this->assertFalse($response->isError());
		$parser = new CSSContentParser($response->getBody());
		$items = $parser->getBySelector('.ss-gridfield .ss-gridfield-items .ss-gridfield-item');
		$this->assertEquals(2, count($items));
		$this->assertDOSEquals(array(
			array('ID' => (int)$items[0]['data-id']),
			array('ID' => (int)$items[1]['data-id']),
		), new ArrayList(array($team1, $team2)));
		
	}
 function testNestedEditForm()
 {
     $this->logInWithPermission('ADMIN');
     $group = $this->objFromFixture('GridFieldDetailFormTest_PeopleGroup', 'group');
     $person = $group->People()->First();
     $category = $person->Categories()->First();
     // Get first form (GridField managing PeopleGroup)
     $response = $this->get('GridFieldDetailFormTest_GroupController');
     $this->assertFalse($response->isError());
     $parser = new CSSContentParser($response->getBody());
     $groupEditLink = $parser->getByXpath('//tr[contains(@class, "ss-gridfield-item") and contains(@data-id, "' . $group->ID . '")]//a');
     $this->assertEquals('GridFieldDetailFormTest_GroupController/Form/field/testfield/item/' . $group->ID . '/edit', (string) $groupEditLink[0]['href']);
     // Get second level form (GridField managing Person)
     $response = $this->get((string) $groupEditLink[0]['href']);
     $this->assertFalse($response->isError());
     $parser = new CSSContentParser($response->getBody());
     $personEditLink = $parser->getByXpath('//fieldset[@id="Form_ItemEditForm_People"]//tr[contains(@class, "ss-gridfield-item") and contains(@data-id, "' . $person->ID . '")]//a');
     $this->assertEquals(sprintf('GridFieldDetailFormTest_GroupController/Form/field/testfield/item/%d/ItemEditForm/field/People/item/%d/edit', $group->ID, $person->ID), (string) $personEditLink[0]['href']);
     // Get third level form (GridField managing Category)
     $response = $this->get((string) $personEditLink[0]['href']);
     $this->assertFalse($response->isError());
     $parser = new CSSContentParser($response->getBody());
     $categoryEditLink = $parser->getByXpath('//fieldset[@id="Form_ItemEditForm_Categories"]//tr[contains(@class, "ss-gridfield-item") and contains(@data-id, "' . $category->ID . '")]//a');
     $this->assertEquals(sprintf('GridFieldDetailFormTest_GroupController/Form/field/testfield/item/%d/ItemEditForm/field/People/item/%d/ItemEditForm/field/Categories/item/%d/edit', $group->ID, $person->ID, $category->ID), (string) $categoryEditLink[0]['href']);
     // Fourth level form would be a Category detail view
 }
Example #9
0
 public function testSetDisabledItems()
 {
     $f = new OptionsetField('Test', false, array(0 => 'Zero', 1 => 'One'));
     $f->setDisabledItems(array(0));
     $p = new CSSContentParser($f->Field());
     $item0 = $p->getBySelector('#Test_0');
     $item1 = $p->getBySelector('#Test_1');
     $this->assertEquals((string) $item0[0]['disabled'], 'disabled');
     $this->assertEquals((string) $item1[0]['disabled'], '');
 }
	function testDateFormatCustomFormatAppearsInCustomInputInField() {
		$member = $this->objFromFixture('Member', 'noformatmember');
		$member->setField('DateFormat', 'dd MM yy');
		$field = $this->createDateFormatFieldForMember($member);
		$field->setForm(new Form(new MemberDatetimeOptionsetFieldTest_Controller(), 'Form', new FieldList(), new FieldList())); // fake form
		$parser = new CSSContentParser($field->Field());
		$xmlInputArr = $parser->getBySelector('.valCustom input');
		$xmlPreview = $parser->getBySelector('.preview');
		$this->assertEquals('checked', (string) $xmlInputArr[0]['checked']);
		$this->assertEquals('dd MM yy', (string) $xmlInputArr[1]['value']);
	}
 public function testLegend()
 {
     $composite = new CompositeField(new TextField('A'), new TextField('B'));
     $composite->setTag('fieldset');
     $composite->setLegend('My legend');
     $parser = new CSSContentParser($composite->Field());
     $root = $parser->getBySelector('fieldset.composite');
     $legend = $parser->getBySelector('fieldset.composite legend');
     $this->assertNotNull($legend);
     $this->assertEquals('My legend', (string) $legend[0]);
 }
 function testThereIsNoPaginatorWhenOnlyOnePage()
 {
     // We set the itemsPerPage to an reasonably big number so as to avoid test broke from small changes on the fixture YML file
     $total = $this->list->count();
     $this->gridField->getConfig()->getComponentByType("GridFieldPaginator")->setItemsPerPage($total);
     $fieldHolder = $this->gridField->FieldHolder();
     $content = new CSSContentParser($fieldHolder);
     // Check that there is no paginator render into the footer
     $this->assertEquals(0, count($content->getBySelector('.datagrid-pagination')));
     // Check that there is still 'View 1 - 4 of 4' part on the left of the paginator
     $this->assertEquals(1, count($content->getBySelector('.pagination-records-number')));
 }
 public function testExportLink()
 {
     $page = $this->objFromFixture('RegistryPageTestPage', 'contact-registrypage');
     $response = $this->get($page->RelativeLink('RegistryFilterForm') . '?' . http_build_query(array('FirstName' => 'Alexander', 'Sort' => 'FirstName', 'Dir' => 'DESC', 'action_doRegistryFilter' => 'Filter')));
     $parser = new CSSContentParser($response->getBody());
     $anchor = $parser->getBySelector('a.export');
     $this->assertContains('export?', (string) $anchor[0]['href']);
     $this->assertContains('FirstName=Alexander', (string) $anchor[0]['href']);
     $this->assertContains('Surname=', (string) $anchor[0]['href']);
     $this->assertContains('Sort=FirstName', (string) $anchor[0]['href']);
     $this->assertContains('Dir=DESC', (string) $anchor[0]['href']);
     $this->assertContains('action_doRegistryFilter=Filter', (string) $anchor[0]['href']);
 }
 function testLegacyItemsFieldHolderWithTitle()
 {
     $items = array('one//one title' => new LiteralField('one', 'one view'), 'two//two title' => new LiteralField('two', 'two view'));
     $field = new SelectionGroup('MyGroup', $items);
     $parser = new CSSContentParser($field->FieldHolder());
     $listEls = $parser->getBySelector('li');
     $listElOne = $listEls[0];
     $listElTwo = $listEls[1];
     $this->assertEquals('one', (string) $listElOne->input[0]['value']);
     $this->assertEquals('two', (string) $listElTwo->input[0]['value']);
     $this->assertEquals('one title', (string) $listElOne->label[0]);
     $this->assertEquals('two title', (string) $listElTwo->label[0]);
 }
 function testShowDropdownCustomTimeFormat()
 {
     $field = new TimeDropdownField('Time', 'Time');
     $field->setConfig('showdropdown', true);
     $field->setConfig('timeformat', 'hh:mm a');
     $html = $field->Field();
     $parser = new CSSContentParser($html);
     $this->assertNotNull($parser->getBySelector('select'));
     $options = $parser->getBySelector('option');
     $this->assertEquals('00:00:00', (string) $options[0]['value'], 'Correct data value');
     $this->assertEquals('13:00:00', (string) $options[13]['value'], 'Correct data value');
     $this->assertEquals('12:00 AM', (string) $options[0], 'Correct view value');
     $this->assertEquals('01:00 PM', (string) $options[13], 'Correct view value');
 }
Example #16
0
 function testEmailWriter()
 {
     $testEmailWriter = new SS_LogEmailWriter('*****@*****.**');
     SS_Log::add_writer($testEmailWriter, SS_Log::ERR);
     SS_Log::log('Email test', SS_LOG::ERR, array('my-string' => 'test', 'my-array' => array('one' => 1)));
     $this->assertEmailSent('*****@*****.**');
     $email = $this->findEmail('*****@*****.**');
     $parser = new CSSContentParser($email['htmlContent']);
     $extras = $parser->getBySelector('table.extras');
     $extraRows = $extras[0]->tr;
     $this->assertContains('my-string', $extraRows[count($extraRows) - 2]->td[0]->asXML(), 'Contains extra data key');
     $this->assertContains('test', $extraRows[count($extraRows) - 2]->td[1]->asXML(), 'Contains extra data value');
     $this->assertContains('my-array', $extraRows[count($extraRows) - 1]->td[0]->asXML(), 'Contains extra data key');
     $this->assertContains("array('one'=&gt;1,)", str_replace(array("\r", "\n", " "), '', $extraRows[count($extraRows) - 1]->td[1]->asXML()), 'Serializes arrays correctly');
 }
 function testGetSubmissionns()
 {
     $template = $this->field->getSubmissions();
     $parser = new CSSContentParser($template);
     // check to ensure that the pagination exists
     $pagination = $parser->getBySelector('.userforms-submissions-pagination');
     $this->assertEquals(str_replace("\n", ' ', (string) $pagination[0]->span), "Viewing rows 0 - 10 of 11 rows");
     $this->assertEquals(str_replace("\n", ' ', (string) $pagination[0]->a), "Next page");
     // ensure the actions exist
     $actions = $parser->getBySelector('.userforms-submission-actions');
     $this->assertEquals(count($actions[0]->li), 2);
     // submissions
     $submissions = $parser->getBySelector('.userform-submission');
     $this->assertEquals(count($submissions), 10);
 }
 public function testGoballyEffected()
 {
     Session::clear('GridField.PaginatorWithShowAll.Mode');
     $this->gridField1->State->GridFieldShowAll->showAllMode = true;
     $this->gridField1->FieldHolder();
     $fieldHolder21 = $this->gridField2->FieldHolder();
     $content21 = new CSSContentParser($fieldHolder21);
     $this->assertEquals(6, count($content21->getBySelector('tr.ss-gridfield-item')));
     $this->gridField1->State->GridFieldShowAll->showAllMode = false;
     $this->gridField1->FieldHolder();
     $this->gridField2->getConfig()->getComponentByType('GridFieldPaginatorWithShowAll')->setItemsPerPage(2);
     $fieldHolder22 = $this->gridField2->FieldHolder();
     $content22 = new CSSContentParser($fieldHolder22);
     $this->assertEquals(2, count($content22->getBySelector('tr.ss-gridfield-item')));
     Session::clear('GridField.PaginatorWithShowAll.Mode');
 }
 public function testTreeSearch()
 {
     $field = new TreeDropdownField('TestTree', 'Test tree', 'Folder');
     // case insensitive search against keyword 'sub' for folders
     $request = new SS_HTTPRequest('GET', 'url', array('search' => 'sub'));
     $tree = $field->tree($request);
     $folder1 = $this->objFromFixture('Folder', 'folder1');
     $folder1Subfolder1 = $this->objFromFixture('Folder', 'folder1-subfolder1');
     $parser = new CSSContentParser($tree);
     $cssPath = 'ul.tree li#selector-TestTree-' . $folder1->ID . ' li#selector-TestTree-' . $folder1Subfolder1->ID . ' a span.item';
     $firstResult = $parser->getBySelector($cssPath);
     $this->assertEquals((string) $firstResult[0], $folder1Subfolder1->Name, $folder1Subfolder1->Name . ' is found, nested under ' . $folder1->Name);
     $subfolder = $this->objFromFixture('Folder', 'subfolder');
     $cssPath = 'ul.tree li#selector-TestTree-' . $subfolder->ID . ' a span.item';
     $secondResult = $parser->getBySelector($cssPath);
     $this->assertEquals((string) $secondResult[0], $subfolder->Name, $subfolder->Name . ' is found at root level');
     // other folders which don't contain the keyword 'sub' are not returned in search results
     $folder2 = $this->objFromFixture('Folder', 'folder2');
     $cssPath = 'ul.tree li#selector-TestTree-' . $folder2->ID . ' a span.item';
     $noResult = $parser->getBySelector($cssPath);
     $this->assertEquals($noResult, array(), $folder2 . ' is not found');
     $field = new TreeDropdownField('TestTree', 'Test tree', 'File');
     // case insensitive search against keyword 'sub' for files
     $request = new SS_HTTPRequest('GET', 'url', array('search' => 'sub'));
     $tree = $field->tree($request);
     $parser = new CSSContentParser($tree);
     // Even if we used File as the source object, folders are still returned because Folder is a File
     $cssPath = 'ul.tree li#selector-TestTree-' . $folder1->ID . ' li#selector-TestTree-' . $folder1Subfolder1->ID . ' a span.item';
     $firstResult = $parser->getBySelector($cssPath);
     $this->assertEquals((string) $firstResult[0], $folder1Subfolder1->Name, $folder1Subfolder1->Name . ' is found, nested under ' . $folder1->Name);
     // Looking for two files with 'sub' in their name, both under the same folder
     $file1 = $this->objFromFixture('File', 'subfolderfile1');
     $file2 = $this->objFromFixture('File', 'subfolderfile2');
     $cssPath = 'ul.tree li#selector-TestTree-' . $subfolder->ID . ' li#selector-TestTree-' . $file1->ID . ' a';
     $firstResult = $parser->getBySelector($cssPath);
     $this->assertGreaterThan(0, count($firstResult), $file1->Name . ' with ID ' . $file1->ID . ' is in search results');
     $this->assertEquals((string) $firstResult[0], $file1->Name, $file1->Name . ' is found nested under ' . $subfolder->Name);
     $cssPath = 'ul.tree li#selector-TestTree-' . $subfolder->ID . ' li#selector-TestTree-' . $file2->ID . ' a';
     $secondResult = $parser->getBySelector($cssPath);
     $this->assertGreaterThan(0, count($secondResult), $file2->Name . ' with ID ' . $file2->ID . ' is in search results');
     $this->assertEquals((string) $secondResult[0], $file2->Name, $file2->Name . ' is found nested under ' . $subfolder->Name);
     // other files which don't include 'sub' are not returned in search results
     $file3 = $this->objFromFixture('File', 'asdf');
     $cssPath = 'ul.tree li#selector-TestTree-' . $file3->ID;
     $noResult = $parser->getBySelector($cssPath);
     $this->assertEquals($noResult, array(), $file3->Name . ' is not found');
 }
Example #20
0
 public function testImageInsertion()
 {
     $obj = new HtmlEditorFieldTest_Object();
     $editor = new HtmlEditorField('Content');
     $editor->setValue('<img src="assets/example.jpg" />');
     $editor->saveInto($obj);
     $parser = new CSSContentParser($obj->Content);
     $xml = $parser->getByXpath('//img');
     $this->assertEquals('', $xml[0]['alt'], 'Alt tags are added by default.');
     $this->assertEquals('', $xml[0]['title'], 'Title tags are added by default.');
     $editor->setValue('<img src="assets/example.jpg" alt="foo" title="bar" />');
     $editor->saveInto($obj);
     $parser = new CSSContentParser($obj->Content);
     $xml = $parser->getByXpath('//img');
     $this->assertEquals('foo', $xml[0]['alt'], 'Alt tags are preserved.');
     $this->assertEquals('bar', $xml[0]['title'], 'Title tags are preserved.');
 }
 public function testResizedImageInsertion()
 {
     $obj = new HtmlEditorFieldTest_Object();
     $editor = new HtmlEditorField('Content');
     $fileID = $this->idFromFixture('Image', 'example_image');
     $editor->setValue(sprintf('<img src="assets/HTMLEditorFieldTest_example.jpg" width="10" height="20" data-fileid="%d" />', $fileID));
     $editor->saveInto($obj);
     $parser = new CSSContentParser($obj->Content);
     $xml = $parser->getByXpath('//img');
     $this->assertEquals('', (string) $xml[0]['alt'], 'Alt tags are added by default.');
     $this->assertEquals('', (string) $xml[0]['title'], 'Title tags are added by default.');
     $this->assertEquals(10, (int) $xml[0]['width'], 'Width tag of resized image is set.');
     $this->assertEquals(20, (int) $xml[0]['height'], 'Height tag of resized image is set.');
     $neededFilename = '/assets/HtmlEditorFieldTest/f5c7c2f814/HTMLEditorFieldTest-example__ResizedImageWzEwLDIwXQ.jpg';
     $this->assertEquals($neededFilename, (string) $xml[0]['src'], 'Correct URL of resized image is set.');
     $this->assertTrue(file_exists(BASE_PATH . DIRECTORY_SEPARATOR . $neededFilename), 'File for resized image exists');
     $this->assertEquals(false, $obj->HasBrokenFile, 'Referenced image file exists.');
 }
    public function testGetBySelector()
    {
        $parser = new CSSContentParser(<<<HTML
<html>
\t<head>
\t\t<title>test</title>
\t</head>
\t<body>
\t\t<div id="A" class="one two three">
\t\t\t<p class="other">result</p>
\t\t</div>
\t\t<p>test</p>
\t</body>
</html>
HTML
);
        $result = $parser->getBySelector('div.one');
        $this->assertEquals("A", $result[0]['id'] . '');
        $result = $parser->getBySelector('div.two');
        $this->assertEquals("A", $result[0]['id'] . '');
        $result = $parser->getBySelector('div.three');
        $this->assertEquals("A", $result[0]['id'] . '');
        $result = $parser->getBySelector('div#A p.other');
        $this->assertEquals("result", $result[0] . '');
        $result = $parser->getBySelector('#A .other');
        $this->assertEquals("result", $result[0] . '');
    }
Example #23
0
 function testFieldMessageEscapeHtml()
 {
     $form = $this->getStubForm();
     $form->Controller()->handleRequest(new SS_HTTPRequest('GET', '/'), DataModel::inst());
     // stub out request
     $form->addErrorMessage('key1', '<em>Escaped HTML</em>', 'good', true);
     $form->setupFormErrors();
     $parser = new CSSContentParser($result = $form->forTemplate());
     $messageEls = $parser->getBySelector('#Form_Form_key1_Holder .message');
     $this->assertContains('&lt;em&gt;Escaped HTML&lt;/em&gt;', $messageEls[0]->asXML());
     $form = $this->getStubForm();
     $form->Controller()->handleRequest(new SS_HTTPRequest('GET', '/'), DataModel::inst());
     // stub out request
     $form->addErrorMessage('key1', '<em>Unescaped HTML</em>', 'good', false);
     $form->setupFormErrors();
     $parser = new CSSContentParser($form->forTemplate());
     $messageEls = $parser->getBySelector('#Form_Form_key1_Holder .message');
     $this->assertContains('<em>Unescaped HTML</em>', $messageEls[0]->asXML());
 }
 /**
  *  @covers GridField::FieldHolder
  */
 public function testCanViewOnlyOddIDs()
 {
     $this->logInWithPermission();
     $list = new ArrayList(array(new GridFieldTest_Permissions(array("ID" => 1, "Email" => "*****@*****.**", 'Name' => 'Ongi Schwimmer')), new GridFieldTest_Permissions(array("ID" => 2, "Email" => "*****@*****.**", 'Name' => 'Klaus Lozenge')), new GridFieldTest_Permissions(array("ID" => 3, "Email" => "*****@*****.**", 'Name' => 'Otto Fischer'))));
     $config = new GridFieldConfig();
     $config->addComponent(new GridFieldDataColumns());
     $obj = new GridField('testfield', 'testfield', $list, $config);
     $form = new Form(new Controller(), 'mockform', new FieldList(array($obj)), new FieldList());
     $content = new CSSContentParser($obj->FieldHolder());
     $members = $content->getBySelector('.ss-gridfield-item tr');
     $this->assertEquals(2, count($members));
     $this->assertEquals((string) $members[0]->td[0], 'Ongi Schwimmer', 'First object Name should be Ongi Schwimmer');
     $this->assertEquals((string) $members[0]->td[1], '*****@*****.**', 'First object Email should be ongi.schwimmer@example.org');
     $this->assertEquals((string) $members[1]->td[0], 'Otto Fischer', 'Second object Name should be Otto Fischer');
     $this->assertEquals((string) $members[1]->td[1], '*****@*****.**', 'Second object Email should be otto.fischer@example.org');
 }
 /**
  * Test control output html
  */
 public function testView()
 {
     $this->loginWithPermission('ADMIN');
     $record = $this->objFromFixture('AssetFieldTest_Object', 'object1');
     // Requesting form is not an error
     $response = $this->get('AssetFieldTest_Controller');
     $this->assertFalse($response->isError());
     // File exists in this response
     $parser = new CSSContentParser($response->getBody());
     $tuple = array();
     $result = $parser->getBySelector("#AssetFieldTest_Form_Form_File_Holder .ss-uploadfield-files .ss-uploadfield-item input[type='hidden']");
     foreach ($result as $part) {
         $name = (string) $part['name'];
         $value = (string) $part['value'];
         switch ($name) {
             case 'File[Filename]':
                 $tuple['Filename'] = $value;
                 break;
             case 'File[Hash]':
                 $tuple['Hash'] = $value;
                 break;
             case 'File[Variant]':
                 $tuple['Variant'] = $value;
                 break;
         }
     }
     // Assert this value is correct
     $expected = array('Filename' => 'MyFiles/subfolder1/file-subfolder.txt', 'Hash' => '55b443b60176235ef09801153cca4e6da7494a0c', 'Variant' => '');
     $this->assertEquals($expected, $record->File->getValue());
     $this->assertEquals($expected, $tuple);
 }
Example #26
0
 /**
  * Get the HTML class attribute from a node in the sitetree
  *
  * @param $html
  * @param $node
  * @return string
  */
 protected function getNodeClassFromTree($html, $node)
 {
     $parser = new CSSContentParser($html);
     $xpath = '//ul/li[@id="' . $node->ID . '"]';
     $object = $parser->getByXpath($xpath);
     foreach ($object[0]->attributes() as $key => $attr) {
         if ($key == 'class') {
             return (string) $attr;
         }
     }
     return '';
 }
 public function testSelect()
 {
     $this->loginWithPermission('ADMIN');
     $record = $this->objFromFixture('UploadFieldTest_Record', 'record1');
     $file4 = $this->objFromFixture('File', 'file4');
     $file5 = $this->objFromFixture('File', 'file5');
     $fileSubfolder = $this->objFromFixture('File', 'file-subfolder');
     $fileNoEdit = $this->objFromFixture('File', 'file-noedit');
     $response = $this->get('UploadFieldTest_Controller/Form/field/ManyManyFiles/select/');
     $this->assertFalse($response->isError());
     // A bit too much coupling with GridField, but a full template overload would make things too complex
     $parser = new CSSContentParser($response->getBody());
     $items = $parser->getBySelector('.ss-gridfield-item');
     $itemIDs = array_map(create_function('$el', 'return (int)$el["data-id"];'), $items);
     $this->assertContains($file4->ID, $itemIDs, 'Contains file in assigned folder');
     $this->assertNotContains($fileSubfolder->ID, $itemIDs, 'Does not contain file in subfolder');
 }
Example #28
0
 public function testEmailException()
 {
     $testEmailWriter = new SS_LogEmailWriter('*****@*****.**');
     SS_Log::add_writer($testEmailWriter, SS_Log::ERR);
     // Trigger exception handling mechanism
     try {
         $this->exceptionGenerator();
     } catch (Exception $exception) {
         // Mimics exceptionHandler, but without the exit(1)
         SS_Log::log(array('errno' => E_USER_ERROR, 'errstr' => "Uncaught " . get_class($exception) . ": " . $exception->getMessage(), 'errfile' => $exception->getFile(), 'errline' => $exception->getLine(), 'errcontext' => $exception->getTrace()), SS_Log::ERR);
     }
     // Ensure email is sent
     $this->assertEmailSent('*****@*****.**');
     // Begin parsing of email body
     $email = $this->findEmail('*****@*****.**');
     $parser = new CSSContentParser($email['htmlContent']);
     // Check that the first three lines of the stacktrace are correct
     $stacktrace = $parser->getByXpath('//body/div[1]/ul[1]');
     $this->assertContains('<b>SS_LogTest-&gt;exceptionGeneratorThrower()</b>', $stacktrace[0]->li[0]->asXML());
     $this->assertContains('<b>SS_LogTest-&gt;exceptionGenerator()</b>', $stacktrace[0]->li[1]->asXML());
     $this->assertContains('<b>SS_LogTest-&gt;testEmailException()</b>', $stacktrace[0]->li[2]->asXML());
 }
 function testSelectOptionsRendering()
 {
     $obj1 = $this->objFromFixture('TableListFieldTest_Obj', 'one');
     $obj2 = $this->objFromFixture('TableListFieldTest_Obj', 'two');
     $obj3 = $this->objFromFixture('TableListFieldTest_Obj', 'three');
     $table = new TableListField("Tester", "TableListFieldTest_Obj", array("A" => "Col A"));
     $table->Markable = true;
     $table->addSelectOptions(array("F" => "FieldF"));
     $tableHTML = $table->FieldHolder();
     $p = new CSSContentParser($tableHTML);
     $this->assertContains('rel="F"', $tableHTML);
     $tbody = $p->getByXpath('//tbody');
     $this->assertContains('markingcheckbox F', (string) $tbody[0]->tr[0]->td[0]['class']);
     $this->assertContains('markingcheckbox', (string) $tbody[0]->tr[1]->td[0]['class']);
     $this->assertContains('markingcheckbox F', (string) $tbody[0]->tr[2]->td[0]['class']);
 }
 /**
  * Tests that a has-many detail form is pre-populated with the parent ID.
  */
 public function testHasManyFormPrePopulated()
 {
     $group = $this->objFromFixture('GridFieldDetailFormTest_PeopleGroup', 'group');
     $this->logInWithPermission('ADMIN');
     $response = $this->get('GridFieldDetailFormTest_Controller');
     $parser = new CSSContentParser($response->getBody());
     $addLink = $parser->getBySelector('.ss-gridfield .new-link');
     $addLink = (string) $addLink[0]['href'];
     $response = $this->get($addLink);
     $parser = new CSSContentParser($response->getBody());
     $title = $parser->getBySelector('#Form_ItemEditForm_GroupID_Holder span');
     $id = $parser->getBySelector('#Form_ItemEditForm_GroupID_Holder input');
     $this->assertEquals($group->Name, (string) $title[0]);
     $this->assertEquals($group->ID, (string) $id[0]['value']);
 }