コード例 #1
0
 /**
  * Tests multi column non revisionable base field for revisionable entity.
  */
 public function testMultiColumnNonRevisionableBaseField()
 {
     \Drupal::state()->set('entity_test.multi_column', TRUE);
     \Drupal::entityDefinitionUpdateManager()->applyUpdates();
     // Refresh the storage.
     $this->mulRev = $this->entityManager->getStorage('entity_test_mulrev');
     $user1 = $this->createUser();
     // Create a test entity.
     $entity = EntityTestMulRev::create(['name' => $this->randomString(), 'user_id' => $user1->id(), 'language' => 'en', 'non_rev_field' => 'Huron', 'description' => ['shape' => 'shape', 'color' => 'color']]);
     $entity->save();
     $entity = $this->mulRev->loadUnchanged($entity->id());
     $expected = [['shape' => 'shape', 'color' => 'color']];
     $this->assertEquals('Huron', $entity->get('non_rev_field')->value, 'Huron found on entity 1');
     $this->assertEquals($expected, $entity->description->getValue());
 }
コード例 #2
0
 /**
  * Tests deleting a payment status.
  */
 protected function testDelete()
 {
     $payment_status_id = strtolower($this->randomMachineName());
     /** @var \Drupal\payment\Entity\PaymentStatusInterface $status */
     $status = $this->paymentStatusStorage->create([]);
     $status->setId($payment_status_id)->save();
     $path = 'admin/config/services/payment/status/delete/' . $payment_status_id;
     $this->drupalGet($path);
     $this->assertResponse(403);
     $this->drupalLogin($this->drupalCreateUser(array('payment.payment_status.administer')));
     $this->drupalGet($path);
     $this->assertResponse(200);
     $this->drupalPostForm(NULL, [], t('Delete'));
     $this->assertNull($this->paymentStatusStorage->loadUnchanged($payment_status_id));
 }