James Moger
2013-03-27 f6b200be4c8b90c26886c6cdd5809abac8c4ac15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
 * Copyright 2013 akquinet tech@spree GmbH
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package de.akquinet.devops.test.ui.view;
 
import java.util.List;
 
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.WebDriverWait;
 
/**
 * class representing the repo list view, which you see e.g. right after you
 * logged in.
 * 
 * @author saheba
 * 
 */
public class RepoListView extends GitblitDashboardView {
 
    public RepoListView(WebDriver driver, String baseUrl) {
        super(driver, baseUrl);
    }
    
    public boolean isEmptyRepo(String fullyQualifiedRepoName) {
        String pathToLink = "//a[@href = \"?" + WICKET_HREF_PAGE_PATH
                + ".EmptyRepositoryPage&r=" + fullyQualifiedRepoName + "\"]";
        List<WebElement> found = getDriver().findElements(By.xpath(pathToLink));
        return found != null && found.size() > 0;
    }
 
    private String getEditRepoPath(String fullyQualifiedRepoName) {
        return "//a[@href =\"?" + WICKET_HREF_PAGE_PATH
                + ".EditRepositoryPage&r=" + fullyQualifiedRepoName + "\"]";
    }
 
    private String getDeleteRepoOnclickIdentifier(
            String fullyQualifiedRepoPathAndName) {
        return "var conf = confirm('Delete repository \""
                + fullyQualifiedRepoPathAndName
                + "\"?'); if (!conf) return false; ";
    }
 
    public boolean navigateToNewRepo(long waitSecToLoad) {
        String pathToLink = "//a[@href =\"?" + WICKET_HREF_PAGE_PATH
                + ".EditRepositoryPage\"]";
        List<WebElement> found = getDriver().findElements(By.xpath(pathToLink));
        if (found == null || found.size() == 0 || found.size() > 1) {
            return false;
        }
        found.get(0).click();
        WebDriverWait webDriverWait = new WebDriverWait(getDriver(),
                waitSecToLoad);
        webDriverWait.until(new Exp.EditRepoViewLoaded());
        return true;
    }
 
    private boolean checkOrDoEditRepo(String fullyQualifiedRepoName,
            boolean doEdit) {
        List<WebElement> found = getDriver().findElements(
                By.xpath(getEditRepoPath(fullyQualifiedRepoName)));
        if (found == null || found.size() == 0 || found.size() > 1) {
            return false;
        }
        if (doEdit) {
            found.get(0).click();
        }
        return true;
    }
 
    public boolean navigateToEditRepo(String fullyQualifiedRepoName,
            int waitSecToLoad) {
        boolean result = checkOrDoEditRepo(fullyQualifiedRepoName, true);
        WebDriverWait webDriverWait = new WebDriverWait(getDriver(),
                waitSecToLoad);
        webDriverWait.until(new Exp.EditRepoViewLoaded());
        return result;
    }
 
    public boolean isEditableRepo(String fullyQualifiedRepoName) {
        return checkOrDoEditRepo(fullyQualifiedRepoName, false);
    }
 
    private boolean checkOrDoDeleteRepo(String fullyQualifiedRepoPathAndName,
            boolean doDelete) {
        List<WebElement> found = getDriver().findElements(
                By.partialLinkText("delete"));
        String onclickIdentifier = getDeleteRepoOnclickIdentifier(fullyQualifiedRepoPathAndName);
        WebElement result = null;
        for (WebElement webElement : found) {
            if (webElement.getAttribute("onclick") != null
                    && webElement.getAttribute("onclick").equals(
                            onclickIdentifier)) {
                result = webElement;
                break;
            }
        }
        System.out.println("result ? " + result);
        if (result == null) {
            return false;
        }
        if (doDelete) {
            System.out.println(".............. DO DELETE .... ");
            result.click();
        }
        return true;
    }
 
    public boolean isDeletableRepo(String fullyQualifiedRepoPathAndName) {
        return checkOrDoDeleteRepo(fullyQualifiedRepoPathAndName, false);
    }
 
    public boolean navigateToDeleteRepo(String fullyQualifiedRepoPathAndName) {
        return checkOrDoDeleteRepo(fullyQualifiedRepoPathAndName, true);
 
    }
}