2 * Copyright 2006 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.wamblee.test;
18 import java.util.ArrayList;
19 import java.util.Collections;
20 import java.util.HashMap;
21 import java.util.List;
24 import org.apache.commons.logging.Log;
25 import org.apache.commons.logging.LogFactory;
28 * Tracks the occurence of certain events in a test environment. Threads in a
29 * test environment tell the event tracker of the occurrence of certain events
30 * using {@link #eventOccurred(Event)}. Test code inspects the events sent by a
31 * thread using {@link #isEventSent(Thread, Event)}.
33 * A record is kept of every event which is sent. Therefore, the occurrence of a
34 * new event does not erase a previously sent event.
37 * Type of event sent from test code. Usually String will be
38 * sufficient. The event type must provide a sensible implementation
39 * of {@link java.lang.Object#equals(java.lang.Object)}.
41 public class EventTracker<Event> {
43 private static final Log LOG = LogFactory.getLog(EventTracker.class);
46 * Map of Thread object to a list of events.
48 private Map<Thread, List<Event>> _events;
51 * Constructs the event tracker.
54 public EventTracker() {
55 _events = new HashMap<Thread, List<Event>>();
59 * Called by a thread to inform that an event has occurred.
62 * Event that was sent.
64 public synchronized void eventOccurred(Event aEvent) {
65 LOG.info("Event '" + aEvent + "' sent.");
66 Thread current = Thread.currentThread();
67 List<Event> events = _events.get(current);
69 events = new ArrayList<Event>();
70 _events.put(current, events);
76 * Checks if a specific event has happened in a specific thread.
82 * @return Whether or not the event was sent.
84 public synchronized boolean isEventSent(Thread aThread, Event aEvent) {
85 List<Event> events = _events.get(aThread);
89 return events.contains(aEvent);
93 * Gets the events for a thread in the order they were sent
96 * Thread to get events for.
97 * @return Events that were sent. A zero-sized array is returned if no
100 public synchronized List<Event> getEvents(Thread aThread) {
101 List<Event> events = _events.get(aThread);
102 if (events == null) {
103 events = Collections.emptyList();
105 return Collections.unmodifiableList(events);
109 * Gets the number of times an event was sent summed up
114 * @return Number of times it was reached.
116 public synchronized int getEventCount(Event aEvent) {
118 for (Thread thread : _events.keySet()) {
119 List<Event> events = _events.get(thread);
120 for (Event event : events) {
121 if (event.equals(aEvent)) {