org.bonitasoft.engine.persistence.HibernatePersistenceIT.java Source code

Java tutorial

Introduction

Here is the source code for org.bonitasoft.engine.persistence.HibernatePersistenceIT.java

Source

/**
 * Copyright (C) 2015 BonitaSoft S.A.
 * BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
 * This library is free software; you can redistribute it and/or modify it under the terms
 * of the GNU Lesser General Public License as published by the Free Software Foundation
 * version 2.1 of the License.
 * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License along with this
 * program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
 * Floor, Boston, MA 02110-1301, USA.
 **/
package org.bonitasoft.engine.persistence;

import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.bonitasoft.engine.log.technical.TechnicalLoggerService;
import org.bonitasoft.engine.services.SPersistenceException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.service.ServiceRegistryBuilder;
import org.junit.Test;

public class HibernatePersistenceIT {

    protected QueryOptions buildQueryOptions(final String... searchTerms) {
        final Map<Class<? extends PersistentObject>, Set<String>> allFields = new HashMap<Class<? extends PersistentObject>, Set<String>>();
        final Set<String> fields = new HashSet<String>(2);
        fields.add("title");
        fields.add("author");
        allFields.put(Book.class, fields);
        final QueryOptions queryOptions = new QueryOptions(0, 10, Collections.<OrderByOption>emptyList(),
                new ArrayList<FilterOption>(0), new SearchFields(Arrays.asList(searchTerms), allFields));
        return queryOptions;
    }

    @Test
    public void should_return_single_result_when_wordsearch_not_enabled() throws Exception {
        final boolean enableWordSearch = false;
        final int expectedResults = 1;

        executeSearch(enableWordSearch, expectedResults);
    }

    @Test
    public void should_return_more_results_when_wordsearch_enabled() throws Exception {
        final boolean enableWordSearch = true;
        final int expectedResults = 2;

        executeSearch(enableWordSearch, expectedResults);
    }

    protected void executeSearch(final boolean enableWordSearch, final int expectedResults)
            throws ClassNotFoundException, SPersistenceException, SBonitaReadException {
        // Setup Hibernate and extract SessionFactory
        final Configuration configuration = new Configuration().configure();
        final ServiceRegistry serviceRegistry = new ServiceRegistryBuilder()
                .applySettings(configuration.getProperties()).buildServiceRegistry();
        SessionFactory sessionFactory;
        sessionFactory = configuration.buildSessionFactory(serviceRegistry);

        //
        final List<Class<? extends PersistentObject>> classMapping = Arrays
                .<Class<? extends PersistentObject>>asList(Book.class);
        final Map<String, String> classAliasMappings = Collections.singletonMap(Book.class.getName(), "book");
        final PlatformHibernatePersistenceService persistenceService = new PlatformHibernatePersistenceService(
                sessionFactory, classMapping, classAliasMappings, enableWordSearch, Collections.<String>emptySet(),
                mock(TechnicalLoggerService.class));

        Session session;
        session = persistenceService.getSession(true);
        session.beginTransaction();
        try {
            Book book;
            book = new Book();
            book.setId(1);
            book.setTitle("lieues");
            book.setAuthor("Laurent");
            persistenceService.insert(book);

            book = new Book();
            book.setId(2);
            book.setTitle("Vingt mille lieues");
            book.setAuthor("Nicolas");
            persistenceService.insert(book);

        } finally {
            session.getTransaction().commit();
        }

        final QueryOptions queryOptions = buildQueryOptions("lieues", "ipsum");

        session = persistenceService.getSession(true);
        session.beginTransaction();
        try {
            final List<Book> allBooks = persistenceService
                    .selectList(new SelectListDescriptor<Book>("getAllBooks", null, Book.class, queryOptions));
            assertThat(allBooks).isEqualTo(expectedResults);
        } finally {
            session.getTransaction().commit();
        }
    }

}