You are here

function MongoDBLogTestCase::assertEntry in MongoDB 8

Same name and namespace in other branches
  1. 6 mongodb_watchdog/mongodb_watchdog.test \MongoDBLogTestCase::assertEntry()
  2. 7 mongodb_watchdog/mongodb_watchdog.test \MongoDBLogTestCase::assertEntry()

Assert that a given entry is present in the watchdog.

Parameters

string $message:

Return value

void

1 call to MongoDBLogTestCase::assertEntry()
MongoDBLogTestCase::testWatchdogLimit in mongodb_watchdog/mongodb_watchdog.test
Test the default and non-default mongodb_watchdog insertion behaviours.

File

mongodb_watchdog/mongodb_watchdog.test, line 126
Test class for MongoDB_watchdog.

Class

MongoDBLogTestCase
Test the behaviour of watchdog() mongodb_watchdog, not dblog

Code

function assertEntry($message) {
  $logged = $this
    ->find($message);
  $this
    ->assertNotNull($logged, t('Event %message is logged', array(
    '%message' => $message,
  )), $this->group);
  $this
    ->assertTrue(isset($logged['message']) && $logged['message'] == $message, t('Logged message is unchanged'), $this->group);
}