Project

General

Profile

Download (7.57 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.Ignore;
17
import org.junit.Test;
18
import org.openqa.selenium.WebElement;
19

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

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

    
41
@DataPortalContexts( { DataPortalSite.reference })
42
public class MisappliedNamesTest extends CdmDataPortalTestBase{
43

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

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

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

    
50

    
51

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

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

    
68
        TaxonSynonymyPage p = new TaxonSynonymyPage(driver, getContext(), miconia_cubacinerea_Uuid);
69

    
70
        // no sensu but with Combination Authors:
71
        assertEquals("–\n\"Ossaea angustifolia\" auct., non Cheek", p.getMisappliedName(1).getText());
72
        //
73
        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());
74
        // with doubtful flag
75
        assertEquals("–\n" + StringConstants.DOUBTFULMARKER_SPACE +"\"Ossaea glomerata\" sensu A&S1", p.getMisappliedName(3).getText());
76

    
77
        assertEquals("p.p.MAN\nOssaea glomerata sec. A&S1; sec. Species solaris", p.getMisappliedName(4).getText());
78

    
79
        assertEquals("partial MAN\nOssaea glomerata sec. A&S: 331; auct. sec. A&S1", p.getMisappliedName(5).getText());
80
        // Test also invalid designation which is rendered with the misapplied names
81
        assertEquals("–\nOssaea maculata sec. Lem2, rel. sec. A&S1", p.getMisappliedName(6).getText());
82

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

    
89
    }
90

    
91
    /**
92
     * Test to reproduce issue https://dev.e-taxonomy.eu/redmine/issues/7766
93
     *
94
     * TODO merge with  tesIssue5647 () once fixed
95
     *
96
     */
97
    @Test
98
    @Ignore
99
    public void tesIssue7766() throws MalformedURLException {
100

    
101
        TaxonSynonymyPage p = new TaxonSynonymyPage(driver, getContext(), miconia_cubacinerea_Uuid);
102

    
103
        assertEquals("≜⊃\nTrichocentrum undulatum (Sw.) Ackerman & M. W. Chase sec. My Classification3", p.getTaxonRelationships(1).getText());
104
        assertEquals("∅ Achilllea santolina Lag. sec. Testor 2018+4", p.getTaxonRelationships(1).getText());
105

    
106

    
107
        List<BaseElement> footnotes = ElementUtils.findFootNotes(p.getTaxonRelationships());
108
        assertEquals(4, footnotes.size());
109
        assertEquals("1. A&S, Plantas vasculares de Oz", footnotes.get(0).getText());
110
        assertEquals("2. Lem, New Species in the solar system", footnotes.get(1).getText());
111
        assertEquals("3. Kohlbecker, .....TODO .... 2016-2018", footnotes.get(0).getText());
112
        assertEquals("4. Testor ... TODO ... 2018+", footnotes.get(1).getText());
113

    
114
    }
115

    
116
    /**
117
     * https://dev.e-taxonomy.eu/redmine/issues/7778
118
     *
119
     * @throws MalformedURLException
120
     */
121
    @Test
122
    public void tesIssue7778() throws MalformedURLException {
123

    
124
        TaxonSynonymyPage p = new TaxonSynonymyPage(driver, getContext(), miconia_cubacinerea_Uuid);
125

    
126
        List<BaseElement> footnotes = ElementUtils.findFootNotes(p.getTaxonRelationships());
127
        BaseElement footNote = footnotes.get(0);
128
        assertEquals("1. A&S, Plantas vasculares de Oz", footNote.getText());
129
        List<LinkElement> links = footNote.getLinksInElement();
130
        assertEquals(1, links.size());
131
        assertEquals("http://doi.org/10.1111/j.1756-1051.2012.00012.x", links.get(0).getUrl());
132

    
133
    }
134

    
135

    
136
    /**
137
     * https://dev.e-taxonomy.eu/redmine/issues/5492
138
     */
139
    @Test
140
    public void testIssue5492() throws MalformedURLException {
141

    
142
        TaxonSynonymyPage p = new TaxonSynonymyPage(driver, getContext(), trichocentrum_undulatum_Uuid);
143

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

    
148
        WebElement misappliedName2 = p.getMisappliedName(2);
149
        assertNotNull(misappliedName2);
150
        assertEquals("–\n\"Oncidium guttatum\" auct. sensu Greuter, W. & Rankin Rodríguez, R1", misappliedName2.getText());
151

    
152
        List<BaseElement> footnotes = ElementUtils.findFootNotes(p.getTaxonRelationships());
153
        assertEquals(1, footnotes.size());
154
        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());
155
    }
156

    
157
    /**
158
     * https://dev.e-taxonomy.eu/redmine/issues/7658
159
     * https://dev.e-taxonomy.eu/redmine/issues/6682
160
     *
161
     * TODO 1b) Der Buchlink verweist auf den Protolog von N. blancoi Blume – der hat ja aber gerade nichts mit
162
     * dieser Namensanwendung zu tun (also: Protologbildlinks müssen bei MAN weggelassen werden oder der Link
163
     * muss nach dem <non Blume> eingefügt werden)
164
     */
165
    @Test
166
    public void testIssue7658() throws MalformedURLException {
167

    
168

    
169
        TaxonSynonymyPage p = new TaxonSynonymyPage(driver, getContext(), nepenthes_abalata_Uuid);
170

    
171
        WebElement misappliedName1 = p.getMisappliedName(1);
172
        assertNotNull(misappliedName1);
173
        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());
174

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

    
179
        List<BaseElement> footnotes = ElementUtils.findFootNotes(p.getTaxonRelationships());
180
        assertEquals(3, footnotes.size());
181
   }
182

    
183
}
(1-1/2)