blob: 5ae74a73790be334af71a302823b5c560d7f2444 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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.apache.geode;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.io.IOException;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.apache.geode.internal.cache.EventID;
import org.apache.geode.internal.cache.tier.sockets.ClientProxyMembershipID;
import org.apache.geode.internal.serialization.ByteArrayDataInput;
import org.apache.geode.internal.util.BlobHelper;
import org.apache.geode.test.junit.categories.SerializationTest;
@Category({SerializationTest.class})
public class DataSerializerTest {
@Test
public void shouldBeMockable() throws Exception {
DataSerializer mockDataSerializer = mock(DataSerializer.class);
EventID mockEventID = mock(EventID.class);
ClientProxyMembershipID mockClientProxyMembershipID = mock(ClientProxyMembershipID.class);
when(mockDataSerializer.getEventId()).thenReturn(mockEventID);
when(mockDataSerializer.getContext()).thenReturn(mockClientProxyMembershipID);
mockDataSerializer.setEventId(mockEventID);
mockDataSerializer.setContext(mockClientProxyMembershipID);
verify(mockDataSerializer, times(1)).setEventId(mockEventID);
verify(mockDataSerializer, times(1)).setContext(mockClientProxyMembershipID);
assertThat(mockDataSerializer.getEventId()).isSameAs(mockEventID);
assertThat(mockDataSerializer.getContext()).isSameAs(mockClientProxyMembershipID);
}
@Test
public void readStringShouldReturnCanonicalEmptyString() throws IOException {
byte[] serializedEmptyStringBytes = BlobHelper.serializeToBlob("");
ByteArrayDataInput dataInput1 = new ByteArrayDataInput();
dataInput1.initialize(serializedEmptyStringBytes, null);
ByteArrayDataInput dataInput2 = new ByteArrayDataInput();
dataInput2.initialize(serializedEmptyStringBytes, null);
String firstRead = DataSerializer.readString(dataInput1);
String secondRead = DataSerializer.readString(dataInput2);
assertThat(secondRead).isSameAs(firstRead);
}
}