/* * Copyright 2017 TWO SIGMA OPEN SOURCE, LLC * * 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 com.twosigma.beaker.jvm.serialization; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.twosigma.beaker.jvm.object.SimpleLayoutManager; import org.assertj.core.api.Assertions; import org.junit.Test; public class SimpleLayoutManagerDeserializerTest { @Test public void deserialize_resultObjectHasBorderDisplayed() throws Exception { //given boolean borderDisplayed = true; ObjectMapper mapper = new ObjectMapper(); JsonNode actualObj = mapper.readTree( "{\"type\":\"SimpleLayoutManager\",\"borderDisplayed\":\"" + borderDisplayed + "\"}"); SimpleLayoutManagerDeserializer deserializer = new SimpleLayoutManagerDeserializer(new BasicObjectSerializer()); //when SimpleLayoutManager layoutManager = (SimpleLayoutManager) deserializer.deserialize(actualObj, mapper); //then Assertions.assertThat(layoutManager).isNotNull(); Assertions.assertThat(layoutManager.isBorderDisplayed()).isEqualTo(borderDisplayed); } }