a34cb943841c64830c73f6556fdc1ae04a23c1ae
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / test / java / eu / etaxonomy / taxeditor / editor / name / operation / DeleteSynonymOperationTest.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor.editor.name.operation;
11
12 import org.apache.log4j.Logger;
13 import org.eclipse.core.commands.ExecutionException;
14 import org.junit.Assert;
15 import org.junit.BeforeClass;
16 import org.junit.Test;
17
18 import eu.etaxonomy.cdm.api.service.config.SynonymDeletionConfigurator;
19 import eu.etaxonomy.cdm.model.taxon.Synonym;
20 import eu.etaxonomy.cdm.model.taxon.SynonymType;
21 import eu.etaxonomy.cdm.model.taxon.Taxon;
22 import eu.etaxonomy.taxeditor.store.operations.AbstractTaxeditorOperationTestBase;
23
24 /**
25 * @author n.hoffmann
26 * @created 08.04.2009
27 */
28 public class DeleteSynonymOperationTest extends AbstractTaxeditorOperationTestBase{
29 @SuppressWarnings("unused")
30 private static final Logger logger = Logger
31 .getLogger(DeleteSynonymOperationTest.class);
32
33 private static Synonym synonym;
34
35 private static SynonymType synonymType;
36
37 /**
38 * @throws java.lang.Exception
39 */
40 @BeforeClass
41 public static void setUpBeforeClass() throws Exception {
42 taxon = Taxon.NewInstance(null, null);
43 synonym = Synonym.NewInstance(null, null);
44 synonymType = SynonymType.SYNONYM_OF();
45
46 taxon.addSynonym(synonym, synonymType);
47
48 operation = new DeleteSynonymOperation("", undoContext, new SynonymDeletionConfigurator(), taxon,synonym, postOperation, null, null);
49
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 }