SimplenewsSynchronizeFieldsFormTest.php in Simplenews 8
File
src/Tests/SimplenewsSynchronizeFieldsFormTest.php
View source
<?php
namespace Drupal\simplenews\Tests;
use Drupal\simplenews\Entity\Subscriber;
use Drupal\user\Entity\User;
class SimplenewsSynchronizeFieldsFormTest extends SimplenewsTestBase {
public static $modules = array(
'field',
'simplenews',
);
protected $user;
public function setUp() {
parent::setUp();
$this
->addField('string', 'field_shared', 'user');
$this
->addField('string', 'field_shared', 'simplenews_subscriber');
$this->user = $this
->drupalCreateUser(array(
'administer simplenews subscriptions',
'administer simplenews settings',
));
$this->user
->setEmail('user@example.com');
$this->user
->set('field_shared', $this
->randomMachineName());
$this->user
->save();
}
public function testSubscriberFormFieldSync() {
$subscriber = Subscriber::create(array(
'uid' => $this->user
->id(),
'mail' => 'anything@example.com',
));
$subscriber
->save();
$this
->drupalLogin($this->user);
$this
->drupalGet('admin/people/simplenews/edit/' . $subscriber
->id());
$this
->assertField('field_shared[0][value]');
$this
->assertRaw($this->user->field_shared->value);
$new_value = $this
->randomMachineName();
$this
->drupalPostForm(NULL, array(
'field_shared[0][value]' => $new_value,
), t('Save'));
$this
->drupalGet('admin/people/simplenews/edit/' . $subscriber
->id());
$this
->assertRaw($new_value);
$this->user = User::load($this->user
->id());
$this
->assertEqual($this->user->field_shared->value, $new_value);
$this
->drupalPostForm('admin/config/people/simplenews/settings/subscriber', array(
'simplenews_sync_fields' => FALSE,
), t('Save configuration'));
$unsynced_value = $this
->randomMachineName();
$this
->drupalPostForm('admin/people/simplenews/edit/' . $subscriber
->id(), array(
'field_shared[0][value]' => $unsynced_value,
), t('Save'));
$this
->drupalGet('admin/people/simplenews/edit/' . $subscriber
->id());
$this
->assertRaw($unsynced_value);
$this->user = User::load($this->user
->id());
$this
->assertEqual($this->user->field_shared->value, $new_value);
$this
->assertNotEqual($this->user->field_shared->value, $unsynced_value);
}
}