blob: 530baa86fd371f4c3234ca1b157f336db06c284b [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;
import org.apache.unomi.api.services.EventService;
import org.apache.unomi.api.services.ProfileService;
import org.apache.unomi.api.Event;
import org.apache.unomi.api.Profile;
import org.apache.unomi.api.conditions.Condition;
import org.apache.unomi.api.query.Query;
import org.apache.unomi.api.PartialList;
import org.junit.After;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.Assert;
import org.ops4j.pax.exam.junit.PaxExam;
import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
import org.ops4j.pax.exam.spi.reactors.PerSuite;
import org.ops4j.pax.exam.util.Filter;
import javax.inject.Inject;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.text.ParseException;
import org.junit.Assert;
/**
* An integration test for the event service
*/
@RunWith(PaxExam.class)
@ExamReactorStrategy(PerSuite.class)
public class EventServiceIT extends BaseIT {
private final static String TEST_PROFILE_ID = "test-profile-id";
@Inject @Filter(timeout = 600000)
protected EventService eventService;
@Inject
@Filter(timeout = 600000)
protected ProfileService profileService;
@After
public void tearDown() {
TestUtils.removeAllEvents(definitionsService, persistenceService);
TestUtils.removeAllSessions(definitionsService, persistenceService);
TestUtils.removeAllProfiles(definitionsService, persistenceService);
}
@Test
public void test_EventExistenceWithProfileId() throws InterruptedException{
String eventId = "test-event-id-" + System.currentTimeMillis();;
String profileId = "test-profile-id";
String eventType = "test-type";
Profile profile = new Profile(profileId);
Event event = new Event(eventId, eventType, null, profile, null, null, null, new Date());
profileService.save(profile);
eventService.send(event);
refreshPersistence();
Thread.sleep(2000);
boolean exist = eventService.hasEventAlreadyBeenRaised(event);
Assert.assertTrue(exist);
}
@Test
public void test_PastEventWithDateRange() throws InterruptedException, ParseException {
String eventId = "past-event-id" + System.currentTimeMillis();
String profileId = "past-event-profile-id" + System.currentTimeMillis();
String eventType = "past-event-with-date-range-type";
Profile profile = new Profile(profileId);
Date timestamp = null;
timestamp = new SimpleDateFormat("yyyy-MM-dd").parse("2000-06-30");
Event event = new Event(eventId, eventType, null, profile, null, null, null, timestamp);
profileService.save(profile);
eventService.send(event);
refreshPersistence();
Thread.sleep(2000);
Condition eventTypeCondition = new Condition(definitionsService.getConditionType("eventTypeCondition"));
eventTypeCondition.setParameter("eventTypeId",eventType);
Condition pastEventCondition = new Condition(definitionsService.getConditionType("pastEventCondition"));
pastEventCondition.setParameter("minimumEventCount", 1);
pastEventCondition.setParameter("fromDate","1999-01-15T07:00:00Z");
pastEventCondition.setParameter("toDate","2001-01-15T07:00:00Z");
pastEventCondition.setParameter("eventCondition",eventTypeCondition);
Query query = new Query();
query.setCondition(pastEventCondition);
PartialList<Profile> profiles = profileService.search(query, Profile.class);
Assert.assertEquals(1, profiles.getList().size());
Assert.assertEquals(profiles.getList().get(0).getItemId(), profileId);
}
@Test
public void test_PastEventNotInRange_NoProfilesShouldReturn() throws InterruptedException, ParseException{
String eventId = "past-event-id" + System.currentTimeMillis();
String profileId = "past-event-profile-id" + System.currentTimeMillis();
String eventType = "past-event-with-date-range-type";
Profile profile = new Profile(profileId);
Date timestamp = null;
timestamp = new SimpleDateFormat("yyyy-MM-dd").parse("2000-06-30");
Event event = new Event(eventId, eventType, null, profile, null, null, null, timestamp);
profileService.save(profile);
eventService.send(event);
refreshPersistence();
Thread.sleep(2000);
Condition eventTypeCondition = new Condition(definitionsService.getConditionType("eventTypeCondition"));
eventTypeCondition.setParameter("eventTypeId",eventType);
Condition pastEventCondition = new Condition(definitionsService.getConditionType("pastEventCondition"));
pastEventCondition.setParameter("minimumEventCount", 1);
pastEventCondition.setParameter("fromDate","2000-07-15T07:00:00Z");
pastEventCondition.setParameter("toDate","2001-01-15T07:00:00Z");
pastEventCondition.setParameter("eventCondition",eventTypeCondition);
Query query = new Query();
query.setCondition(pastEventCondition);
PartialList<Profile> profiles = profileService.search(query, Profile.class);
Assert.assertEquals(0, profiles.getList().size());
}
}