Package br.com.objectos.way.relational

Source Code of br.com.objectos.way.relational.MysqlSQLBuilderSelectPageTest

/*
* Copyright 2011 Objectos, Fábrica de Software LTDA.
*
* 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 br.com.objectos.way.relational;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;

import java.util.Iterator;
import java.util.List;

import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Guice;
import org.testng.annotations.Test;

import br.com.objectos.way.dbunit.DBUnit;
import br.com.objectos.way.relational.Page;
import br.com.objectos.way.relational.SimplePage;

import com.google.common.collect.ImmutableList;
import com.google.inject.Inject;
import com.google.inject.Provider;

/**
* @author marcio.endo@objectos.com.br (Marcio Endo)
*/
@Test
@Guice(modules = WayRelationalTestModule.class)
public class MysqlSQLBuilderSelectPageTest {

  @Inject
  private DBUnit dbunit;

  @Inject
  private Provider<DeprecatedSql> sqlProvider;

  private DeprecatedSql sql;
  private final ResultSetLoader<Many> loader = new ReflectionLoader<Many>(Many.class);

  @BeforeMethod
  public void reset() {
    dbunit.load(new MiniComunsJdbcTruncateXml());
    dbunit.load(new MiniComunsJdbcXml());

    sql = sqlProvider.get();
    sql.select("*").from("WAY_RELATIONAL.MANY").as("MANY").andLoadWith(loader);
    sql.order("ID").ascending();
  }

  public void page_with_offset_zero() {
    int offset = 0;
    int pageLength = 10;

    Page page = new SimplePage.Builder() //
        .startAt(offset).withLengthOf(pageLength) //
        .get();

    List<Many> result = sql.listPage(page);
    assertThat(result.size(), equalTo(pageLength));
    assertThat(result.get(0).getValue(), equalTo(++offset));
    assertThat(result.get(1).getValue(), equalTo(++offset));
    assertThat(result.get(2).getValue(), equalTo(++offset));
    assertThat(result.get(3).getValue(), equalTo(++offset));
    assertThat(result.get(4).getValue(), equalTo(++offset));
    assertThat(result.get(5).getValue(), equalTo(++offset));
    assertThat(result.get(6).getValue(), equalTo(++offset));
    assertThat(result.get(7).getValue(), equalTo(++offset));
    assertThat(result.get(8).getValue(), equalTo(++offset));
    assertThat(result.get(9).getValue(), equalTo(++offset));
  }

  public void page_with_offset_gt_zero() {
    int offset = 10;
    int pageLength = 3;

    Page page = new SimplePage.Builder() //
        .startAt(offset).withLengthOf(pageLength) //
        .get();

    List<Many> result = sql.listPage(page);
    assertThat(result.size(), equalTo(pageLength));
    assertThat(result.get(0).getValue(), equalTo(++offset));
    assertThat(result.get(1).getValue(), equalTo(++offset));
    assertThat(result.get(2).getValue(), equalTo(++offset));
  }

  public void iterator_test() {
    int offset = 0;

    Iterator<Many> iter = sql.iterate();

    List<Many> result = ImmutableList.copyOf(iter);
    assertThat(result.size(), equalTo(20));
    assertThat(result.get(0).getValue(), equalTo(++offset));
    assertThat(result.get(1).getValue(), equalTo(++offset));
    assertThat(result.get(2).getValue(), equalTo(++offset));
    assertThat(result.get(3).getValue(), equalTo(++offset));
    assertThat(result.get(4).getValue(), equalTo(++offset));
    assertThat(result.get(5).getValue(), equalTo(++offset));
    assertThat(result.get(6).getValue(), equalTo(++offset));
    assertThat(result.get(7).getValue(), equalTo(++offset));
    assertThat(result.get(8).getValue(), equalTo(++offset));
    assertThat(result.get(9).getValue(), equalTo(++offset));
  }

}
TOP

Related Classes of br.com.objectos.way.relational.MysqlSQLBuilderSelectPageTest

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.