Package info.archinnov.achilles.internal.context

Source Code of info.archinnov.achilles.internal.context.DaoFacadeTest

/*
* Copyright (C) 2012-2014 DuyHai DOAN
*
*  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 info.archinnov.achilles.internal.context;

import static org.fest.assertions.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import org.apache.commons.lang3.RandomUtils;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Answers;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import com.datastax.driver.core.ResultSet;
import com.google.common.util.concurrent.ListenableFuture;
import info.archinnov.achilles.internal.metadata.holder.EntityMeta;
import info.archinnov.achilles.internal.metadata.holder.PropertyMeta;
import info.archinnov.achilles.internal.statement.wrapper.BoundStatementWrapper;
import info.archinnov.achilles.test.builders.CompleteBeanTestBuilder;
import info.archinnov.achilles.test.mapping.entity.CompleteBean;
import info.archinnov.achilles.type.ConsistencyLevel;
import info.archinnov.achilles.type.OptionsBuilder;

@RunWith(MockitoJUnitRunner.class)
public class DaoFacadeTest {

    private PersistenceContext context;

    private PersistenceContext.DaoFacade facade;

    @Mock
    private DaoContext daoContext;

    @Mock
    private AbstractFlushContext flushContext;

    @Mock
    private ConfigurationContext configurationContext;

    @Mock(answer = Answers.RETURNS_DEEP_STUBS)
    private EntityMeta meta;

    @Mock
    private ListenableFuture<ResultSet> futureResultSet;

    @Mock(answer = Answers.RETURNS_DEEP_STUBS)
    private PropertyMeta idMeta;

    private Long primaryKey = RandomUtils.nextLong(0,Long.MAX_VALUE);

    private CompleteBean entity = CompleteBeanTestBuilder.builder().id(primaryKey).buid();

    @Before
    public void setUp() throws Exception {
        when(meta.getIdMeta()).thenReturn(idMeta);
        when(meta.<CompleteBean>getEntityClass()).thenReturn(CompleteBean.class);
        when(configurationContext.getDefaultWriteConsistencyLevel()).thenReturn(ConsistencyLevel.ONE);

        context = new PersistenceContext(meta, configurationContext, daoContext, flushContext, CompleteBean.class, primaryKey, OptionsBuilder.noOptions());
        facade = context.daoFacade;
    }

    @Test
    public void should_push_statement_wrapper() throws Exception {
        BoundStatementWrapper bsWrapper = mock(BoundStatementWrapper.class);

        facade.pushStatement(bsWrapper);

        verify(flushContext).pushStatement(bsWrapper);
    }

    @Test
    public void should_push_counter_statement_wrapper() throws Exception {
        BoundStatementWrapper bsWrapper = mock(BoundStatementWrapper.class);

        facade.pushCounterStatement(bsWrapper);

        verify(flushContext).pushCounterStatement(bsWrapper);
    }

    @Test
    public void should_execute_immediate() throws Exception {
        // Given
        BoundStatementWrapper bsWrapper = mock(BoundStatementWrapper.class);

        // When
        when(flushContext.execute(bsWrapper)).thenReturn(futureResultSet);

        ListenableFuture<ResultSet> actual = facade.executeImmediate(bsWrapper);

        // Then
        assertThat(actual).isSameAs(futureResultSet);
    }

}
TOP

Related Classes of info.archinnov.achilles.internal.context.DaoFacadeTest

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.