Merge branch 'release/4.4.0'
[taxeditor.git] / eu.etaxonomy.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.api.service.config.SynonymDeletionConfigurator;
20 import eu.etaxonomy.cdm.model.taxon.Synonym;
21 import eu.etaxonomy.cdm.model.taxon.SynonymType;
22 import eu.etaxonomy.cdm.model.taxon.Taxon;
23 import eu.etaxonomy.taxeditor.store.operations.AbstractTaxeditorOperationTestBase;
24
25 /**
26 * @author n.hoffmann
27 * @created 08.04.2009
28 */
29 public class DeleteSynonymOperationTest extends AbstractTaxeditorOperationTestBase{
30 @SuppressWarnings("unused")
31 private static final Logger logger = Logger
32 .getLogger(DeleteSynonymOperationTest.class);
33
34 private static Synonym synonym;
35
36 private static SynonymType synonymType;
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 synonymType = SynonymType.SYNONYM_OF();
46
47 taxon.addSynonym(synonym, synonymType);
48
49 operation = new DeleteSynonymOperation("", undoContext, new SynonymDeletionConfigurator(), null, taxon,synonym, postOperation, null, null);
50
51 }
52
53 /**
54 * Test method for {@link eu.etaxonomy.taxeditor.editor.name.operation.DeleteSynonymOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
55 * @throws ExecutionException
56 */
57 @Test
58 public void testExecuteIProgressMonitorIAdaptable() throws ExecutionException {
59 operation.execute(monitor, info);
60
61 Assert.assertTrue(taxon.getSynonyms().size() == 0);
62 }
63
64 /**
65 * Test method for {@link eu.etaxonomy.taxeditor.editor.name.operation.DeleteSynonymOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)}.
66 * @throws ExecutionException
67 */
68 @Test
69 public void testUndoIProgressMonitorIAdaptable() throws ExecutionException {
70 operation.undo(monitor, info);
71
72 Assert.assertTrue(taxon.getSynonyms().size() > 0);
73 Assert.assertEquals(synonym, taxon.getSynonyms().toArray(new Synonym[0])[0]);
74 }
75
76 /**
77 * Test method for {@link eu.etaxonomy.taxeditor.editor.name.operation.DeleteSynonymOperation#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.getSynonyms().size() == 0);
85 }
86 }