예제 #1
0
 public function testGetById()
 {
     $client = $this->createAuthenticatedClient();
     $client->request('GET', '/api/shippings/' . $this->shipping->getId());
     $response = json_decode($client->getResponse()->getContent());
     // shipping
     $this->assertEquals(200, $client->getResponse()->getStatusCode());
     $this->assertEquals('00001', $response->number);
     $this->assertEquals('432', $response->shippingNumber);
     $this->assertEquals('shipping-commission', $response->commission);
     $this->assertEquals(101, $response->height);
     $this->assertEquals(102, $response->width);
     $this->assertEquals(103, $response->length);
     $this->assertEquals(10, $response->weight);
     $this->assertEquals('abcd1234', $response->trackingId);
     $this->assertEquals('http://www.tracking.url?token=abcd1234', $response->trackingUrl);
     $this->assertEquals('simple shipping note', $response->note);
     $this->assertEquals((new DateTime('2015-01-01'))->getTimestamp(), (new DateTime($response->expectedDeliveryDate))->getTimestamp());
     $this->assertEquals('Tiny internal note', $response->internalNote);
     // shipping status
     $this->assertEquals($this->shipping->getStatus()->getId(), $response->status->id);
     // order
     $this->assertEquals($this->data->order->getId(), $response->order->id);
     // shipping item
     $this->assertEquals(1, count($response->items));
     $item = $response->items[0];
     $this->assertEquals($this->shippingItem->getId(), $item->id);
     $this->assertEquals(1, $item->quantity);
     $this->assertEquals('shipping-item-note', $item->note);
     // order address
     $this->assertEquals($this->shippingAddress->getId(), $response->deliveryAddress->id);
     $this->assertEquals('John', $response->deliveryAddress->firstName);
     $this->assertEquals('Doe', $response->deliveryAddress->lastName);
     $this->assertEquals('Company', $response->deliveryAddress->accountName);
     $this->assertEquals('Dr', $response->deliveryAddress->title);
     $this->assertEquals('Sample-Street', $response->deliveryAddress->street);
     $this->assertEquals('Entrance 2', $response->deliveryAddress->addition);
     $this->assertEquals('12', $response->deliveryAddress->number);
     $this->assertEquals('Sample-City', $response->deliveryAddress->city);
     $this->assertEquals('12345', $response->deliveryAddress->zip);
     $this->assertEquals('State', $response->deliveryAddress->state);
     $this->assertEquals('Country', $response->deliveryAddress->country);
     $this->assertEquals('postboxPostcode', $response->deliveryAddress->postboxPostcode);
     $this->assertEquals('postboxNumber', $response->deliveryAddress->postboxNumber);
     $this->assertEquals('postboxCity', $response->deliveryAddress->postboxCity);
     $this->assertEquals('uid-123', $response->deliveryAddress->uid);
     $this->assertEquals('+43 123 / 456 789', $response->deliveryAddress->phone);
     $this->assertEquals('+43 123 / 456', $response->deliveryAddress->phoneMobile);
     // terms
     $this->assertEquals($this->data->termsOfDelivery->getTerms(), $response->termsOfDeliveryContent);
     $this->assertEquals($this->data->termsOfPayment->getTerms(), $response->termsOfPaymentContent);
 }
예제 #2
0
 /**
  * Create fixtures.
  */
 protected function createFixtures()
 {
     for ($i = 0; $i < 5; ++$i) {
         $address = new OrderAddress();
         $address->setFirstName('firstname ' . $i);
         $address->setLastName('lastname');
         $address->setStreet('street');
         $address->setCity('city');
         $address->setZip('1234');
         $address->setCountry('country');
         $this->em->persist($address);
         $this->orderAdresses[$i] = $address;
     }
     $this->em->flush();
     $transition = new Transition();
     $transition->setSourceId($this->orderAdresses[0]->getId());
     $transition->setSource('orderAddress');
     $transition->setDestinationId($this->orderAdresses[1]->getId());
     $transition->setDestination('orderAddress');
     $this->em->persist($transition);
     $transition = new Transition();
     $transition->setSourceId($this->orderAdresses[1]->getId());
     $transition->setSource('orderAddress');
     $transition->setDestinationId($this->orderAdresses[2]->getId());
     $transition->setDestination('orderAddress');
     $this->em->persist($transition);
     $transition = new Transition();
     $transition->setSourceId($this->orderAdresses[2]->getId());
     $transition->setSource('orderAddress');
     $transition->setDestinationId($this->orderAdresses[3]->getId());
     $transition->setDestination('orderAddress');
     $this->em->persist($transition);
     $transition = new Transition();
     $transition->setSourceId($this->orderAdresses[3]->getId());
     $transition->setSource('orderAddress');
     $transition->setDestinationId($this->orderAdresses[4]->getId());
     $transition->setDestination('orderAddress');
     $this->em->persist($transition);
     $this->em->flush();
 }
예제 #3
0
 /**
  * Setup test data.
  */
 protected function setUpTestData()
 {
     // Account
     $this->account = new Account();
     $this->account->setName('Company');
     $this->account->setType(Account::TYPE_BASIC);
     $this->account->setUid('uid-123');
     $this->account->setMainEmail('*****@*****.**');
     $this->account2 = clone $this->account;
     // Country
     $country = new Country();
     $country->setName('Country');
     $country->setCode('co');
     // Address type
     $addressType = new AddressType();
     $addressType->setName('Business');
     // Address
     $this->address = new Address();
     $this->address->setStreet('Sample-Street');
     $this->address->setNumber('12');
     $this->address->setAddition('Entrance 2');
     $this->address->setCity('Sample-City');
     $this->address->setState('State');
     $this->address->setZip('12345');
     $this->address->setCountry($country);
     $this->address->setPostboxNumber('postboxNumber');
     $this->address->setPostboxPostcode('postboxPostcode');
     $this->address->setPostboxCity('postboxCity');
     $this->address->setAddressType($addressType);
     // Address
     $this->address2 = new Address();
     $this->address2->setStreet('Street');
     $this->address2->setNumber('2');
     $this->address2->setCity('Utopia');
     $this->address2->setZip('1');
     $this->address2->setCountry($country);
     $this->address2->setAddressType($addressType);
     // Add address to entities.
     $accountAddress = new AccountAddress();
     $accountAddress->setAccount($this->account);
     $accountAddress->setAddress($this->address);
     $accountAddress->setMain(true);
     $this->account->addAccountAddress($accountAddress);
     // Phone
     $phoneType = new PhoneType();
     $phoneType->setName('Business');
     $this->phone = new Phone();
     $this->phone->setPhone('+43 123 / 456 789');
     $this->phone->setPhoneType($phoneType);
     // Contact Title
     $title = new ContactTitle();
     $title->setTitle('Dr');
     // Contact
     $this->contact = $this->contactRepository->createNew();
     $this->contact->setFirstName('John');
     $this->contact->setLastName('Doe');
     $this->contact->setTitle($title);
     $this->contact->setMainEmail('*****@*****.**');
     // Second Contact
     $this->contact2 = $this->contactRepository->createNew();
     $this->contact2->setFirstName('Johanna');
     $this->contact2->setLastName('Dole');
     $this->contact2->setMainEmail('*****@*****.**');
     $contact = $this->contactRepository->createNew();
     $contact->setFirstName('Max');
     $contact->setLastName('Mustermann');
     $this->em->persist($contact);
     $this->accountContact = $this->createAccountContact($this->account, $this->contact, true);
     $this->accountContact2 = $this->createAccountContact($this->account, $this->contact2, true);
     $user = new User();
     $user->setUsername('test');
     $user->setPassword('test');
     $user->setSalt('');
     $user->setLocale('en');
     $user->setContact($this->contact);
     $this->user = $user;
     $this->orderStatus = $this->em->getRepository(self::$orderStatusEntityName)->find(OrderStatus::STATUS_CREATED);
     // Order address
     $this->orderAddressDelivery = new OrderAddress();
     $this->orderAddressDelivery->setFirstName($this->contact->getFirstName());
     $this->orderAddressDelivery->setLastName($this->contact->getLastName());
     $this->orderAddressDelivery->setTitle($title->getTitle());
     $this->orderAddressDelivery->setStreet($this->address->getStreet());
     $this->orderAddressDelivery->setNumber($this->address->getNumber());
     $this->orderAddressDelivery->setAddition($this->address->getAddition());
     $this->orderAddressDelivery->setCity($this->address->getCity());
     $this->orderAddressDelivery->setZip($this->address->getZip());
     $this->orderAddressDelivery->setState($this->address->getState());
     $this->orderAddressDelivery->setCountry($this->address->getCountry()->getName());
     $this->orderAddressDelivery->setPostboxNumber($this->address->getPostboxNumber());
     $this->orderAddressDelivery->setPostboxPostcode($this->address->getPostboxPostcode());
     $this->orderAddressDelivery->setPostboxCity($this->address->getPostboxCity());
     $this->orderAddressDelivery->setAccountName($this->account->getName());
     $this->orderAddressDelivery->setUid($this->account->getUid());
     $this->orderAddressDelivery->setPhone($this->phone->getPhone());
     $this->orderAddressDelivery->setPhoneMobile('+43 123 / 456');
     $this->orderAddressDelivery->setContactAddress($this->address);
     // Clone address for invoice.
     $this->orderAddressInvoice = clone $this->orderAddressDelivery;
     $this->termsOfDelivery = new TermsOfDelivery();
     $this->termsOfDelivery->setTerms('10kg minimum');
     $this->termsOfPayment = new TermsOfPayment();
     $this->termsOfPayment->setTerms('10% off');
     // Order
     $this->order = $this->createNewTestOrder();
     $order2 = $this->createNewTestOrder();
     $order2->setNumber('12345');
     $order2->setDeliveryAddress(null);
     $order2->setInvoiceAddress(null);
     // Product order unit
     $orderUnit = new Unit();
     $orderUnit->setId(1);
     $orderUnitTranslation = new UnitTranslation();
     $orderUnitTranslation->setUnit($orderUnit);
     $orderUnitTranslation->setName('pc');
     $orderUnitTranslation->setLocale('en');
     $orderUnit->addTranslation($orderUnitTranslation);
     $this->em->persist($orderUnit);
     $this->em->persist($orderUnitTranslation);
     // Product type
     $productType = new Type();
     $productType->setTranslationKey('product-type');
     // Product status
     $productStatus = new Status();
     $productStatus->setId(Status::ACTIVE);
     $metadata = $this->em->getClassMetadata(Status::class);
     $metadata->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_NONE);
     $productStatusTranslation = new StatusTranslation();
     $productStatusTranslation->setLocale($this->locale);
     $productStatusTranslation->setName('EnglishProductStatus-1');
     $productStatusTranslation->setStatus($productStatus);
     // Product
     $this->product = new $this->productEntity();
     $this->product->setNumber('ProductNumber-1');
     $this->product->setManufacturer('EnglishManufacturer-1');
     $this->product->setType($productType);
     $this->product->setStatus($productStatus);
     $this->product->setCreated(new DateTime());
     $this->product->setChanged(new DateTime());
     $this->product->setSupplier($this->account);
     $this->product->setOrderUnit($orderUnit);
     // Product translation
     $this->productTranslation = new ProductTranslation();
     $this->productTranslation->setProduct($this->product);
     $this->productTranslation->setLocale($this->locale);
     $this->productTranslation->setName('EnglishProductTranslationName-1');
     $this->productTranslation->setShortDescription('EnglishProductShortDescription-1');
     $this->productTranslation->setLongDescription('EnglishProductLongDescription-1');
     $this->product->addTranslation($this->productTranslation);
     // Product
     $this->product2 = clone $this->product;
     $this->product2->setSupplier($this->account);
     $translation2 = clone $this->productTranslation;
     $translation2->setProduct($this->product2);
     $this->product2->addTranslation($translation2);
     $this->em->persist($translation2);
     $this->currency = new Currency();
     $this->currency->setCode($this->defaultCurrencyCode);
     $this->currency->setNumber('1');
     $this->currency->setId('1');
     $this->currency->setName('Euro');
     $this->productPrice = new ProductPrice();
     $this->productPrice->setCurrency($this->currency);
     $this->productPrice->setMinimumQuantity(0);
     $this->productPrice->setPrice(14.5);
     $this->productPrice->setProduct($this->product);
     $this->product->addPrice($this->productPrice);
     $price2 = clone $this->productPrice;
     $price2->setProduct($this->product2);
     $price2->setPrice(15.5);
     $this->em->persist($price2);
     $this->product2->addPrice($price2);
     // Item
     $this->item = $this->createNewTestItem();
     $this->item2 = $this->createNewTestItem();
     $this->item2->setSupplier($this->account2);
     $orderTypeTranslationManual = new OrderTypeTranslation();
     $orderTypeTranslationManual->setLocale('en');
     $orderTypeTranslationManual->setName('order type translation manual');
     $orderTypeTranslationShop = new OrderTypeTranslation();
     $orderTypeTranslationShop->setLocale('en');
     $orderTypeTranslationShop->setName('order type translation shop');
     $orderTypeTranslationAnon = new OrderTypeTranslation();
     $orderTypeTranslationAnon->setLocale('en');
     $orderTypeTranslationAnon->setName('order type translation anon');
     $this->orderTypeManual = new OrderType();
     $metadata = $this->em->getClassMetadata(get_class($this->orderTypeManual));
     $metadata->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_NONE);
     $this->orderTypeManual->setId(OrderType::MANUAL);
     $this->orderTypeManual->addTranslation($orderTypeTranslationManual);
     $orderTypeTranslationManual->setType($this->orderTypeManual);
     $this->orderTypeShop = new OrderType();
     $metadata = $this->em->getClassMetadata(get_class($this->orderTypeShop));
     $metadata->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_NONE);
     $this->orderTypeShop->setId(OrderType::SHOP);
     $this->orderTypeShop->addTranslation($orderTypeTranslationShop);
     $orderTypeTranslationShop->setType($this->orderTypeShop);
     $this->orderTypeAnon = new OrderType();
     $metadata = $this->em->getClassMetadata(get_class($this->orderTypeAnon));
     $metadata->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_NONE);
     $this->orderTypeAnon->setId(OrderType::ANONYMOUS);
     $this->orderTypeAnon->addTranslation($orderTypeTranslationAnon);
     $orderTypeTranslationAnon->setType($this->orderTypeAnon);
     $this->order->addItem($this->item);
     $this->order->addItem($this->item2);
     $this->order->setType($this->orderTypeManual);
     $order2->setType($this->orderTypeManual);
     $item = $this->createNewTestItem();
     $item2 = $this->createNewTestItem();
     $order2->addItem($item);
     $order2->addItem($item2);
     $this->addonPrice = new AddonPrice();
     $this->addonPrice->setPrice(123.56);
     $this->addonPrice->setCurrency($this->currency);
     $this->addon = new Addon();
     $this->addon->setProduct($this->product);
     $this->addon->setAddon($this->product2);
     $this->addonPrice->setAddon($this->addon);
     $this->addon->addAddonPrice($this->addonPrice);
     $this->em->persist($this->addon);
     $this->em->persist($this->addonPrice);
     $this->em->persist($item);
     $this->em->persist($item2);
     $this->em->persist($accountAddress);
     $this->em->persist($this->currency);
     $this->em->persist($this->productPrice);
     $this->em->persist($user);
     $this->em->persist($this->orderTypeManual);
     $this->em->persist($this->orderTypeShop);
     $this->em->persist($this->orderTypeAnon);
     $this->em->persist($orderTypeTranslationManual);
     $this->em->persist($orderTypeTranslationShop);
     $this->em->persist($orderTypeTranslationAnon);
     $this->em->persist($this->account);
     $this->em->persist($this->account2);
     $this->em->persist($title);
     $this->em->persist($country);
     $this->em->persist($this->termsOfPayment);
     $this->em->persist($this->termsOfDelivery);
     $this->em->persist($country);
     $this->em->persist($addressType);
     $this->em->persist($this->address);
     $this->em->persist($this->address2);
     $this->em->persist($phoneType);
     $this->em->persist($this->phone);
     $this->em->persist($this->contact);
     $this->em->persist($this->contact2);
     $this->em->persist($this->orderAddressDelivery);
     $this->em->persist($this->orderAddressInvoice);
     $this->em->persist($this->item);
     $this->em->persist($this->item2);
     $this->em->persist($this->product);
     $this->em->persist($this->product2);
     $this->em->persist($this->productTranslation);
     $this->em->persist($productType);
     $this->em->persist($productStatus);
     $this->em->persist($productStatusTranslation);
     $this->em->flush();
 }