/* * Copyright 2012 the original author or authors. * * Licensed 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 com.oreilly.springdata.mongodb.order; import static com.oreilly.springdata.mongodb.core.CoreMatchers.*; import static com.oreilly.springdata.mongodb.order.OrderMatchers.*; import static org.hamcrest.Matchers.*; import static org.junit.Assert.*; import java.util.List; import org.hamcrest.Matcher; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import com.oreilly.springdata.mongodb.AbstractIntegrationTest; import com.oreilly.springdata.mongodb.core.Customer; import com.oreilly.springdata.mongodb.core.CustomerRepository; import com.oreilly.springdata.mongodb.core.EmailAddress; import com.oreilly.springdata.mongodb.core.Product; import com.oreilly.springdata.mongodb.core.ProductRepository; /** * Integration tests for {@link OrderRepository}. * * @author Oliver Gierke */ public class OrderRepositoryIntegrationTest extends AbstractIntegrationTest { @Autowired OrderRepository repository; @Autowired CustomerRepository customerRepository; @Autowired ProductRepository productRepository; @Test public void createOrder() { Customer dave = customerRepository.findByEmailAddress(new EmailAddress("dave@dmband.com")); Product iPad = productRepository.findAll().iterator().next(); Order order = new Order(dave, dave.getAddresses().iterator().next()); order.add(new LineItem(iPad)); order = repository.save(order); assertThat(order.getId(), is(notNullValue())); } @Test public void readOrder() { Customer dave = customerRepository.findByEmailAddress(new EmailAddress("dave@dmband.com")); List<Order> orders = repository.findByCustomer(dave); Matcher<Iterable<? super Order>> hasOrderForiPad = containsOrder(with(LineItem(with(Product(named("iPad")))))); assertThat(orders, hasSize(1)); assertThat(orders, hasOrderForiPad); } }