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;
|
|
|
|
|
2017-07-11 20:37:02 -07:00
|
|
|
public function testCompanyAdd()
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2017-06-12 17:39:03 -07:00
|
|
|
$company = factory(Company::class)->make();
|
|
|
|
$values = [
|
2016-03-25 01:18:05 -07:00
|
|
|
'name' => $company->name,
|
2017-06-12 17:39:03 -07:00
|
|
|
];
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-06-12 17:39:03 -07:00
|
|
|
Company::create($values);
|
|
|
|
$this->tester->seeRecord('companies', $values);
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2017-06-12 17:39:03 -07:00
|
|
|
public function testFailsEmptyValidation()
|
|
|
|
{
|
|
|
|
// An Company requires a name, a qty, and a category_id.
|
|
|
|
$a = Company::create();
|
|
|
|
$this->assertFalse($a->isValid());
|
|
|
|
|
|
|
|
$fields = [
|
|
|
|
'name' => 'name',
|
|
|
|
];
|
|
|
|
$errors = $a->getErrors();
|
|
|
|
foreach ($fields as $field => $fieldTitle) {
|
|
|
|
$this->assertEquals($errors->get($field)[0], "The ${fieldTitle} field is required.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testACompanyCanHaveUsers()
|
|
|
|
{
|
2017-07-11 20:37:02 -07:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testACompanyCanHaveAssets()
|
|
|
|
{
|
2017-07-11 20:37:02 -07:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testACompanyCanHaveLicenses()
|
|
|
|
{
|
2017-07-11 20:37:02 -07:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testACompanyCanHaveAccessories()
|
|
|
|
{
|
2017-07-11 20:37:02 -07:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testACompanyCanHaveConsumables()
|
|
|
|
{
|
2017-07-11 20:37:02 -07:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testACompanyCanHaveComponents()
|
|
|
|
{
|
2017-07-11 20:37:02 -07:00
|
|
|
$company = factory(Company::class)->create();
|
|
|
|
factory(App\Models\Component::class, 1)->create(['company_id'=>$company->id]);
|
|
|
|
$this->assertCount(1, $company->components);
|
2017-06-12 17:39:03 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|