Forked from EspadaV8/seeIsNotSoftDeletedInDatabase.php
Last active
January 14, 2016 14:22
-
-
Save iamkirkbater/3ff3ac8ba0d65d699b9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Illuminate\Foundation\Testing; | |
/** | |
* Assert that a given where condition does not matches a soft deleted record | |
* | |
* @param string $table | |
* @param array $data | |
* @param string $connection | |
* @return $this | |
*/ | |
protected function seeIsNotSoftDeletedInDatabase($table, array $data, $connection = null) | |
{ | |
$database = $this->app->make('db'); | |
$connection = $connection ?: $database->getDefaultConnection(); | |
$count = $database->connection($connection) | |
->table($table) | |
->where($data) | |
->whereNull('deleted_at') | |
->count(); | |
$this->assertGreaterThan(0, $count, sprintf( | |
'Found unexpected records in database table [%s] that matched attributes [%s].', $table, json_encode($data) | |
)); | |
return $this; | |
} | |
/** | |
* Assert that a given where condition matches a soft deleted record | |
* | |
* @param string $table | |
* @param array $data | |
* @param string $connection | |
* @return $this | |
*/ | |
protected function seeIsSoftDeletedInDatabase($table, array $data, $connection = null) | |
{ | |
$database = $this->app->make('db'); | |
$connection = $connection ?: $database->getDefaultConnection(); | |
$count = $database->connection($connection) | |
->table($table) | |
->where($data) | |
->whereNotNull('deleted_at') | |
->count(); | |
$this->assertGreaterThan(0, $count, sprintf( | |
'Found unexpected records in database table [%s] that matched attributes [%s].', $table, json_encode($data) | |
)); | |
return $this; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment