Package org.springframework.data.elasticsearch

Source Code of org.springframework.data.elasticsearch.InnerObjectTests

/*
* Copyright 2014 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 org.springframework.data.elasticsearch;

import static org.apache.commons.lang.RandomStringUtils.*;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.elasticsearch.core.ElasticsearchTemplate;
import org.springframework.data.elasticsearch.entities.Author;
import org.springframework.data.elasticsearch.entities.Book;
import org.springframework.data.elasticsearch.repositories.book.SampleElasticSearchBookRepository;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
* @author Mohsin Husen
*/

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:/repository-test-nested-object.xml")
public class InnerObjectTests {

  @Autowired
  private SampleElasticSearchBookRepository bookRepository;

  @Autowired
  private ElasticsearchTemplate elasticsearchTemplate;

  @Before
  public void before() {
    elasticsearchTemplate.deleteIndex(Book.class);
    elasticsearchTemplate.createIndex(Book.class);
    elasticsearchTemplate.putMapping(Book.class);
    elasticsearchTemplate.refresh(Book.class, true);
  }

  @Test
  public void shouldIndexInnerObject() {
    // given
    String id = randomAlphanumeric(5);
    Book book = new Book();
    book.setId(id);
    book.setName("xyz");
    Author author = new Author();
    author.setId("1");
    author.setName("ABC");
    book.setAuthor(author);
    // when
    bookRepository.save(book);
    // then
    assertThat(bookRepository.findOne(id), is(notNullValue()));
  }
}
TOP

Related Classes of org.springframework.data.elasticsearch.InnerObjectTests

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.