Skip to content

Commit 85c79b2

Browse files
committed
fix: all but 2 tests
1 parent 21b7c74 commit 85c79b2

10 files changed

+28
-30
lines changed

app/Http/Controllers/Api/V1/ProviderPlatformController.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ public function index()
2828
// ****************************************************
2929
public function show(string $id): ProviderPlatformResource|\Illuminate\Http\JsonResponse
3030
{
31-
$providerPlatform = ProviderPlatform::where('id', $id)->first();
31+
$providerPlatform = ProviderPlatform::where('id', $id)->get()->first();
32+
3233
if ($providerPlatform) {
3334
return ProviderPlatformResource::make($providerPlatform);
3435
} else {

app/Http/Controllers/Api/V1/StudentEnrollmentController.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ class StudentEnrollmentController extends Controller
2020
// ****************************************************
2121
public function show(string $id)
2222
{
23-
$mapping = StudentMapping::where('student_id', $id)->get();
23+
$mapping = StudentMapping::where('consumer_user_id', $id)->get();
24+
2425
$enrollments = StudentEnrollment::where('provider_user_id', $mapping->provider_user_id)
25-
->where('provider_platform_id', $mapping->provider_platform_id)->where('status', 'in_progress')->all();
26+
->where('provider_platform_id', $mapping->provider_platform_id)->all();
2627

2728
return StudentEnrollmentResource::collection($enrollments);
2829
}

database/factories/PlatformConnectionFactory.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace Database\Factories;
44

5+
use App\Models\ConsumerPlatform;
6+
use App\Models\ProviderPlatform;
57
use Illuminate\Database\Eloquent\Factories\Factory;
68

79
/**
@@ -17,8 +19,8 @@ class PlatformConnectionFactory extends Factory
1719
public function definition(): array
1820
{
1921
return [
20-
'consumer_platform_id' => $this->faker->numberBetween(1, 10),
21-
'provider_platform_id' => $this->faker->numberBetween(1, 10),
22+
'consumer_platform_id' => ConsumerPlatform::factory()->create()->id,
23+
'provider_platform_id' => ProviderPlatform::factory()->create()->id,
2224
'state' => 'enabled',
2325
];
2426
}

database/factories/StudentEnrollmentFactory.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace Database\Factories;
44

5+
use App\Models\ProviderPlatform;
6+
use App\Models\StudentMapping;
57
use Illuminate\Database\Eloquent\Factories\Factory;
68

79
/**
@@ -21,9 +23,9 @@ class StudentEnrollmentFactory extends Factory
2123
public function definition(): array
2224
{
2325
return [
24-
"provider_user_id" => $this->faker->randomDigitNotNull, // Student ID in our system (maps to appropriate ID)
26+
"provider_user_id" => StudentMapping::factory()->create()->provider_user_id, // Student ID in our system (maps to appropriate ID)
2527
"provider_content_id" => $this->faker->randomDigitNotNull, // Course ID
26-
"provider_platform_id" => $this->faker->randomDigitNotNull,
28+
"provider_platform_id" => ProviderPlatform::factory()->create()->id,
2729
"status" => "enabled", // Enum (ProviderUserResourceStatus)
2830
];
2931
}

database/factories/StudentFactory.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Database\Factories;
44

5+
use App\Models\Student;
56
use Illuminate\Database\Eloquent\Factories\Factory;
67

78
/**
@@ -17,7 +18,7 @@ class StudentFactory extends Factory
1718
public function definition(): array
1819
{
1920
return [
20-
'id' => $this->faker->uuid(),
21+
'id' => Student::factory()->create()->id,
2122
];
2223
}
2324
}

database/factories/StudentMappingFactory.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ class StudentMappingFactory extends Factory
1515
{
1616
public function definition()
1717
{
18-
DB::statement('PRAGMA foreign_keys = 0');
18+
$prov = ProviderPlatform::factory()->create();
19+
$con = ConsumerPlatform::factory()->create();
1920
return [
2021
'student_id' => Student::factory()->create(),
2122
'provider_user_id' => $this->faker->randomDigitNotNull,
22-
'provider_platform_id' => ProviderPlatform::factory()->create(),
23+
'provider_platform_id' => $prov->id,
2324
'consumer_user_id' => $this->faker->randomDigitNotNull,
24-
'consumer_platform_id' => ConsumerPlatform::factory()->create(),
25+
'consumer_platform_id' => $con->id,
2526
];
2627
}
2728
}

storage/database.sqlite

0 Bytes
Binary file not shown.

tests/Feature/ConsumerPlatformTest.php

+3-8
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function testIndex()
2929
public function testStore()
3030
{
3131
$data = [
32-
'type' => 'canvas_cloud',
32+
'type' => 'unlockedv1',
3333
'name' => 'TestPlatform',
3434
'api_key' => 'testkey123',
3535
'base_url' => 'https://test.com/api',
@@ -48,14 +48,9 @@ public function testShow()
4848

4949
public function testEdit()
5050
{
51-
$platform = [
52-
'type' => 'canvas_cloud',
53-
'name' => 'TestPlatform',
54-
'api_key' => 'testkey123',
55-
'base_url' => 'https://test.com/api',
56-
];
51+
$platform = ConsumerPlatform::factory()->create();
5752

58-
$response = $this->put('/api/v1/consumer_platforms/2', $platform);
53+
$response = $this->put('/api/v1/consumer_platforms/2', $platform->toArray());
5954

6055
$response->assertStatus(200);
6156
}

tests/Feature/ProviderPlatformTest.php

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66

77
class ProviderPlatformTest extends TestCase
88
{
9-
public function seedDatabase()
10-
{
11-
$this->seed();
12-
}
9+
use RefreshDatabase;
1310
/**
1411
* Test retrieving provider platforms.
1512
*/
1613
public function testGetProviderPlatforms()
1714
{
15+
$this->seed();
1816
$response = $this->get('/api/v1/provider_platforms');
1917

2018
$response->assertStatus(200);
2119
}
2220

2321
public function testShowProviderPlatform()
2422
{
25-
$response = $this->get('/api/v1/provider_platforms/1');
23+
24+
$this->seed();
25+
$response = $this->get('/api/v1/provider_platforms/2');
2626

2727
$response->assertStatus(200);
2828
}
@@ -32,6 +32,7 @@ public function testShowProviderPlatform()
3232
*/
3333
public function testCreateProviderPlatform()
3434
{
35+
$this->seed();
3536
$data = [
3637
'name' => 'TestPlatform',
3738
'type' => 'canvas_cloud',

tests/Feature/StudentEnrollmentTest.php

-6
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,15 @@
66

77
class StudentEnrollmentControllerTest extends TestCase
88
{
9-
use RefreshDatabase; // This ensures a fresh database for each test.
10-
119
public function testShow()
1210
{
13-
DB::statement("PRAGMA foreign_keys = 0");
14-
$this->seed();
1511
$response = $this->get('/api/v1/students/1/courses');
1612

1713
$response->assertStatus(200);
1814
}
1915

2016
public function testEdit()
2117
{
22-
DB::statement("PRAGMA foreign_keys = 0");
23-
$this->seed();
2418
$studentEnrollment = [
2519
'provider_user_id' => '1',
2620
'provider_content_id' => '6',

0 commit comments

Comments
 (0)