blob: 9c1ac88dd3fa4d512870728fd010f79310624e15 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.olingo.fit.proxy;
// CHECKSTYLE:OFF (Maven checkstyle)
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.lang.reflect.Proxy;
import java.math.BigDecimal;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.UUID;
import org.apache.commons.lang3.RandomUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.olingo.client.api.EdmEnabledODataClient;
import org.apache.olingo.ext.proxy.AbstractService;
import org.apache.olingo.ext.proxy.commons.EntityInvocationHandler;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.InMemoryEntities;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.Address;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.CompanyAddress;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.Customer;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.Order;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.OrderCollection;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.OrderDetail;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.OrderDetailKey;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.PaymentInstrument;
import org.apache.olingo.fit.proxy.staticservice.odatawcfservice.types.Person;
import org.junit.Test;
// CHECKSTYLE:ON (Maven checkstyle)
/**
* This is the unit test class to check entity update operations.
*/
public class EntityUpdateTestITCase extends AbstractTestITCase {
protected AbstractService<EdmEnabledODataClient> getService() {
return service;
}
protected InMemoryEntities getContainer() {
return container;
}
@Test
public void update() {
Person person = getContainer().getPeople().getByKey(1);
final Address address = person.getHomeAddress();
address.setCity("XXX");
getContainer().flush();
person = getContainer().getPeople().getByKey(1).load();
assertEquals("XXX", person.getHomeAddress().getCity());
}
@Test
public void multiKey() {
final OrderDetailKey orderDetailKey = new OrderDetailKey();
orderDetailKey.setOrderID(7);
orderDetailKey.setProductID(5);
OrderDetail orderDetail = getContainer().getOrderDetails().getByKey(orderDetailKey).load();
assertNotNull(orderDetail);
assertEquals(7, orderDetail.getOrderID(), 0);
assertEquals(5, orderDetail.getProductID(), 0);
orderDetail.setQuantity(5);
getContainer().flush();
orderDetail = getContainer().getOrderDetails().getByKey(orderDetailKey).load();
assertEquals(5, orderDetail.getQuantity(), 0);
}
@Test
public void patchLink() {
// 1. create customer
Customer customer = getContainer().newEntityInstance(Customer.class);
customer.setPersonID(977);
customer.setFirstName("Test");
customer.setLastName("Test");
final Address homeAddress = getContainer().newComplexInstance(CompanyAddress.class);
homeAddress.setStreet("V.le Gabriele D'Annunzio");
homeAddress.setCity("Pescara");
homeAddress.setPostalCode("65127");
customer.setHomeAddress(homeAddress);
customer.setNumbers(getContainer().newPrimitiveCollection(String.class)); // empty
customer.setEmails(getContainer().newPrimitiveCollection(String.class)); // empty
customer.setCity("Pescara");
final Calendar birthday = Calendar.getInstance();
birthday.clear();
birthday.set(1977, 8, 8);
customer.setBirthday(new Timestamp(birthday.getTimeInMillis()));
customer.setTimeBetweenLastTwoOrders(BigDecimal.valueOf(0.0000002));
// 2. create order and set it to customer
final int orderId = RandomUtils.nextInt(400, 410);
Order order = getContainer().newEntityInstance(Order.class);
order.setOrderID(orderId);
final OrderCollection orders = getContainer().newEntityCollection(OrderCollection.class);
orders.add(order);
customer.setOrders(orders);
order.setCustomerForOrder(customer);
getContainer().getCustomers().add(customer);
getContainer().flush();
assertEquals(977, order.getCustomerForOrder().load().getPersonID(), 0);
// order.getCustomerForOrder().load() caches Customer ... test server doesn't support something like the following
// <service>/Orders(400)/CustomerForOrder/Orders
// detach all and check for stored data ..
getService().getContext().detachAll();
// 3. check everything after flush
order = getContainer().getOrders().getByKey(orderId).load();
assertEquals(orderId, order.getOrderID(), 0);
customer = getContainer().getCustomers().getByKey(977);
// assertEquals(1, customer.getOrders().size());
int count = 0;
for (Order inside : customer.getOrders().execute()) {
if (inside.getOrderID() == orderId) {
count++;
}
}
assertEquals(1, count);
assertEquals(977, order.getCustomerForOrder().load().getPersonID(), 0);
// 4. delete customer and order
getContainer().getCustomers().delete(977);
getContainer().getOrders().delete(orderId);
getContainer().flush();
}
@Test
public void concurrentModification() {
Order order = getContainer().getOrders().getByKey(8).load();
final String etag = ((EntityInvocationHandler) Proxy.getInvocationHandler(order)).getETag();
assertTrue(StringUtils.isNotBlank(etag));
order.setShelfLife(BigDecimal.TEN);
getContainer().flush();
order = getContainer().getOrders().getByKey(8).load();
assertEquals(BigDecimal.TEN, order.getShelfLife());
}
@Test
public void contained() {
PaymentInstrument instrument =
getContainer().getAccounts().getByKey(101).getMyPaymentInstruments().getByKey(101901);
final String newName = UUID.randomUUID().toString();
instrument.setFriendlyName(newName);
getContainer().flush();
instrument = getContainer().getAccounts().getByKey(101).getMyPaymentInstruments().getByKey(101901).load();
assertEquals(newName, instrument.getFriendlyName());
}
}