ParagraphsContactTest.php in Paragraphs 8
File
tests/src/Functional/WidgetStable/ParagraphsContactTest.php
View source
<?php
namespace Drupal\Tests\paragraphs\Functional\WidgetStable;
use Drupal\contact\Entity\ContactForm;
class ParagraphsContactTest extends ParagraphsTestBase {
public static $modules = array(
'contact',
);
public function testContactForm() {
$this
->loginAsAdmin([
'administer contact forms',
'access site-wide contact form',
]);
$this
->addParagraphsType('paragraphs_contact');
$this
->addParagraphsType('text');
$contact_form = ContactForm::create([
'id' => 'test_contact_form',
]);
$contact_form
->save();
$this
->addParagraphsField($contact_form
->id(), 'paragraphs', 'contact_message');
$this
->drupalGet('contact/test_contact_form');
$this
->submitForm([], 'paragraphs_paragraphs_contact_add_more');
$this
->assertSession()
->pageTextContains('paragraphs_contact');
$this
->submitForm([], 'paragraphs_0_remove');
$elements = $this
->xpath('//table[starts-with(@id, :id)]/tbody', [
':id' => 'paragraphs-values',
]);
$header = $this
->xpath('//table[starts-with(@id, :id)]/thead', [
':id' => 'paragraphs-values',
]);
$this
->assertEquals($elements, []);
$this
->assertNotEquals($header, []);
}
}