Skip to content

Commit 675894b

Browse files
committed
Wrote some more test for the model class
Signed-off-by: Gertjan Roke <[email protected]>
1 parent 25d3377 commit 675894b

13 files changed

+137
-85
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ composer require gertjanroke/laravel-db-model
2222

2323
namespace App\Models;
2424

25-
use GertjanRoke\LaravelDbModel\DbModel;
25+
use GertjanRoke\LaravelDbModel\DBModel;
2626

27-
class Post extends DbModel
27+
class Post extends DBModel
2828
{
2929
public $table = 'posts';
3030

composer.json

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
"require": {
1919
"php": "^7.4|^8.0",
2020
"spatie/laravel-package-tools": "^1.4.3",
21+
"illuminate/collections": "^8.37",
22+
"illuminate/support": "^8.37",
2123
"illuminate/database": "^8.37"
2224
},
2325
"require-dev": {

src/DBModel.php

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?php
2+
3+
namespace GertjanRoke\LaravelDbModel;
4+
5+
use Closure;
6+
use Illuminate\Database\Query\Builder;
7+
use Illuminate\Support\Collection;
8+
use Illuminate\Support\Facades\DB;
9+
use Illuminate\Support\Str;
10+
11+
/**
12+
* @mixin DB
13+
*/
14+
class DBModel
15+
{
16+
/**
17+
* @var Closure|Builder|string
18+
*/
19+
public $table;
20+
21+
public string $as = '';
22+
23+
public string $connection = '';
24+
25+
protected Builder $db;
26+
27+
public function __construct()
28+
{
29+
$this->db = DB::connection($this->connection ?: null)->table($this->getTable(), $this->as ?: null);
30+
}
31+
32+
/**
33+
* @return Closure|Builder|string
34+
*/
35+
public function getTable()
36+
{
37+
return $this->table ?? Str::snake(Str::pluralStudly(class_basename($this)));
38+
}
39+
40+
public function getDB(): Builder
41+
{
42+
return $this->db;
43+
}
44+
45+
/**
46+
* @param string $method
47+
* @param array $parameters
48+
*
49+
* @return Builder|self|Collection
50+
*/
51+
public function __call($method, $parameters)
52+
{
53+
$response = $this->db->$method(...$parameters);
54+
55+
return ($response instanceof Builder) ? $this : $response;
56+
}
57+
58+
/**
59+
* @param string $method
60+
* @param array $parameters
61+
*
62+
* @return Builder|self|Collection
63+
*/
64+
public static function __callStatic($method, $parameters)
65+
{
66+
return (new static())->$method(...$parameters);
67+
}
68+
}

src/DbModel.php

-52
This file was deleted.

src/Exceptions/MissingTableNameException.php

-12
This file was deleted.

tests/ConstructorTest.php

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,29 @@
11
<?php
22

3-
use GertjanRoke\LaravelDbModel\Exceptions\MissingTableNameException;
43
use GertjanRoke\LaravelDbModel\Tests\Models\Model;
54
use GertjanRoke\LaravelDbModel\Tests\Models\ModelWithMySqlConnection;
65
use GertjanRoke\LaravelDbModel\Tests\Models\ModelWithoutConnection;
76
use GertjanRoke\LaravelDbModel\Tests\Models\ModelWithoutTableName;
87

9-
it('throws an exception when no table name is set', function () {
10-
ModelWithoutTableName::where('column', 1);
11-
})->throws(MissingTableNameException::class);
12-
138
it('can prefill the connection', function () {
14-
$query = ModelWithoutConnection::where('column', 1);
9+
$model = new ModelWithoutConnection();
1510

16-
expect(class_basename($query->connection))->toStartWith('SQLiteConnection');
11+
expect(class_basename($model->getDB()->connection))->toStartWith('SQLiteConnection');
1712

18-
$query = ModelWithMySqlConnection::where('column', 1);
13+
$model = new ModelWithMySqlConnection();
1914

20-
expect(class_basename($query->connection))->toStartWith('MySqlConnection');
15+
expect(class_basename($model->getDB()->connection))->toStartWith('MySqlConnection');
2116
});
2217

2318
it('can prefill the table name', function () {
24-
$query = Model::where('column', 1);
19+
$model = new Model();
20+
21+
expect($model->getDB()->from)->toBe('models');
22+
});
23+
24+
it('can make the table name from the class name', function () {
25+
$model = new ModelWithoutTableName();
26+
2527

26-
expect($query->from)->toBe('models');
28+
expect($model->getDB()->from)->toBe('model_without_table_names');
2729
});

tests/MethodCallingTest.php

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
use GertjanRoke\LaravelDbModel\Tests\Models\Model;
4+
use Illuminate\Foundation\Testing\RefreshDatabase;
5+
use Illuminate\Support\Collection;
6+
7+
uses(RefreshDatabase::class);
8+
9+
it('will return it self when the method called returns the builder class', function () {
10+
$model = new Model();
11+
12+
$returned = $model->where('column', true);
13+
14+
expect($returned)->toBeInstanceOf($model::class);
15+
});
16+
17+
it('will return the collection when the db class returns a collection', function () {
18+
$model = new Model();
19+
20+
$returned = $model->get();
21+
22+
expect($returned)->toBeInstanceOf(Collection::class);
23+
});

tests/Models/Model.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace GertjanRoke\LaravelDbModel\Tests\Models;
44

5-
use GertjanRoke\LaravelDbModel\DbModel;
5+
use GertjanRoke\LaravelDbModel\DBModel;
66

7-
class Model extends DbModel
7+
class Model extends DBModel
88
{
99
public $table = 'models';
1010
}

tests/Models/ModelWithMySqlConnection.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace GertjanRoke\LaravelDbModel\Tests\Models;
44

5-
use GertjanRoke\LaravelDbModel\DbModel;
5+
use GertjanRoke\LaravelDbModel\DBModel;
66

7-
class ModelWithMySqlConnection extends DbModel
7+
class ModelWithMySqlConnection extends DBModel
88
{
99
public $table = 'model-with-mysql-connection';
1010

tests/Models/ModelWithoutConnection.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace GertjanRoke\LaravelDbModel\Tests\Models;
44

5-
use GertjanRoke\LaravelDbModel\DbModel;
5+
use GertjanRoke\LaravelDbModel\DBModel;
66

7-
class ModelWithoutConnection extends DbModel
7+
class ModelWithoutConnection extends DBModel
88
{
99
public $table = 'model-without-connection';
1010
}

tests/Models/ModelWithoutTableName.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace GertjanRoke\LaravelDbModel\Tests\Models;
44

5-
use GertjanRoke\LaravelDbModel\DbModel;
5+
use GertjanRoke\LaravelDbModel\DBModel;
66

7-
class ModelWithoutTableName extends DbModel
7+
class ModelWithoutTableName extends DBModel
88
{
99
//
1010
}

tests/TestCase.php

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace GertjanRoke\LaravelDbModel\Tests;
44

55
use GertjanRoke\LaravelDbModel\LaravelDbModelServiceProvider;
6+
use GertjanRoke\LaravelDbModel\Tests\migrations\ModelTableMigration;
67
use Orchestra\Testbench\TestCase as Orchestra;
78

89
class TestCase extends Orchestra
@@ -17,5 +18,7 @@ protected function getPackageProviders($app)
1718
public function getEnvironmentSetUp($app)
1819
{
1920
config()->set('database.default', 'testing');
21+
22+
(new ModelTableMigration())->up();
2023
}
2124
}
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace GertjanRoke\LaravelDbModel\Tests\migrations;
4+
5+
use Illuminate\Database\Schema\Blueprint;
6+
use Illuminate\Support\Facades\Schema;
7+
8+
class ModelTableMigration
9+
{
10+
public function up()
11+
{
12+
Schema::create('models', function(Blueprint $table) {
13+
$table->id();
14+
$table->string('title')->nullable();
15+
$table->timestamps();
16+
});
17+
}
18+
}

0 commit comments

Comments
 (0)