package org.killbill.billing.beatrix.extbus;
import java.util.UUID;
import org.killbill.billing.notification.plugin.api.ExtBusEvent;
import org.killbill.billing.notification.plugin.api.ExtBusEventType;
import org.testng.Assert;
import org.testng.annotations.Test;
import org.killbill.billing.ObjectType;
import org.killbill.billing.beatrix.BeatrixTestSuite;
import org.killbill.billing.util.jackson.ObjectMapper;
public class TestEventJson extends BeatrixTestSuite {
private final ObjectMapper mapper = new ObjectMapper();
@Test(groups = "fast")
public void testBusExternalEvent() throws Exception {
final UUID objectId = UUID.randomUUID();
final UUID accountId = UUID.randomUUID();
final UUID tenantId = UUID.randomUUID();
final ObjectType objectType = ObjectType.ACCOUNT;
final ExtBusEventType extBusEventType = ExtBusEventType.ACCOUNT_CREATION;
final DefaultBusExternalEvent e = new DefaultBusExternalEvent(objectId, objectType, extBusEventType, accountId, tenantId, null, 1L, 2L, UUID.randomUUID());
final String json = mapper.writeValueAsString(e);
final Class<?> claz = Class.forName(DefaultBusExternalEvent.class.getName());
final ExtBusEvent obj = (ExtBusEvent) mapper.readValue(json, claz);
Assert.assertEquals(obj.getAccountId(), accountId);
Assert.assertEquals(obj.getObjectId(), objectId);
Assert.assertEquals(obj.getTenantId(), tenantId);
Assert.assertEquals(obj.getObjectType(), objectType);
Assert.assertEquals(obj.getEventType(), extBusEventType);
}
@Test(groups = "fast")
public void testBusExternalEventWithMissingMetadata() throws Exception {
final String jsonWithMetadata = "{\"objectId\":\"273ff2ed-5442-4d10-971f-3cc2414fe33b\",\"accountId\":\"c3b5b220-aaa1-406e-abd0-e8448b140082\",\"tenantId\":\"6962cf97-5fc2-4ef6-9099-3806acdb134d\",\"objectType\":\"ACCOUNT\",\"eventType\":\"ACCOUNT_CREATION\",\"metaData\":null}";
final String jsonWithoutMetadata = "{\"objectId\":\"273ff2ed-5442-4d10-971f-3cc2414fe33b\",\"accountId\":\"c3b5b220-aaa1-406e-abd0-e8448b140082\",\"tenantId\":\"6962cf97-5fc2-4ef6-9099-3806acdb134d\",\"objectType\":\"ACCOUNT\",\"eventType\":\"ACCOUNT_CREATION\"}";
final Class<?> claz = Class.forName(DefaultBusExternalEvent.class.getName());
final ExtBusEvent obj = (ExtBusEvent) mapper.readValue(jsonWithoutMetadata, claz);
Assert.assertTrue(obj.getObjectId().equals(UUID.fromString("273ff2ed-5442-4d10-971f-3cc2414fe33b")));
Assert.assertNull(obj.getMetaData());
}
}