Add Bruno tests

This commit is contained in:
Dayamond
2025-10-18 17:17:35 +02:00
parent 1c00dbdb85
commit 223cfe086c
7 changed files with 76 additions and 69 deletions
+42
View File
@@ -0,0 +1,42 @@
meta {
name: Create user
type: http
seq: 2
}
post {
url: http://localhost:8000/api/user/create
body: json
auth: inherit
}
headers {
Accept: application/json
}
body:json {
{
"name": "{{name}}",
"email": "{{email}}",
"password": "{{password}}"
}
}
vars:pre-request {
name: name
email: test@test.com
password: test
}
assert {
res.status: eq 200
}
settings {
encodeUrl: true
timeout: 0
}
docs {
Créer un utilisateur test
}
-7
View File
@@ -1,7 +0,0 @@
<?php
test('the application returns a successful response', function () {
$response = $this->get('/');
$response->assertStatus(200);
});
-47
View File
@@ -1,47 +0,0 @@
<?php
/*
|--------------------------------------------------------------------------
| Test Case
|--------------------------------------------------------------------------
|
| The closure you provide to your test functions is always bound to a specific PHPUnit test
| case class. By default, that class is "PHPUnit\Framework\TestCase". Of course, you may
| need to change it using the "pest()" function to bind a different classes or traits.
|
*/
pest()->extend(Tests\TestCase::class)
// ->use(Illuminate\Foundation\Testing\RefreshDatabase::class)
->in('Feature');
/*
|--------------------------------------------------------------------------
| Expectations
|--------------------------------------------------------------------------
|
| When you're writing tests, you often need to check that values meet certain conditions. The
| "expect()" function gives you access to a set of "expectations" methods that you can use
| to assert different things. Of course, you may extend the Expectation API at any time.
|
*/
expect()->extend('toBeOne', function () {
return $this->toBe(1);
});
/*
|--------------------------------------------------------------------------
| Functions
|--------------------------------------------------------------------------
|
| While Pest is very powerful out-of-the-box, you may have some testing code specific to your
| project that you don't want to repeat in every file. Here you can also expose helpers as
| global functions to help you to reduce the number of lines of code in your test files.
|
*/
function something()
{
// ..
}
-10
View File
@@ -1,10 +0,0 @@
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
//
}
-5
View File
@@ -1,5 +0,0 @@
<?php
test('that true is true', function () {
expect(true)->toBeTrue();
});
+9
View File
@@ -0,0 +1,9 @@
{
"version": "1",
"name": "test",
"type": "collection",
"ignore": [
"node_modules",
".git"
]
}
+25
View File
@@ -0,0 +1,25 @@
meta {
name: hello
type: http
seq: 1
}
get {
url: http://localhost:8000/api/hello
body: none
auth: inherit
}
assert {
res.status: eq 200
res.body: eq Hello
}
settings {
encodeUrl: true
timeout: 0
}
docs {
Permet de tester la route hello et verifier si le serveur laravel backend est bien allumé
}