blob: 0ee2085f36157e723cca37ac0686e47e1a2776f0 [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.lenya.notification;
import org.apache.lenya.ac.Identifiable;
import org.apache.lenya.ac.User;
import org.apache.lenya.cms.observation.RepositoryEvent;
import org.apache.lenya.cms.observation.RepositoryEventFactory;
import org.apache.lenya.cms.repository.Session;
import org.apache.lenya.inbox.Inbox;
/**
* Notification test.
*/
public class NotificationTest extends AbstractNotificationTest {
protected static final String SUBJECT = "hello";
/**
* The test.
* @throws Exception
*/
public void testNotification() throws Exception {
login("lenya");
Session session = getFactory().getSession();
User lenya = getAccreditableManager().getUserManager().getUser("lenya");
User alice = getAccreditableManager().getUserManager().getUser("alice");
Identifiable[] recipients = { alice };
Message message = new Message(SUBJECT, new String[0], "body", new String[0], lenya,
recipients);
NotificationEventDescriptor descr = new NotificationEventDescriptor(message);
RepositoryEvent event = RepositoryEventFactory.createEvent(getManager(), session,
getLogger(), descr);
session.enqueueEvent(event);
Inbox inbox = getInbox(alice);
cleanUp(inbox, SUBJECT);
assertFalse(containsMessage(inbox, SUBJECT));
session.commit();
Thread.sleep(100);
assertTrue(containsMessage(inbox, SUBJECT));
cleanUp(inbox, SUBJECT);
}
}