blob: 5c9e02d0c14461a31323b3738748cebdfecc79fc [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.unomi.itests.graphql;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.unomi.api.Event;
import org.apache.unomi.api.Profile;
import org.apache.unomi.api.services.DefinitionsService;
import org.apache.unomi.api.services.EventService;
import org.apache.unomi.persistence.spi.PersistenceService;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.ops4j.pax.exam.util.Filter;
import javax.inject.Inject;
import java.io.IOException;
import java.util.Date;
import java.util.List;
import java.util.Map;
public class GraphQLEventIT extends BaseGraphQLIT {
@Inject
@Filter(timeout = 600000)
protected EventService eventService;
@Inject
@Filter(timeout = 600000)
protected PersistenceService persistenceService;
@Inject
@Filter(timeout = 600000)
protected DefinitionsService definitionsService;
private final String profileID = "profile-1";
private final String eventID = "event-1";
private Profile profile;
@Before
public void setUp() throws InterruptedException {
profile = new Profile(profileID);
persistenceService.save(profile);
removeItems(Event.class);
}
@Test
public void testGetEvent_notExists() throws IOException {
try (CloseableHttpResponse response = post("graphql/event/get-event-not-exists.json")) {
final ResponseContext context = ResponseContext.parse(response.getEntity());
Assert.assertNull(context.getValue("data.cdp.getEvent"));
}
}
@Test
public void testGetEvent() throws IOException, InterruptedException {
final Event event = createEvent(eventID, profile);
refreshPersistence();
try (CloseableHttpResponse response = post("graphql/event/get-event.json")) {
final ResponseContext context = ResponseContext.parse(response.getEntity());
Assert.assertNotNull(context.getValue("data.cdp.getEvent"));
Assert.assertEquals(event.getItemId(), context.getValue("data.cdp.getEvent.id"));
Assert.assertEquals(event.getProfileId(), context.getValue("data.cdp.getEvent.cdp_profileID.id"));
}
}
@Test
public void testFindEvents() throws IOException, InterruptedException {
createEvent(eventID, profile);
createEvent("event-2", profile);
final Profile profile2 = new Profile("profile-2");
createEvent("event-3", profile2);
refreshPersistence();
try (CloseableHttpResponse response = post("graphql/event/find-events.json")) {
final ResponseContext context = ResponseContext.parse(response.getEntity());
Assert.assertNotNull(context.getValue("data.cdp.findEvents"));
List<Map> edges = context.getValue("data.cdp.findEvents.edges");
Assert.assertEquals(1, edges.size());
Assert.assertEquals(profileID, context.getValue("data.cdp.findEvents.edges[0].node.cdp_profileID.id"));
Assert.assertEquals(eventID, context.getValue("data.cdp.findEvents.edges[0].node.id"));
}
}
@Test
public void testProcessEvents() throws IOException {
final Profile originalProfile = persistenceService.load(profileID, Profile.class);
Assert.assertNull(originalProfile.getProperty("firstName"));
Assert.assertNull(originalProfile.getProperty("lastName"));
try (CloseableHttpResponse response = post("graphql/event/process-events.json")) {
final ResponseContext context = ResponseContext.parse(response.getEntity());
Assert.assertEquals(Integer.valueOf(1), context.getValue("data.cdp.processEvents"));
final Profile updatedProfile = persistenceService.load(profileID, Profile.class);
Assert.assertEquals("Gigi", updatedProfile.getProperty("firstName"));
Assert.assertEquals("Bergkamp", updatedProfile.getProperty("lastName"));
}
}
private Event createEvent(final String eventID, final Profile profile) throws InterruptedException {
Event event = new Event(eventID, "profileUpdated", null, profile, "test", profile, null, new Date());
persistenceService.save(event);
return event;
}
}