| // Copyright (C) 2019 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.gerritforge.gerrit.eventbroker; |
| |
| import static com.google.common.truth.Truth.assertThat; |
| |
| import com.google.gerrit.server.events.Event; |
| import com.google.gerrit.server.events.EventGsonProvider; |
| import com.google.gson.Gson; |
| import java.util.UUID; |
| import org.junit.Before; |
| import org.junit.Test; |
| |
| public class EventDeserializerTest { |
| private EventDeserializer deserializer; |
| |
| @Before |
| public void setUp() { |
| final Gson gson = new EventGsonProvider().get(); |
| deserializer = new EventDeserializer(gson); |
| } |
| |
| @Test |
| public void eventDeserializerShouldParseEventMessage() { |
| final UUID eventId = UUID.randomUUID(); |
| final String eventType = "event-type"; |
| final String sourceInstanceId = UUID.randomUUID().toString(); |
| final long eventCreatedOn = 10L; |
| final String eventJson = |
| String.format( |
| "{ " |
| + "\"header\": { \"eventId\": \"%s\", \"eventType\": \"%s\", \"sourceInstanceId\": \"%s\", \"eventCreatedOn\": %d }," |
| + "\"body\": { \"type\": \"project-created\" }" |
| + "}", |
| eventId, eventType, sourceInstanceId, eventCreatedOn); |
| final Event event = deserializer.deserialize(eventJson); |
| |
| assertThat(event.instanceId).isEqualTo(sourceInstanceId); |
| } |
| |
| @Test |
| public void eventDeserializerShouldParseEvent() { |
| final String eventJson = "{ \"type\": \"project-created\", \"instanceId\":\"instance-id\" }"; |
| final Event event = deserializer.deserialize(eventJson); |
| |
| assertThat(event.instanceId).isEqualTo("instance-id"); |
| } |
| |
| @Test |
| public void eventDeserializerShouldParseEventWithoutInstanceId() { |
| final String eventJson = "{ \"type\": \"project-created\" }"; |
| final Event event = deserializer.deserialize(eventJson); |
| |
| assertThat(event.instanceId).isNull(); |
| } |
| |
| @Test |
| public void eventDeserializerShouldParseEventWhenInstanceIdIsEmpty() { |
| final String eventJson = "{ \"type\": \"project-created\", \"instanceId\":\"\" }"; |
| final Event event = deserializer.deserialize(eventJson); |
| |
| assertThat(event.instanceId).isEmpty(); |
| } |
| |
| @Test |
| public void eventDeserializerShouldParseEventWithHeaderAndBodyProjectName() { |
| final String eventJson = |
| "{\"projectName\":\"header_body_parser_project\",\"type\":\"project-created\", \"instanceId\":\"instance-id\"}"; |
| final Event event = deserializer.deserialize(eventJson); |
| |
| assertThat(event.instanceId).isEqualTo("instance-id"); |
| } |
| |
| @Test(expected = RuntimeException.class) |
| public void eventDeserializerShouldFailForInvalidJson() { |
| deserializer.deserialize("this is not a JSON string"); |
| } |
| |
| @Test(expected = RuntimeException.class) |
| public void eventDeserializerShouldFailForInvalidObjectButValidJSON() { |
| deserializer.deserialize("{}"); |
| } |
| } |