Test cleanup
authorColeman Watts <coleman@civicrm.org>
Mon, 23 Aug 2021 11:40:09 +0000 (07:40 -0400)
committerColeman Watts <coleman@civicrm.org>
Mon, 23 Aug 2021 11:40:09 +0000 (07:40 -0400)
tests/phpunit/api/v4/Action/RecentItemsTest.php

index 967e37a10ecd85d99f0fed44745e7baa5f62367d..1ea4a0b2292c5395bed54c74ff97dcdabf190090 100644 (file)
@@ -27,10 +27,7 @@ use Civi\Api4\Activity;
  */
 class RecentItemsTest extends UnitTestCase {
 
-  /**
-   * This locks in a fix to ensure that if a user doesn't have permission to view the is_deleted field that doesn't hard fail if that field happens to be in an APIv4 call.
-   */
-  public function testIsDeletedPermission(): void {
+  public function testAddDeleteActivity(): void {
     $cid = $this->createLoggedInUser();
 
     $aid = Activity::create(FALSE)
@@ -41,6 +38,8 @@ class RecentItemsTest extends UnitTestCase {
 
     $this->assertEquals(1, $this->getRecentItemCount(['type' => 'Activity', 'id' => $aid]));
 
+    $this->assertStringContainsString('Hello recent!', \CRM_Utils_Recent::get()[0]['title']);
+
     Activity::delete(FALSE)->addWhere('id', '=', $aid)->execute();
 
     $this->assertEquals(0, $this->getRecentItemCount(['type' => 'Activity', 'id' => $aid]));