1 bootstrap.test WatchdogTestCase::assertLogMessage($type, $message, $variables = array(), $severity = WATCHDOG_NOTICE, $link = '')

Verify a log entry was entered. Called in the same way of theme expected original watchdog() execution.

Parameters

$type: The category to which this message belongs.

$message: The message to store in the log. Keep $message translatable by not concatenating dynamic values into it! Variables in the message should be added by using placeholder strings alongside the variables argument to declare the value of the placeholders. See t() for documentation on how $message and $variables interact.

$variables: Array of variables to replace in the message on display or NULL if message is already translated or not possible to translate.

$severity: The severity of the message, as per RFC 3164.

$link: A link to associate with the message.

File

core/modules/simpletest/tests/bootstrap.test, line 791

Class

WatchdogTestCase

Code

function assertLogMessage($type, $message, $variables = array(), $severity = WATCHDOG_NOTICE, $link = '') {
  $count = db_select('watchdog', 'w')
    ->condition('type', $type)
    ->condition('message', $message)
    ->condition('variables', serialize($variables))
    ->condition('severity', $severity)
    ->condition('link', $link)
    ->countQuery()
    ->execute()
    ->fetchField();
  $this->assertTrue($count > 0, format_string('watchdog table contains @count rows for @message', array('@count' => $count, '@message' => $message)));
}