PHP code example of bit-mx / saloon-response-factories
1. Go to this page and download the library: Download bit-mx/saloon-response-factories library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bit-mx / saloon-response-factories example snippets
namespace Tests\SaloonResponseFactories;
use BitMx\SaloonResponseFactories\Factories\SaloonResponseFactory;
class PostResponseFactoryFactory extends SaloonResponseFactory
{
/**
* {@inheritDoc}
*/
public function definition(): array
{
return [
'id' => $this->faker->unique()->randomNumber(),
'title' => $this->faker->sentence(),
'content' => $this->faker->paragraph(),
];
}
}
use Tests\SaloonResponseFactories\PostResponseFactoryFactory;
it('should get the post', function () {
Saloon::fake([
GetPostsRequest::class => PostResponseFactoryFactory::new()->create(),
]);
});
namespace Tests\SaloonResponseFactories;
use BitMx\SaloonResponseFactories\Factories\SaloonResponseFactory;
class PostResponseFactoryFactory extends SaloonResponseFactory
{
/**
* {@inheritDoc}
*/
public function definition(): array
{
return [
'id' => $this->faker->unique()->randomNumber(),
'title' => $this->faker->sentence(),
'content' => $this->faker->paragraph(),
];
}
public function wrap(): string
{
return 'data';
}
}
use Tests\SaloonResponseFactories\PostResponseFactoryFactory;
it('should get the post', function () {
Saloon::fake([
GetPostsRequest::class => PostResponseFactoryFactory::new()->count(5)->create(),
]);
});
it('should get the post', function () {
Saloon::fake([
GetPostsRequest::class => PostResponseFactoryFactory::new()->state([
'title' => 'Custom Title',
])->create(),
]);
});
namespace Tests\SaloonResponseFactories;
use BitMx\SaloonResponseFactories\Factories\SaloonResponseFactory;
class PostResponseFactoryFactory extends SaloonResponseFactory
{
/**
* {@inheritDoc}
*/
public function definition(): array
{
return [
'id' => $this->faker->unique()->randomNumber(),
'title' => $this->faker->sentence(),
'content' => $this->faker->paragraph(),
];
}
public function withCustomTitle(): self
{
return $this->state([
'title' => 'Custom Title',
]);
}
}
se Tests\SaloonResponseFactories\PostResponseFactoryFactory;
it('should get the post', function () {
Saloon::fake([
GetPostsRequest::class => PostResponseFactoryFactory::new()->withCustomTitle()->create(),
]);
});
namespace Tests\SaloonResponseFactories;
use BitMx\SaloonResponseFactories\Factories\SaloonResponseFactory;
class PostResponseFactoryFactory extends SaloonResponseFactory
{
/**
* {@inheritDoc}
*/
public function definition(): array
{
return [
'id' => $this->faker->unique()->randomNumber(),
'title' => $this->faker->sentence(),
'content' => $this->faker->paragraph(),
];
}
public function withCustomTitle(): self
{
return $this->state([
'title' => 'Custom Title',
]);
}
public function withHeaders(): self
{
return $this->headers([
'X-Custom-Header' => 'Custom Value',
]);
}
}
use Tests\SaloonResponseFactories\PostResponseFactoryFactory;
it('should get the post', function () {
Saloon::fake([
GetPostsRequest::class => PostResponseFactoryFactory::new()->withHeaders()->create(),
]);
});
namespace Tests\SaloonResponseFactories;
use Tests\SaloonResponseFactories\PostResponseFactoryFactory;
it('should get the post', function () {
Saloon::fake([
GetPostsRequest::class => PostResponseFactoryFactory::new()->headers([
'X-Custom-Header' => 'Custom Value',
'X-Another-Header' => 'Another Value',
])->create(),
]);
});
use Tests\SaloonResponseFactories\PostResponseFactoryFactory;
it('should get the post', function () {
Saloon::fake([
GetPostsRequest::class => PostResponseFactoryFactory::new()->status(404)->create(),
]);
});