Download the PHP package rogervila/global-namespace without Composer
On this page you can find all versions of the php package rogervila/global-namespace. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rogervila/global-namespace
More information about rogervila/global-namespace
Files in rogervila/global-namespace
Package global-namespace
Short Description Prefix global PHP functions under a namespace
License MIT
Informations about the package global-namespace
Global Namespace
This library provides a namespace for functions that are called globally, like PHP Built-in functions.
This might sound weird, so let me introduce an example to show what it can do.
Example
Imagine that you have an application that uses rand(0, 1)
and you want to assert what happens when it returns 0
or 1
Let's scaffold that class
If you create a test to assert the results you will find a stopper: How can we mockup rand() to force it to return 0 or 1?. This package provides a solution for this question.
First, require this package on your application.
Now, update your application to prefix rand()
with the global namespace.
PHP::rand()
will simply call the built-in PHP function so your application behaviour will not change.
This works as expected but is not yet fully testeable because the PHP
dependency is hardcoded and it cannot be mocked.
Let's add it in the constructor so we can use any PHP
implementation.
Nice. Now you can mockup rand()
with Mockery and assert the application code:
Check this demo application for a more complete example
About
This library calls any global function, not only those that are built-in.
Helper classes
If you do not want to use Mockery, or if you are working on test environment that does not fit with it, you may use some helper classes that come with this package
IgnoreMissing
It works the same way, but it will ignore a function if it does not exist.
This can be useful if you have a function that you cannot be mocked for some reason.
IgnoreAlways
Use it if, for some reason, you want to directly skip all function calls.
It does not matter if the function exists or not.
Author
Created by Roger Vilà
License
Global Namespace is open-sourced software licensed under the MIT license.