-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDatabaseCartTest.php
76 lines (58 loc) · 1.82 KB
/
DatabaseCartTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/*
* This file is part of ibrand/laravel-shopping-cart.
*
* (c) iBrand <https://www.ibrand.cc>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use App\Models\User;
use iBrand\ShoppingCart\Cart;
use Illuminate\Foundation\Testing\DatabaseMigrations;
class DatabaseCartTest extends Orchestra\Testbench\TestCase
{
use DatabaseMigrations;
use CartTestTrait;
protected $cart;
protected function getEnvironmentSetUp($app)
{
$app['config']->set('ibrand.cart', require __DIR__.'/../src/config.php');
$app['config']->set('ibrand.cart.storage', iBrand\Shoppingcart\Storage\DatabaseStorage::class);
// Setup default database to use sqlite :memory:
$app['config']->set('database.default', 'testbench');
$app['config']->set('database.connections.testbench', [
'driver' => 'sqlite',
'database' => ':memory:',
'prefix' => '',
]);
}
protected function loadMigrationsFrom($app)
{
$this->artisan('migrate', ['--database' => 'testbench']);
}
protected function getPackageProviders($app)
{
return [iBrand\Shoppingcart\ServiceProvider::class];
}
protected function setUp()
{
parent::setUp(); // TODO: Change the autogenerated stub
$user = new User([
'id' => 1,
'name' => 'ibrand'
]);
$this->be($user,'api');
$this->loadMigrationsFrom(__DIR__.'/database');
$this->cart = $this->app['cart'];
}
/**
* test name().
*/
public function testName()
{
$this->assertEquals('cart.api.1', $this->cart->getName());
$this->cart->name('ibrand');
$this->assertEquals('cart.ibrand', $this->cart->getName());
}
}