refactored folder structure
[taxeditor.git] / taxeditor-store / src / test / java / eu / etaxonomy / taxeditor / store / operations / DeleteMisapplicationOperationTest.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.store.operations;
12
13 import org.apache.log4j.Logger;
14 import org.eclipse.core.commands.ExecutionException;
15 import org.junit.Assert;
16 import org.junit.BeforeClass;
17 import org.junit.Test;
18
19 import eu.etaxonomy.cdm.model.common.CdmBase;
20 import eu.etaxonomy.cdm.model.taxon.Taxon;
21 import eu.etaxonomy.taxeditor.operations.DeleteMisapplicationOperation;
22
23 /**
24 * @author n.hoffmann
25 * @created 08.04.2009
26 * @version 1.0
27 */
28 public class DeleteMisapplicationOperationTest extends AbstractTaxeditorOperationTest{
29 private static final Logger logger = Logger
30 .getLogger(DeleteMisapplicationOperationTest.class);
31
32 private static Taxon taxon;
33
34 private static Taxon misapplication;
35
36 /**
37 * @throws java.lang.Exception
38 */
39 @BeforeClass
40 public static void setUpBeforeClass() throws Exception {
41
42 taxon = Taxon.NewInstance(null, null);
43 misapplication = Taxon.NewInstance(null, null);
44
45 taxon.addMisappliedName(misapplication, null, null);
46
47 operation = new DeleteMisapplicationOperation("", undoContext, taxon, misapplication, postOperation);
48 }
49
50 /**
51 * Test method for {@link eu.etaxonomy.taxeditor.operations.DeleteMisapplicationOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
52 * @throws ExecutionException
53 */
54 @Test
55 public void testExecuteIProgressMonitorIAdaptable() throws ExecutionException {
56 operation.execute(monitor, info);
57
58 Assert.assertTrue(taxon.getMisappliedNames().size() == 0);
59 }
60
61 /**
62 * Test method for {@link eu.etaxonomy.taxeditor.operations.DeleteMisapplicationOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
63 * @throws ExecutionException
64 */
65 @Test
66 public void testUndoIProgressMonitorIAdaptable() throws ExecutionException {
67 operation.undo(monitor, info);
68
69 Assert.assertEquals(misapplication, taxon.getMisappliedNames().toArray(new Taxon[0])[0]);
70 }
71
72 /**
73 * Test method for {@link eu.etaxonomy.taxeditor.operations.DeleteMisapplicationOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
74 * @throws ExecutionException
75 */
76 @Test
77 public void testRedoIProgressMonitorIAdaptable() throws ExecutionException {
78 operation.redo(monitor, info);
79
80 Assert.assertTrue(taxon.getMisappliedNames().size() == 0);
81 }
82
83 /**
84 * Test method for {@link eu.etaxonomy.taxeditor.operations.AbstractPostOperation#postExecute(CdmBase)}.
85 */
86 @Test
87 public void testPostExecute() {
88 // TODO there is not post operation functionality for this class
89 // at the moment. Implement test when there is.
90 logger.warn("No post operation functionality for this class");
91 }
92 }