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 * @author Erik Brakkee
43 public class EventTracker<Event> {
45 private static final Log LOG = LogFactory.getLog(EventTracker.class);
48 * Map of Thread object to a list of events.
50 private Map<Thread, List<Event>> _events;
53 * Constructs the event tracker.
56 public EventTracker() {
61 _events = new HashMap<Thread, List<Event>>();
65 * Called by a thread to inform that an event has occurred.
68 * Event that was sent.
70 public synchronized void eventOccurred(Event aEvent) {
71 LOG.info("Event '" + aEvent + "' sent.");
72 Thread current = Thread.currentThread();
73 List<Event> events = _events.get(current);
75 events = new ArrayList<Event>();
76 _events.put(current, events);
82 * Checks if a specific event has happened in a specific thread.
88 * @return Whether or not the event was sent.
90 public synchronized boolean isEventSent(Thread aThread, Event aEvent) {
91 List<Event> events = _events.get(aThread);
95 return events.contains(aEvent);
99 * Gets the events for a thread in the order they were sent
102 * Thread to get events for.
103 * @return Events that were sent. A zero-sized array is returned if no
106 public synchronized List<Event> getEvents(Thread aThread) {
107 List<Event> events = _events.get(aThread);
108 if (events == null) {
109 events = Collections.emptyList();
111 return Collections.unmodifiableList(events);
115 * Gets the number of times an event was sent summed up
120 * @return Number of times it was reached.
122 public synchronized int getEventCount(Event aEvent) {
124 for (Thread thread : _events.keySet()) {
125 List<Event> events = _events.get(thread);
126 for (Event event : events) {
127 if (event.equals(aEvent)) {
136 * Gets the total event count over all threads.
139 public synchronized int getEventCount() {
141 for (Thread thread: _events.keySet()) {
142 count += _events.get(thread).size();