Package org.jrest.dao.test.jpa

Source Code of org.jrest.dao.test.jpa.FindActionTest

package org.jrest.dao.test.jpa;

import java.util.ArrayList;
import java.util.List;

import junit.framework.Assert;

import org.jrest.dao.test.entities.Author;
import org.jrest.dao.test.entities.Book;
import org.jrest.dao.test.entities.PackingInfo;
import org.jrest4guice.core.guice.GuiceContext;
import org.jrest4guice.core.persist.jpa.JpaGuiceModuleProvider;
import org.jrest4guice.dao.DaoModuleProvider;
import org.jrest4guice.dao.jpa.JpaContextProvider;
import org.junit.BeforeClass;
import org.junit.Test;

public class FindActionTest {
 
  private static BookDao dao;
 
  @SuppressWarnings("unchecked")
  @BeforeClass
  public static void setup() {
    GuiceContext context = GuiceContext.getInstance();
    context.addModuleProvider(
            (new DaoModuleProvider("org.jrest4guice.dao.test.jpa", "org.jrest4guice.dao.jpa"))
                    .addActionContextProviders(new JpaContextProvider()),
            new JpaGuiceModuleProvider()).init();
    dao = context.getBean(BookDao.class);
   
    Book b0 = getNewBook("Book 0", 10f, 10);
    Book b1 = getNewBook("Book 1", 10f, 20);
    Book b2 = getNewBook("Book 2", 10f, 30);
    Book b3 = getNewBook("Book 3", 10f, 40);
    Book b4 = getNewBook("Book 4", 10f, 50);
    Book b5 = getNewBook("Book 5", 20f, 60);
    Book b6 = getNewBook("Book 6", 20f, 70);
    Book b7 = getNewBook("Book 7", 20f, 80);
    Book b8 = getNewBook("Book 8", 20f, 90);
    Book b9 = getNewBook("Book 9", 20f, 100);
    dao.create(b0, b1, b2, b3, b4, b5, b6, b7, b8, b9);
    Assert.assertNotNull(b0.getId());
    Assert.assertNotNull(b1.getId());
    Assert.assertNotNull(b2.getId());
    Assert.assertNotNull(b3.getId());
    Assert.assertNotNull(b4.getId());
    Assert.assertNotNull(b5.getId());
    Assert.assertNotNull(b6.getId());
    Assert.assertNotNull(b7.getId());
    Assert.assertNotNull(b8.getId());
    Assert.assertNotNull(b9.getId());
  }
 
  @Test
  public void testFindPriceMoreThan() {
    List<Book> books = dao.findPriceMoreThan(10f);
    Assert.assertEquals(5, books.size());
  }
 
  @Test
  public void testFindLengthLessThan() {
    List<Book> books = dao.findLengthLessThan(60);
    Assert.assertEquals(5, books.size());
  }
 
  @Test
  public void testFindPriceAndLengthEqual() {
    List<Book> books = dao.findPriceAndLengthEqual(10f, 50);
    Assert.assertEquals(1, books.size());
  }
 
  private static Book getNewBook(String title, float price, int length) {
    PackingInfo info = new PackingInfo("平装", "铜版纸", length);
    List<Author> authors = new ArrayList<Author>();
    authors.add(new Author("gzYangfan"));
   
    Book book = new Book();
    book.setTitle(title);
    book.setSummary("java");
    book.setPrice(price);
    book.setPackingInfo(info);
    book.setAuthors(authors);
   
    return book;
  }
 
}
TOP

Related Classes of org.jrest.dao.test.jpa.FindActionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.