-
Notifications
You must be signed in to change notification settings - Fork 11.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add fakes for bus, events, mail, queue, notifications
- Loading branch information
1 parent
64a34f8
commit 5deab59
Showing
11 changed files
with
1,030 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
<?php | ||
|
||
namespace Illuminate\Support\Testing\Fakes; | ||
|
||
use Illuminate\Contracts\Bus\Dispatcher; | ||
use PHPUnit_Framework_Assert as PHPUnit; | ||
|
||
class BusFake implements Dispatcher | ||
{ | ||
/** | ||
* The commands that have been dispatched. | ||
* | ||
* @var array | ||
*/ | ||
protected $commands = []; | ||
|
||
/** | ||
* Assert if a job was dispatched based on a truth-test callback. | ||
* | ||
* @param string $command | ||
* @param callable|null $callback | ||
* @return void | ||
*/ | ||
public function assertDispatched($command, $callback = null) | ||
{ | ||
PHPUnit::assertTrue( | ||
$this->dispatched($command, $callback)->count() > 0, | ||
"The expected [{$command}] job was not dispatched." | ||
); | ||
} | ||
|
||
/** | ||
* Determine if a job was dispatched based on a truth-test callback. | ||
* | ||
* @param string $command | ||
* @param callable|null $callback | ||
* @return void | ||
*/ | ||
public function assertNotDispatched($command, $callback = null) | ||
{ | ||
PHPUnit::assertTrue( | ||
$this->dispatched($command, $callback)->count() === 0, | ||
"The unexpected [{$command}] job was dispatched." | ||
); | ||
} | ||
|
||
/** | ||
* Get all of the jobs matching a truth-test callback. | ||
* | ||
* @param string $command | ||
* @param callable|null $callback | ||
* @return \Illuminate\Support\Collection | ||
*/ | ||
public function dispatched($command, $callback = null) | ||
{ | ||
if (! $this->hasDispatched($command)) { | ||
return collect(); | ||
} | ||
|
||
$callback = $callback ?: function () { | ||
return true; | ||
}; | ||
|
||
if (is_null($callback)) { | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
kamranahmedse
|
||
return collect($this->commands[$command]); | ||
} | ||
|
||
return collect($this->commands[$command])->filter(function ($command) use ($callback) { | ||
return $callback($command); | ||
}); | ||
} | ||
|
||
/** | ||
* Determine if there are any stored commands for a given class. | ||
* | ||
* @param string $command | ||
* @return bool | ||
*/ | ||
public function hasDispatched($command) | ||
{ | ||
return isset($this->commands[$command]) && ! empty($this->commands[$command]); | ||
This comment has been minimized.
Sorry, something went wrong.
kamranahmedse
|
||
} | ||
|
||
/** | ||
* Dispatch a command to its appropriate handler. | ||
* | ||
* @param mixed $command | ||
* @return mixed | ||
*/ | ||
public function dispatch($command) | ||
{ | ||
return $this->dispatchNow($command); | ||
} | ||
|
||
/** | ||
* Dispatch a command to its appropriate handler in the current process. | ||
* | ||
* @param mixed $command | ||
* @param mixed $handler | ||
* @return mixed | ||
*/ | ||
public function dispatchNow($command, $handler = null) | ||
{ | ||
$this->commands[get_class($command)][] = $command; | ||
} | ||
|
||
/** | ||
* Set the pipes commands should be piped through before dispatching. | ||
* | ||
* @param array $pipes | ||
* @return $this | ||
*/ | ||
public function pipeThrough(array $pipes) | ||
{ | ||
// | ||
} | ||
} |
Oops, something went wrong.
This will never be true?