|
1 | 1 | <?php
|
2 | 2 |
|
3 |
| -use GertjanRoke\LaravelDbModel\Exceptions\MissingTableNameException; |
4 | 3 | use GertjanRoke\LaravelDbModel\Tests\Models\Model;
|
5 | 4 | use GertjanRoke\LaravelDbModel\Tests\Models\ModelWithMySqlConnection;
|
6 | 5 | use GertjanRoke\LaravelDbModel\Tests\Models\ModelWithoutConnection;
|
7 | 6 | use GertjanRoke\LaravelDbModel\Tests\Models\ModelWithoutTableName;
|
8 | 7 |
|
9 |
| -it('throws an exception when no table name is set', function () { |
10 |
| - ModelWithoutTableName::where('column', 1); |
11 |
| -})->throws(MissingTableNameException::class); |
12 |
| - |
13 | 8 | it('can prefill the connection', function () {
|
14 |
| - $query = ModelWithoutConnection::where('column', 1); |
| 9 | + $model = new ModelWithoutConnection(); |
15 | 10 |
|
16 |
| - expect(class_basename($query->connection))->toStartWith('SQLiteConnection'); |
| 11 | + expect(class_basename($model->getDB()->connection))->toStartWith('SQLiteConnection'); |
17 | 12 |
|
18 |
| - $query = ModelWithMySqlConnection::where('column', 1); |
| 13 | + $model = new ModelWithMySqlConnection(); |
19 | 14 |
|
20 |
| - expect(class_basename($query->connection))->toStartWith('MySqlConnection'); |
| 15 | + expect(class_basename($model->getDB()->connection))->toStartWith('MySqlConnection'); |
21 | 16 | });
|
22 | 17 |
|
23 | 18 | 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 | + |
25 | 27 |
|
26 |
| - expect($query->from)->toBe('models'); |
| 28 | + expect($model->getDB()->from)->toBe('model_without_table_names'); |
27 | 29 | });
|
0 commit comments