2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
use App\Models\Company;
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
|
2017-07-11 20:37:02 -07:00
|
|
|
class CompanyTest extends BaseTest
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \UnitTester
|
|
|
|
*/
|
|
|
|
protected $tester;
|
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testCompanyAdd()
|
|
|
|
// {
|
|
|
|
// $company = factory(Company::class)->make();
|
|
|
|
// $values = [
|
|
|
|
// 'name' => $company->name,
|
|
|
|
// ];
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// Company::create($values);
|
|
|
|
// $this->tester->seeRecord('companies', $values);
|
|
|
|
// }
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testFailsEmptyValidation()
|
|
|
|
// {
|
|
|
|
// // An Company requires a name, a qty, and a category_id.
|
|
|
|
// $a = Company::create();
|
|
|
|
// $this->assertFalse($a->isValid());
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// $fields = [
|
|
|
|
// 'name' => 'name',
|
|
|
|
// ];
|
|
|
|
// $errors = $a->getErrors();
|
|
|
|
// foreach ($fields as $field => $fieldTitle) {
|
|
|
|
// $this->assertEquals($errors->get($field)[0], "The ${fieldTitle} field is required.");
|
|
|
|
// }
|
|
|
|
// }
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testACompanyCanHaveUsers()
|
|
|
|
// {
|
|
|
|
// $company = factory(Company::class)->create();
|
|
|
|
// factory(App\Models\User::class, 1)->create(['company_id'=>$company->id]);
|
|
|
|
// $this->assertCount(1, $company->users);
|
|
|
|
// }
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testACompanyCanHaveAssets()
|
|
|
|
// {
|
|
|
|
// $company = factory(Company::class)->create();
|
|
|
|
// factory(App\Models\Asset::class, 1)->create(['company_id'=>$company->id]);
|
|
|
|
// $this->assertCount(1, $company->assets);
|
|
|
|
// }
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testACompanyCanHaveLicenses()
|
|
|
|
// {
|
|
|
|
// $company = factory(Company::class)->create();
|
|
|
|
// factory(App\Models\License::class, 1)->create(['company_id'=>$company->id]);
|
|
|
|
// $this->assertCount(1, $company->licenses);
|
|
|
|
// }
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testACompanyCanHaveAccessories()
|
|
|
|
// {
|
|
|
|
// $company = factory(Company::class)->create();
|
|
|
|
// factory(App\Models\Accessory::class, 1)->create(['company_id'=>$company->id]);
|
|
|
|
// $this->assertCount(1, $company->accessories);
|
|
|
|
// }
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testACompanyCanHaveConsumables()
|
|
|
|
// {
|
|
|
|
// $company = factory(Company::class)->create();
|
|
|
|
// factory(App\Models\Consumable::class, 1)->create(['company_id'=>$company->id]);
|
|
|
|
// $this->assertCount(1, $company->consumables);
|
|
|
|
// }
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testACompanyCanHaveComponents()
|
|
|
|
// {
|
|
|
|
// $company = factory(Company::class)->create();
|
|
|
|
// factory(App\Models\Component::class, 1)->create(['company_id'=>$company->id]);
|
|
|
|
// $this->assertCount(1, $company->components);
|
|
|
|
// }
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|