automated build configuration is on its way
[taxeditor.git] / taxeditor-editor / src / test / java / eu / etaxonomy / taxeditor / editor / name / operation / DeleteSynonymOperationTest.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.taxon.Synonym;
20 import eu.etaxonomy.cdm.model.taxon.SynonymRelationshipType;
21 import eu.etaxonomy.cdm.model.taxon.Taxon;
22 import eu.etaxonomy.taxeditor.editor.name.operation.DeleteSynonymOperation;
23 import eu.etaxonomy.taxeditor.store.operations.AbstractTaxeditorOperationTest;
24
25 /**
26 * @author n.hoffmann
27 * @created 08.04.2009
28 * @version 1.0
29 */
30 public class DeleteSynonymOperationTest extends AbstractTaxeditorOperationTest{
31 private static final Logger logger = Logger
32 .getLogger(DeleteSynonymOperationTest.class);
33
34 private static Synonym synonym;
35
36 private static SynonymRelationshipType synonymRelationshipType;
37
38 /**
39 * @throws java.lang.Exception
40 */
41 @BeforeClass
42 public static void setUpBeforeClass() throws Exception {
43 taxon = Taxon.NewInstance(null, null);
44 synonym = Synonym.NewInstance(null, null);
45 synonymRelationshipType = SynonymRelationshipType.SYNONYM_OF();
46
47 taxon.addSynonym(synonym, synonymRelationshipType);
48
49 operation = new DeleteSynonymOperation("", undoContext, taxon, synonym, postOperation);
50 }
51
52 /**
53 * Test method for {@link eu.etaxonomy.taxeditor.editor.name.operation.DeleteSynonymOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
54 * @throws ExecutionException
55 */
56 @Test
57 public void testExecuteIProgressMonitorIAdaptable() throws ExecutionException {
58 operation.execute(monitor, info);
59
60 Assert.assertTrue(taxon.getSynonyms().size() == 0);
61 }
62
63 /**
64 * Test method for {@link eu.etaxonomy.taxeditor.editor.name.operation.DeleteSynonymOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
65 * @throws ExecutionException
66 */
67 @Test
68 public void testUndoIProgressMonitorIAdaptable() throws ExecutionException {
69 operation.undo(monitor, info);
70
71 Assert.assertTrue(taxon.getSynonyms().size() > 0);
72 Assert.assertEquals(synonym, taxon.getSynonyms().toArray(new Synonym[0])[0]);
73 }
74
75 /**
76 * Test method for {@link eu.etaxonomy.taxeditor.editor.name.operation.DeleteSynonymOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
77 * @throws ExecutionException
78 */
79 @Test
80 public void testRedoIProgressMonitorIAdaptable() throws ExecutionException {
81 operation.redo(monitor, info);
82
83 Assert.assertTrue(taxon.getSynonyms().size() == 0);
84 }
85 }