Project

General

Profile

Download (5.49 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2009 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
package eu.etaxonomy.dataportal.selenium.tests.reference;
10

    
11
import java.net.MalformedURLException;
12
import java.util.List;
13
import java.util.UUID;
14

    
15
import org.junit.Before;
16
import org.junit.Test;
17
import org.openqa.selenium.WebElement;
18

    
19
import eu.etaxonomy.dataportal.DataPortalSite;
20
import eu.etaxonomy.dataportal.ElementUtils;
21
import eu.etaxonomy.dataportal.StringConstants;
22
import eu.etaxonomy.dataportal.elements.BaseElement;
23
import eu.etaxonomy.dataportal.junit.CdmDataPortalTestBase;
24
import eu.etaxonomy.dataportal.junit.DataPortalContextSuite.DataPortalContexts;
25
import eu.etaxonomy.dataportal.pages.TaxonSynonymyPage;
26

    
27
/**
28
 * Issues to be covered by this TestClass:
29
 *
30
 * #5676
31
 * #5647
32
 * #5492
33
 * #7658 + #6682
34
 *
35
 * @author a.kohlbecker
36
 *
37
 */
38

    
39
@DataPortalContexts( { DataPortalSite.reference })
40
public class MisappliedNamesTest extends CdmDataPortalTestBase{
41

    
42
    static final UUID miconia_cubacinerea_Uuid = UUID.fromString("c6716cee-2039-4ba8-a239-4b1b353f9c84");
43

    
44
    static final UUID trichocentrum_undulatum_Uuid = UUID.fromString("7e86b2a4-ba71-4494-b544-ae5656e02ed2");
45

    
46
    static final UUID nepenthes_abalata_Uuid = UUID.fromString("9b588d8a-c4fa-430a-b9c7-026bf715ecf6");
47

    
48

    
49

    
50
    @Before
51
    public void setUp() throws Exception {
52
        driver.get(getContext().getBaseUri().toString());
53
    }
54

    
55
    /**
56
     * Test for correct sensu representation of misapplied names, see #5676, #5647 and #7658
57
     *
58
     * https://dev.e-taxonomy.eu/redmine/issues/5647
59
     * https://dev.e-taxonomy.eu/redmine/issues/7658
60
     *
61
     * NOTE: Species solaris has no authorship!!
62
     */
63
    @Test
64
    public void tesIssue5647() throws MalformedURLException {
65

    
66
        TaxonSynonymyPage p = new TaxonSynonymyPage(driver, getContext(), miconia_cubacinerea_Uuid);
67

    
68
        // no sensu but with Combination Authors:
69
        assertEquals("–\n\"Ossaea angustifolia\" auct., non Cheek", p.getMisappliedName(1).getText());
70
        //
71
        assertEquals("–\n\"Ossaea glomerata\" sensu A&S1; sensu A&S: 221; sensu A&S: 331; sensu Lem2; sensu Species solaris; auct.; auct. sensu A&S1; auctrs. afr.", p.getMisappliedName(2).getText());
72
        // with doubtful flag
73
        assertEquals("–\n" + StringConstants.DOUBTFULMARKER_SPACE +"\"Ossaea glomerata\" sensu A&S1", p.getMisappliedName(3).getText());
74
        // Test also invalid designation which is rendered with the misapplied names
75
        assertEquals("–\nOssaea maculata sec. Lem2, rel. sec. A&S1", p.getMisappliedName(4).getText());
76

    
77
        List<BaseElement> footnotes = ElementUtils.findFootNotes(p.getTaxonRelationships());
78
        assertEquals(2, footnotes.size());
79
        assertEquals("1. A&S, Plantas vasculares de Oz", footnotes.get(0).getText());
80
        assertEquals("2. Lem, New Species in the solar system", footnotes.get(1).getText());
81
        // "Species solaris" must not be in the footnotes as it has the same title as the short citation
82

    
83
    }
84

    
85

    
86
    /**
87
     * https://dev.e-taxonomy.eu/redmine/issues/5492
88
     */
89
    @Test
90
    public void testIssue5492() throws MalformedURLException {
91

    
92
        TaxonSynonymyPage p = new TaxonSynonymyPage(driver, getContext(), trichocentrum_undulatum_Uuid);
93

    
94
        WebElement misappliedName1 = p.getMisappliedName(1);
95
        assertNotNull(misappliedName1);
96
        assertEquals("–\n" + StringConstants.DOUBTFULMARKER_SPACE +"\"Oncidium carthaginense\" auct. sensu Greuter, W. & Rankin Rodríguez, R1", misappliedName1.getText());
97

    
98
        WebElement misappliedName2 = p.getMisappliedName(2);
99
        assertNotNull(misappliedName2);
100
        assertEquals("–\n\"Oncidium guttatum\" auct. sensu Greuter, W. & Rankin Rodríguez, R1", misappliedName2.getText());
101

    
102

    
103

    
104
        List<BaseElement> footnotes = ElementUtils.findFootNotes(p.getTaxonRelationships());
105
        assertEquals(1, footnotes.size());
106
        assertEquals("1. Greuter, W. & Rankin Rodríguez, R, Plantas vasculares de Cuba: inventario preliminar. Tercera edición, actualizada. Vascular plants of Cuba: a preliminary checklist. Third updated edition.", footnotes.get(0).getText());
107
    }
108

    
109
    /**
110
     * https://dev.e-taxonomy.eu/redmine/issues/7658
111
     * https://dev.e-taxonomy.eu/redmine/issues/6682
112
     *
113
     * TODO 1b) Der Buchlink verweist auf den Protolog von N. blancoi Blume – der hat ja aber gerade nichts mit
114
     * dieser Namensanwendung zu tun (also: Protologbildlinks müssen bei MAN weggelassen werden oder der Link
115
     * muss nach dem <non Blume> eingefügt werden)
116
     */
117
    @Test
118
    public void testIssue7658() throws MalformedURLException {
119

    
120

    
121
        TaxonSynonymyPage p = new TaxonSynonymyPage(driver, getContext(), nepenthes_abalata_Uuid);
122

    
123
        WebElement misappliedName1 = p.getMisappliedName(1);
124
        assertNotNull(misappliedName1);
125
        assertEquals("–\n\"Nepenthes alata\" pro parte, sensu Cheek, M.R. & Jebb, M.H.P. 20011, non Blanco, err. sec. Cheek, M.R. & Jebb, M.H.P. 20132", misappliedName1.getText());
126

    
127
        WebElement misappliedName2 = p.getMisappliedName(2);
128
        assertNotNull(misappliedName2);
129
        assertEquals("–\n\"Nepenthes blancoi\" pro parte, sensu Macfarlane 19083, non Blume, err. sec. Cheek, M.R. & Jebb, M.H.P. 20132", misappliedName2.getText());
130

    
131
        List<BaseElement> footnotes = ElementUtils.findFootNotes(p.getTaxonRelationships());
132
        assertEquals(3, footnotes.size());
133
   }
134

    
135
}
    (1-1/1)