You are here

public function DomainRegistrationTest::testAllowWildcardMatch in Restrict Domain Registration 8

Tests allowing empty wildcard match.

File

src/Tests/DomainRegistrationTest.php, line 53

Class

DomainRegistrationTest
Test if the Domain Registration module allows and denies specified domains.

Namespace

Drupal\domain_registration\Tests

Code

public function testAllowWildcardMatch() {
  \Drupal::configFactory()
    ->getEditable('domain_registration.settings')
    ->set('method', DOMAIN_REGISTRATION_ALLOW)
    ->save();
  \Drupal::configFactory()
    ->getEditable('domain_registration.settings')
    ->set('pattern', '*.example.com')
    ->save();

  // Get the user data for registration.
  $edit = [
    'name' => $this
      ->randomMachineName(),
    'mail' => $this
      ->randomMachineName() . '@subdomain.example.com',
  ];

  // Attempt to register a user with a whitelist email.
  $this
    ->drupalPostForm('user/register', $edit, t('Create new account'));
  $this
    ->assertText(t('A welcome message'), t('Thank you for applying for an account'));
}