Package org.springframework.data.elasticsearch.core

Source Code of org.springframework.data.elasticsearch.core.DefaultEntityMapperTests

/*
* Copyright 2013-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.core;

import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;

import java.io.IOException;

import org.junit.Before;
import org.junit.Test;
import org.springframework.data.elasticsearch.builder.CarBuilder;
import org.springframework.data.elasticsearch.entities.Car;

/**
* @author Artur Konczak
* @author Mohsin Husen
*/
public class DefaultEntityMapperTests {

  public static final String JSON_STRING = "{\"name\":\"Grat\",\"model\":\"Ford\"}";
  public static final String CAR_MODEL = "Ford";
  public static final String CAR_NAME = "Grat";
  DefaultEntityMapper entityMapper;

  @Before
  public void init() {
    entityMapper = new DefaultEntityMapper();
  }

  @Test
  public void shouldMapObjectToJsonString() throws IOException {
    //Given

    //When
    String jsonResult = entityMapper.mapToString(new CarBuilder().model(CAR_MODEL).name(CAR_NAME).build());

    //Then
    assertThat(jsonResult, is(JSON_STRING));
  }

  @Test
  public void shouldMapJsonStringToObject() throws IOException {
    //Given

    //When
    Car result = entityMapper.mapToObject(JSON_STRING, Car.class);

    //Then
    assertThat(result.getName(), is(CAR_NAME));
    assertThat(result.getModel(), is(CAR_MODEL));
  }
}
TOP

Related Classes of org.springframework.data.elasticsearch.core.DefaultEntityMapperTests

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.