2
2
3
3
namespace Tests \Feature \Frontend ;
4
4
5
+ use App \Models \Product ;
5
6
use Tests \TestCase ;
6
7
use Illuminate \Foundation \Testing \RefreshDatabase ;
7
8
@@ -15,28 +16,69 @@ public function test_list_products_empty()
15
16
$ response = $ this ->get (route ('products.index ' ));
16
17
17
18
$ response ->assertStatus (200 );
18
- // $response->assertViewIs('products.index');
19
- // $response->assertViewHas('products', function ($products) {
20
- // return $products->isEmpty();
21
- // });
19
+ $ response ->assertViewIs ('products.index ' );
20
+ $ response ->assertViewHas ('products ' , function ($ products ) {
21
+ return $ products ->isEmpty ();
22
+ });
22
23
}
23
24
24
- private function test_list_products_with_one_product ()
25
+ // Test listing products with one product
26
+ public function test_list_products_with_one_product ()
25
27
{
26
- // Test logic here
28
+ $ productName = "Test Product " ;
29
+ $ product = Product::factory ()->create ([
30
+ "name " => $ productName
31
+ ]);
32
+
33
+ $ response = $ this ->get (route ('products.index ' ));
34
+
35
+ $ response ->assertStatus (200 );
36
+ $ response ->assertViewIs ('products.index ' );
37
+ $ response ->assertViewHas ('products ' , function ($ products ) use ($ product , $ productName ) {
38
+ return (
39
+ $ products ->count () === 1
40
+ && $ products ->first ()->id === $ product ->id
41
+ && $ products ->first ()->name === $ productName
42
+ );
43
+ });
27
44
}
28
45
29
- private function test_list_products_with_multiple_products ()
46
+
47
+ // Test listing products with multiple products
48
+ public function test_list_products_with_multiple_products ()
30
49
{
31
- // Test logic here
50
+ $ products = Product::factory ()->count (3 )->sequence (
51
+ ["name " => "Product 1 " ],
52
+ ["name " => "Product 2 " ],
53
+ ["name " => "Product 3 " ]
54
+ )->create ();
55
+
56
+ $ response = $ this ->get (route ('products.index ' ));
57
+
58
+ $ response ->assertStatus (200 );
59
+ $ response ->assertViewIs ('products.index ' );
60
+ $ response ->assertViewHas ('products ' , function ($ viewProducts ) use ($ products ) {
61
+ if ($ viewProducts ->count () !== 3 ) {
62
+ return false ;
63
+ }
64
+
65
+ $ viewProductNames = $ viewProducts ->pluck ('name ' );
66
+ $ productNames = $ products ->pluck ('name ' );
67
+
68
+ return $ productNames ->every (fn ($ name ) => $ viewProductNames ->contains ($ name ));
69
+ });
32
70
}
33
71
34
- // Test showing a single product
35
- private function test_show_product_returns_404_for_non_existent_product ()
72
+
73
+ // Test showing a single product returns 404 for non-existent product
74
+ public function test_show_product_returns_404_for_non_existent_product ()
36
75
{
37
- // Test logic here
76
+ $ response = $ this ->get (route ('products.show ' , ['product ' => 999 ]));
77
+
78
+ $ response ->assertStatus (404 );
38
79
}
39
80
81
+
40
82
private function test_show_product_returns_correct_product ()
41
83
{
42
84
// Test logic here
0 commit comments