mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 09:35:49 +02:00
Add some fixtures for parts to test part pages.
This commit is contained in:
parent
d26004cfec
commit
ab777bc264
3 changed files with 201 additions and 11 deletions
123
src/DataFixtures/PartFixtures.php
Normal file
123
src/DataFixtures/PartFixtures.php
Normal file
|
@ -0,0 +1,123 @@
|
|||
<?php
|
||||
/**
|
||||
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||
*
|
||||
* Copyright (C) 2019 - 2020 Jan Böhmer (https://github.com/jbtronics)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
namespace App\DataFixtures;
|
||||
|
||||
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
use App\Entity\Attachments\PartAttachment;
|
||||
use App\Entity\Parts\Category;
|
||||
use App\Entity\Parts\Footprint;
|
||||
use App\Entity\Parts\Manufacturer;
|
||||
use App\Entity\Parts\Part;
|
||||
use App\Entity\Parts\PartLot;
|
||||
use App\Entity\Parts\Storelocation;
|
||||
use App\Entity\Parts\Supplier;
|
||||
use App\Entity\PriceInformations\Orderdetail;
|
||||
use App\Entity\PriceInformations\Pricedetail;
|
||||
use Doctrine\Bundle\FixturesBundle\Fixture;
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Doctrine\Persistence\ObjectManager;
|
||||
|
||||
class PartFixtures extends Fixture
|
||||
{
|
||||
|
||||
protected $em;
|
||||
|
||||
public function __construct(EntityManagerInterface $entityManager)
|
||||
{
|
||||
$this->em = $entityManager;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function load(ObjectManager $manager)
|
||||
{
|
||||
$table_name = $this->em->getClassMetadata(Part::class)->getTableName();
|
||||
$this->em->getConnection()->exec("ALTER TABLE `${table_name}` AUTO_INCREMENT = 1;");
|
||||
|
||||
/** Simple part */
|
||||
$part = new Part();
|
||||
$part->setName('Part 1');
|
||||
$part->setCategory($manager->find(Category::class, 1));
|
||||
$manager->persist($part);
|
||||
|
||||
/** More complex part */
|
||||
$part = new Part();
|
||||
$part->setName('Part 2');
|
||||
$part->setCategory($manager->find(Category::class, 1));
|
||||
$part->setFootprint($manager->find(Footprint::class, 1));
|
||||
$part->setManufacturer($manager->find(Manufacturer::class, 1));
|
||||
$part->setTags('test, Test, Part2');
|
||||
$part->setMass(100.2);
|
||||
$part->setNeedsReview(true);
|
||||
$part->setManufacturingStatus('active');
|
||||
$manager->persist($part);
|
||||
|
||||
/** Part with orderdetails, storelocations and Attachments */
|
||||
$part = new Part();
|
||||
$part->setFavorite(true);
|
||||
$part->setName('Part 2');
|
||||
$part->setCategory($manager->find(Category::class, 1));
|
||||
$partLot1 = new PartLot();
|
||||
$partLot1->setAmount(1.0);
|
||||
$partLot1->setStorageLocation($manager->find(Storelocation::class, 1));
|
||||
$part->addPartLot($partLot1);
|
||||
|
||||
$partLot2 = new PartLot();
|
||||
$partLot2->setExpirationDate(new \DateTime());
|
||||
$partLot2->setComment('Test');
|
||||
$partLot2->setNeedsRefill(true);
|
||||
$partLot2->setStorageLocation($manager->find(Storelocation::class, 3));
|
||||
$part->addPartLot($partLot2);
|
||||
|
||||
$orderdetail = new Orderdetail();
|
||||
$orderdetail->setSupplier($manager->find(Supplier::class, 1));
|
||||
$orderdetail->addPricedetail((new Pricedetail())->setPriceRelatedQuantity(1.0)->setPrice(10));
|
||||
$orderdetail->addPricedetail((new Pricedetail())->setPriceRelatedQuantity(10.0)->setPrice(15));
|
||||
$part->addOrderdetail($orderdetail);
|
||||
|
||||
$orderdetail = new Orderdetail();
|
||||
$orderdetail->setSupplierpartnr('BC 547');
|
||||
$orderdetail->setObsolete(true);
|
||||
$orderdetail->setSupplier($manager->find(Supplier::class, 1));
|
||||
$orderdetail->addPricedetail((new Pricedetail())->setPriceRelatedQuantity(1.0)->setPrice(10));
|
||||
$orderdetail->addPricedetail((new Pricedetail())->setPriceRelatedQuantity(10.0)->setPrice(15));
|
||||
$part->addOrderdetail($orderdetail);
|
||||
|
||||
$attachment = new PartAttachment();
|
||||
$attachment->setName('TestAttachment');
|
||||
$attachment->setURL('www.foo.bar');
|
||||
$attachment->setAttachmentType($manager->find(AttachmentType::class, 1));
|
||||
$part->addAttachment($attachment);
|
||||
|
||||
$attachment = new PartAttachment();
|
||||
$attachment->setName('Test2');
|
||||
$attachment->setPath('invalid');
|
||||
$attachment->setShowInTable(true);
|
||||
$attachment->setAttachmentType($manager->find(AttachmentType::class, 1));
|
||||
$part->addAttachment($attachment);
|
||||
|
||||
$manager->persist($part);
|
||||
$manager->flush();
|
||||
}
|
||||
}
|
|
@ -24,6 +24,7 @@ declare(strict_types=1);
|
|||
|
||||
namespace App\Tests;
|
||||
|
||||
use App\Entity\Parts\Manufacturer;
|
||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||
|
||||
/**
|
||||
|
@ -61,16 +62,6 @@ class ApplicationAvailabilityFunctionalTest extends WebTestCase
|
|||
yield ['/user/settings'];
|
||||
yield ['/user/info'];
|
||||
|
||||
//Part lists
|
||||
yield ['/category/1/parts'];
|
||||
yield ['/footprint/1/parts'];
|
||||
yield ['/manufacturer/1/parts'];
|
||||
yield ['/store_location/1/parts'];
|
||||
yield ['/supplier/1/parts'];
|
||||
yield ['/parts/by_tag/Test'];
|
||||
yield ['/parts/search?keyword=test'];
|
||||
yield ['/parts'];
|
||||
|
||||
//Login/logout
|
||||
yield ['/login'];
|
||||
|
||||
|
@ -89,7 +80,14 @@ class ApplicationAvailabilityFunctionalTest extends WebTestCase
|
|||
//yield ['/tree/device/1'];
|
||||
yield ['/tree/devices'];
|
||||
|
||||
yield ['/log/'];
|
||||
//Part tests
|
||||
yield ['/part/1'];
|
||||
yield ['/part/2'];
|
||||
yield ['/part/3'];
|
||||
|
||||
yield ['/part/1/edit'];
|
||||
yield ['/part/2/edit'];
|
||||
yield ['/part/3/edit'];
|
||||
|
||||
//Typeahead
|
||||
yield ['/typeahead/builtInResources/search/DIP8'];
|
||||
|
|
69
tests/DatatablesAvailabilityTest.php
Normal file
69
tests/DatatablesAvailabilityTest.php
Normal file
|
@ -0,0 +1,69 @@
|
|||
<?php
|
||||
/**
|
||||
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||
*
|
||||
* Copyright (C) 2019 - 2020 Jan Böhmer (https://github.com/jbtronics)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
namespace App\Tests;
|
||||
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||
|
||||
class DatatablesAvailabilityTest extends WebTestCase
|
||||
{
|
||||
/**
|
||||
* @dataProvider urlProvider
|
||||
* @param string $url
|
||||
*/
|
||||
public function testDataTable(string $url)
|
||||
{
|
||||
//We have localized routes
|
||||
$url = '/en'.$url;
|
||||
|
||||
//Try to access pages with admin, because he should be able to view every page!
|
||||
$client = static::createClient([], [
|
||||
'PHP_AUTH_USER' => 'admin',
|
||||
'PHP_AUTH_PW' => 'test',
|
||||
]);
|
||||
|
||||
$client->request('GET', $url);
|
||||
$this->assertTrue($client->getResponse()->isSuccessful(), 'Request not successful. Status code is '.$client->getResponse()->getStatusCode());
|
||||
|
||||
$client->request('POST', $url, ['_dt' => 'dt']);
|
||||
$this->assertTrue($client->getResponse()->isSuccessful());
|
||||
$this->assertJson($client->getResponse()->getContent());
|
||||
}
|
||||
|
||||
public function urlProvider()
|
||||
{
|
||||
//Part lists
|
||||
yield ['/category/1/parts'];
|
||||
yield ['/footprint/1/parts'];
|
||||
yield ['/manufacturer/1/parts'];
|
||||
yield ['/store_location/1/parts'];
|
||||
yield ['/supplier/1/parts'];
|
||||
yield ['/parts/by_tag/Test'];
|
||||
yield ['/parts/search?keyword=test'];
|
||||
yield ['/parts'];
|
||||
|
||||
yield ['/log/'];
|
||||
|
||||
yield ['/attachment/list'];
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue