| // Copyright (C) 2018 The Android Open Source Project |
| // |
| // 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.google.gerrit.server.cache.serialize; |
| |
| import static com.google.common.truth.Truth.assertWithMessage; |
| import static com.google.gerrit.testing.GerritJUnit.assertThrows; |
| |
| import com.google.common.collect.ImmutableList; |
| import com.google.common.primitives.Bytes; |
| import com.google.protobuf.TextFormat; |
| import org.junit.Test; |
| |
| public class IntegerCacheSerializerTest { |
| @Test |
| public void serialize() throws Exception { |
| for (int i : |
| ImmutableList.of( |
| Integer.MIN_VALUE, |
| Integer.MIN_VALUE + 20, |
| -1, |
| 0, |
| 1, |
| Integer.MAX_VALUE - 20, |
| Integer.MAX_VALUE)) { |
| assertRoundTrip(i); |
| } |
| } |
| |
| @Test |
| public void deserializeInvalidValues() throws Exception { |
| assertDeserializeFails(null); |
| assertDeserializeFails( |
| Bytes.concat(IntegerCacheSerializer.INSTANCE.serialize(1), new byte[] {0, 0, 0, 0})); |
| } |
| |
| private static void assertRoundTrip(int i) throws Exception { |
| byte[] serialized = IntegerCacheSerializer.INSTANCE.serialize(i); |
| int result = IntegerCacheSerializer.INSTANCE.deserialize(serialized); |
| assertWithMessage("round-trip of %s via \"%s\"", i, TextFormat.escapeBytes(serialized)) |
| .that(result) |
| .isEqualTo(i); |
| } |
| |
| private static void assertDeserializeFails(byte[] in) { |
| assertThrows(RuntimeException.class, () -> IntegerCacheSerializer.INSTANCE.deserialize(in)); |
| } |
| } |