Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0db8d5af9894297955fb27f1bcf3527c5ec0952b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/*******************************************************************************
 * Copyright (c) 2011 Anton Gorenkov
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Anton Gorenkov - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.testsrunner.internal.model;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Stack;

import org.eclipse.cdt.testsrunner.model.IModelVisitor;
import org.eclipse.cdt.testsrunner.model.ITestMessage;
import org.eclipse.cdt.testsrunner.model.ITestModelAccessor;
import org.eclipse.cdt.testsrunner.model.ITestModelUpdater;
import org.eclipse.cdt.testsrunner.model.ITestingSessionListener;
import org.eclipse.cdt.testsrunner.model.ITestCase;
import org.eclipse.cdt.testsrunner.model.ITestItem;
import org.eclipse.cdt.testsrunner.model.ITestItem.Status;
import org.eclipse.cdt.testsrunner.model.ITestMessage.Level;
import org.eclipse.cdt.testsrunner.model.ITestSuite;

/**
 * Manages the testing model (creates, fill and update it) and notifies the
 * listeners about updates.
 */
public class TestModelManager implements ITestModelUpdater, ITestModelAccessor {

	/**
	 * Name of the root test suite.
	 * 
	 * @note Root test suite is invisible (only its children are visible), so
	 * the name is not important.
	 */
	public static final String ROOT_TEST_SUITE_NAME = "<root>"; //$NON-NLS-1$
	
	/** Stack of the currently entered (and not existed) test suites. */
	private Stack<TestSuite> testSuitesStack = new Stack<TestSuite>();

	/**
	 * Currently running test case. There are no nested test cases, so the
	 * collection is not necessary.
	 */
	private TestCase currentTestCase = null;
	
	/**
	 * The mapping of test suite object to the index on which it was inserted to
	 * the parent.
	 * 
	 * @note Test suites presence in this map means that test suite was visited
	 * during the testing process (not visited test suites are removed when
	 * testing is finished cause they are considered as renamed or removed).
	 * @note Test suite insert position is important for insertion algorithm.
	 */
	private Map<TestItem, Integer> testSuitesIndex = new HashMap<TestItem, Integer>();
	
	/** Listeners collection. */
	private List<ITestingSessionListener> listeners = new ArrayList<ITestingSessionListener>();
	
	/** Flag stores whether test execution time should be measured for the session. */
	private boolean timeMeasurement = false;

	/** Stores the test case start time or 0 there is no currently running test case. */
	private long testCaseStartTime = 0;
	
	/** Instance of the insertion algorithm for test suites. */
	private TestSuiteInserter testSuiteInserter = new TestSuiteInserter();

	/** Instance of the insertion algorithm for test cases. */
	private TestCaseInserter testCaseInserter = new TestCaseInserter();

	
	/**
	 * Builds current tests hierarchy from the other one (copies only necessary
	 * information).
	 */
	private class HierarchyCopier implements IModelVisitor {

		@Override
		public void visit(ITestSuite testSuite) {
			// Do not copy root test suite
			if (testSuite.getParent() != null) {
				enterTestSuite(testSuite.getName());
			}
		}

		@Override
		public void leave(ITestSuite testSuite) {
			// Do not copy root test suite
			if (testSuite.getParent() != null) {
				exitTestSuite();
			}
		}

		@Override
		public void visit(ITestCase testCase) {
			enterTestCase(testCase.getName());
			setTestStatus(TestCase.Status.NotRun);
		}

		@Override
		public void leave(ITestCase testCase) {
			exitTestCase();
		}

		@Override
		public void visit(ITestMessage testMessage) {}
		@Override
		public void leave(ITestMessage testMessage) {}
	}
	

	/**
	 * Utility class: generalization of insertion algorithm for test suites and
	 * test cases.
	 * 
	 * <p>
	 * The algorithm tries to find the place where the new item should be
	 * inserted at. If the item with such name does not exist in the current top
	 * most test suite, it should be inserted at the current position. If it
	 * already exists (at the next or previous position) then it should be moved
	 * from there to the current one.
	 * </p>
	 * 
	 * @param <E> test item type (test suite or test case)
	 */
	private abstract class TestItemInserter<E extends TestItem> {

		/**
		 * Check whether item has the required type (test suite for suites inserter and
		 * test case for cases one).
		 * 
		 * @param item test item to check
		 * @return whether item has the required type
		 */
		protected abstract boolean isRequiredTestItemType(TestItem item);
		
		/**
		 * Creates a new item type with the specified name and parent (test
		 * suite for suites inserter and test case for cases one).
		 * 
		 * @param name name of the new test item
		 * @param parent parent for the new test item
		 * @return new test item
		 */
		protected abstract E createTestItem(String name, TestSuite parent);
		
		/**
		 * Save new test item in the tracking structures (suite in stack, case
		 * in current variable). Additional operations (e.g. listeners
		 * notification about item entering) can be done too.
		 * 
		 * @param item new test item
		 */
		protected abstract void addNewTestItem(E item);

		
		/**
		 * Returns the casted test item if it matches by name and type or
		 * <code>null</code> if it doesn't.
		 * 
		 * @param item test item to check
		 * @param name test item name
		 * @return casted test item or null
		 */
		@SuppressWarnings("unchecked")
		private E checkTestItem(TestItem item, String name) {
			return (isRequiredTestItemType(item) && item.getName().equals(name)) ? (E)item : null;
		}
		
		/**
		 * Returns the last insert index for the specified test suite. Returns 0
		 * if test suite was not inserted yet.
		 * 
		 * @param testSuite test suite to look up
		 * @return insert index or 0
		 */
		private int getLastInsertIndex(TestSuite testSuite) {
			Integer intLastInsertIndex = testSuitesIndex.get(testSuite);
			return intLastInsertIndex != null ? intLastInsertIndex : 0;
		}
		
		/**
		 * Notifies the listeners about children update of the specified test
		 * suite.
		 * 
		 * @param suite updated test suite
		 */
		private void notifyAboutChildrenUpdate(ITestSuite suite) {
			for (ITestingSessionListener listener : getListenersCopy()) {
				listener.childrenUpdate(suite);
			}
		}
		
		/**
		 * Inserts the test item by the name.
		 * 
		 * @param name test item name
		 */
		public void insert(String name) {
			TestSuite currTestSuite = testSuitesStack.peek();
			int lastInsertIndex = getLastInsertIndex(currTestSuite);
			List<TestItem> children = currTestSuite.getChildrenList();
			E newTestItem = null;

			// Optimization: Check whether we already pointing to the test suite with required name
			try {
				newTestItem = checkTestItem(children.get(lastInsertIndex), name);
			} catch (IndexOutOfBoundsException e) {}
			if (newTestItem != null) {
				testSuitesIndex.put(currTestSuite, lastInsertIndex+1);
			}
			
			// Check whether the suite with required name was later in the hierarchy
			if (newTestItem == null) {
				for (int childIndex = lastInsertIndex; childIndex < children.size(); childIndex++) {
					newTestItem = checkTestItem(children.get(childIndex), name);
					if (newTestItem != null) {
						testSuitesIndex.put(currTestSuite, childIndex);
						break;
					}
				}
			}
			
			// Search in previous
			if (newTestItem == null) {
				for (int childIndex = 0; childIndex < lastInsertIndex; childIndex++) {
					newTestItem = checkTestItem(children.get(childIndex), name);
					if (newTestItem != null) {
						children.add(lastInsertIndex, children.remove(childIndex));
						notifyAboutChildrenUpdate(currTestSuite);
						break;
					}
				}
			}
			
			// Add new
			if (newTestItem == null) {
				newTestItem = createTestItem(name, currTestSuite);
				children.add(lastInsertIndex, newTestItem);
				testSuitesIndex.put(currTestSuite, lastInsertIndex+1);
				notifyAboutChildrenUpdate(currTestSuite);
			}
			if (!testSuitesIndex.containsKey(newTestItem)) {
				testSuitesIndex.put(newTestItem, 0);
			}
			addNewTestItem(newTestItem);
		}
		
	}
	

	/**
	 * Utility class: insertion algorithm specialization for test suites.
	 */
	private class TestSuiteInserter extends TestItemInserter<TestSuite> {
		
		@Override
		protected boolean isRequiredTestItemType(TestItem item) {
			return (item instanceof TestSuite);
		}
		
		@Override
		protected TestSuite createTestItem(String name, TestSuite parent) {
			return new TestSuite(name, parent);
		}
		
		@Override
		protected void addNewTestItem(TestSuite testSuite) {
			testSuitesStack.push(testSuite);

			// Notify listeners
			for (ITestingSessionListener listener : getListenersCopy()) {
				listener.enterTestSuite(testSuite);
			}
		}
	}


	/**
	 * Utility class: insertion algorithm specialization for test cases.
	 */
	private class TestCaseInserter extends TestItemInserter<TestCase> {
		
		@Override
		protected boolean isRequiredTestItemType(TestItem item) {
			return (item instanceof TestCase);
		}
		
		@Override
		protected TestCase createTestItem(String name, TestSuite parent) {
			return new TestCase(name, parent);
		}
		
		@Override
		protected void addNewTestItem(TestCase testCase) {
			currentTestCase = testCase;
			testCase.setStatus(ITestItem.Status.Skipped);
			
			// Notify listeners
			for (ITestingSessionListener listener : getListenersCopy()) {
				listener.enterTestCase(testCase);
			}
		}
	}

	
	public TestModelManager(ITestSuite previousTestsHierarchy, boolean timeMeasurement) {
		testSuitesStack.push(new TestSuite(ROOT_TEST_SUITE_NAME, null));
		if (previousTestsHierarchy != null) {
			// Copy tests hierarchy
			this.timeMeasurement = false;
			previousTestsHierarchy.visit(new HierarchyCopier());
		}
		this.timeMeasurement = timeMeasurement;
		this.testSuitesIndex.clear();
	}

	/**
	 * Notifies the listeners that testing was started.
	 */
	public void testingStarted() {
		// Notify listeners
		for (ITestingSessionListener listener : getListenersCopy()) {
			listener.testingStarted();
		}
	}

	/**
	 * Removes not visited test items and notifies the listeners that testing
	 * was finished.
	 */
	public void testingFinished() {
		// Remove all NotRun-tests and not used test suites (probably they were removed from test module)
		getRootSuite().visit(new IModelVisitor() {
			
			@Override
			public void visit(ITestSuite testSuite) {
				List<TestItem> suiteChildren = ((TestSuite)testSuite).getChildrenList();
				for (Iterator<TestItem> it = suiteChildren.iterator(); it.hasNext();) {
					TestItem item = it.next();
					if ((item instanceof ITestSuite && !testSuitesIndex.containsKey(item)) ||
						(item instanceof ITestCase && item.getStatus() == ITestItem.Status.NotRun)) {
						it.remove();
					}
				}
			}

			@Override
			public void visit(ITestMessage testMessage) {}
			@Override
			public void visit(ITestCase testCase) {}
			@Override
			public void leave(ITestSuite testSuite) {}
			@Override
			public void leave(ITestCase testCase) {}
			@Override
			public void leave(ITestMessage testMessage) {}
		});
		testSuitesIndex.clear();
		
		// Notify listeners
		for (ITestingSessionListener listener : getListenersCopy()) {
			listener.testingFinished();
		}
	}
	
	@Override
	public void enterTestSuite(String name) {
		testSuiteInserter.insert(name);
	}

	@Override
	public void exitTestSuite() {
		exitTestCase();
		TestSuite testSuite = testSuitesStack.pop();
		// Notify listeners
		for (ITestingSessionListener listener : getListenersCopy()) {
			listener.exitTestSuite(testSuite);
		}
	}

	@Override
	public void enterTestCase(String name) {
		testCaseInserter.insert(name);
		if (timeMeasurement) {
			testCaseStartTime = System.currentTimeMillis();
		}
	}


	@Override
	public void setTestStatus(Status status) {
		currentTestCase.setStatus(status);
	}

	@Override
	public void setTestingTime(int testingTime) {
		currentTestCase.setTestingTime(testingTime);
	}

	@Override
	public void exitTestCase() {
		if (currentTestCase != null) {
			// Set test execution time (if time measurement is turned on)
			if (timeMeasurement) {
				int testingTime = (int)(System.currentTimeMillis()-testCaseStartTime);
				currentTestCase.setTestingTime(currentTestCase.getTestingTime()+testingTime);
				testCaseStartTime = 0;
			}
			TestCase testCase = currentTestCase;
			currentTestCase = null;
			// Notify listeners
			for (ITestingSessionListener listener : getListenersCopy()) {
				listener.exitTestCase(testCase);
			}
		}
	}

	@Override
	public void addTestMessage(String file, int line, Level level, String text) {
		TestLocation location = (file == null || file.isEmpty() || line <= 0) ? null : new TestLocation(file, line);
		currentTestCase.addTestMessage(new TestMessage(location, level, text));
	}
	
	@Override
	public ITestSuite currentTestSuite() {
		return testSuitesStack.peek();
	}


	@Override
	public ITestCase currentTestCase() {
		return currentTestCase;
	}

	@Override
	public boolean isCurrentlyRunning(ITestItem item) {
		return (item == currentTestCase && item != null) || testSuitesStack.contains(item);
	}
	
	@Override
	public TestSuite getRootSuite() {
		return testSuitesStack.firstElement();
	}

	@Override
	public void addChangesListener(ITestingSessionListener listener) {
		synchronized (listeners) {
			listeners.add(listener);
		}
	}

	@Override
	public void removeChangesListener(ITestingSessionListener listener) {
		synchronized (listeners) {
			listeners.remove(listener);
		}
	}
	
	/**
	 * Copies listeners before notifying them to avoid dead-locks.
	 * 
	 * @return listeners collection copy
	 */
	private ITestingSessionListener[] getListenersCopy() {
		synchronized (listeners) {
			return listeners.toArray(new ITestingSessionListener[listeners.size()]);
		}		
	}
	
}

Back to the top