- extracted super class from AbstractPostOperation (same name)
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / test / java / eu / etaxonomy / taxeditor / editor / name / operation / DeleteConceptRelationOperationTest.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.editor.name.operation;
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.ICdmBase;
20 import eu.etaxonomy.cdm.model.taxon.Taxon;
21 import eu.etaxonomy.cdm.model.taxon.TaxonRelationshipType;
22 import eu.etaxonomy.taxeditor.store.operations.AbstractTaxeditorOperationTestBase;
23
24 /**
25 * @author n.hoffmann
26 * @created 08.04.2009
27 * @version 1.0
28 */
29 public class DeleteConceptRelationOperationTest extends AbstractTaxeditorOperationTestBase{
30 private static final Logger logger = Logger
31 .getLogger(DeleteConceptRelationOperationTest.class);
32
33 private static TaxonRelationshipType relationshipType;
34
35 private static Taxon relatedTaxon;
36
37 /**
38 * @throws java.lang.Exception
39 */
40 @BeforeClass
41 public static void setUpBeforeClass() throws Exception {
42
43 taxon = Taxon.NewInstance(null, null);
44 relatedTaxon = Taxon.NewInstance(null, null);
45 relationshipType = TaxonRelationshipType.CONTRADICTION();
46
47 taxon.addTaxonRelation(relatedTaxon, relationshipType, null, null);
48
49 Assert.assertTrue(taxon.getTaxonRelations().size() > 0);
50
51 // operation = new DeleteConceptRelationOperation("", undoContext, taxon, relatedTaxon, postOperation);
52 }
53
54 /**
55 * Test method for {@link eu.etaxonomy.taxeditor.editor.view.concept.operation.DeleteConceptRelationOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
56 * @throws ExecutionException
57 */
58 @Test
59 public void testExecuteIProgressMonitorIAdaptable() throws ExecutionException {
60 operation.execute(monitor, info);
61
62 Assert.assertTrue(taxon.getTaxonRelations().size() == 0);
63 }
64
65 /**
66 * Test method for {@link eu.etaxonomy.taxeditor.editor.view.concept.operation.DeleteConceptRelationOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
67 * @throws ExecutionException
68 */
69 @Test
70 public void testUndoIProgressMonitorIAdaptable() throws ExecutionException {
71 operation.undo(monitor, info);
72
73 Assert.assertTrue(taxon.getTaxonRelations().size() > 0);
74 }
75
76 /**
77 * Test method for {@link eu.etaxonomy.taxeditor.editor.view.concept.operation.DeleteConceptRelationOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
78 * @throws ExecutionException
79 */
80 @Test
81 public void testRedoIProgressMonitorIAdaptable() throws ExecutionException {
82 operation.redo(monitor, info);
83
84 Assert.assertTrue(taxon.getTaxonRelations().size() == 0);
85 }
86
87 /**
88 * Test method for {@link eu.etaxonomy.taxeditor.operation.AbstractPostTaxonOperation#postExecute(ICdmBase)}.
89 */
90 @Test
91 public void testPostExecute() {
92 // TODO there is not post operation functionality for this class
93 // at the moment. Implement test when there is.
94 logger.warn("No post operation functionality for this class");
95 }
96 }