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
/*
 * 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.cases;
 
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
 
import de.akquinet.devops.test.ui.generic.AbstractUITest;
import de.akquinet.devops.test.ui.view.RepoEditView;
import de.akquinet.devops.test.ui.view.RepoListView;
 
/**
 * tests the multi admin per repo feature.
 * 
 * @author saheba
 * 
 */
public class UI_MultiAdminSupportTest extends AbstractUITest {
 
    String baseUrl = "https://localhost:8443";
    RepoListView view;
    RepoEditView editView;
    private static final String TEST_MULTI_ADMIN_SUPPORT_REPO_NAME = "testmultiadminsupport";
    private static final String TEST_MULTI_ADMIN_SUPPORT_REPO_PATH = "~repocreator/"
            + TEST_MULTI_ADMIN_SUPPORT_REPO_NAME + ".git";
    private static final String TEST_MULTI_ADMIN_SUPPORT_REPO_PATH_WITHOUT_SUFFIX = "~repocreator/"
            + TEST_MULTI_ADMIN_SUPPORT_REPO_NAME;
 
    @Before
    public void before() {
        System.out.println("IN BEFORE");
        this.view = new RepoListView(AbstractUITest.getDriver(), baseUrl);
        this.editView = new RepoEditView(AbstractUITest.getDriver());
        AbstractUITest.getDriver().navigate().to(baseUrl);
    }
 
    @Test
    public void test_MultiAdminSelectionInStandardRepo() {
        // login
        view.login("repocreator", "repocreator");
 
        // create new repo
        view.navigateToNewRepo(1);
        editView.changeName(TEST_MULTI_ADMIN_SUPPORT_REPO_PATH);
        Assert.assertTrue(editView.navigateToPermissionsTab());
 
        Assert.assertTrue(editView
                .changeAccessRestriction(RepoEditView.RESTRICTION_AUTHENTICATED_VCP));
        Assert.assertTrue(editView
                .changeAuthorizationControl(RepoEditView.AUTHCONTROL_RWALL));
 
        // with a second admin
        editView.addOwner("admin");
        Assert.assertTrue(editView.save());
        // user is automatically forwarded to repo list view
        Assert.assertTrue(view.isEmptyRepo(TEST_MULTI_ADMIN_SUPPORT_REPO_PATH));
        Assert.assertTrue(view
                .isEditableRepo(TEST_MULTI_ADMIN_SUPPORT_REPO_PATH));
        Assert.assertTrue(view
                .isDeletableRepo(TEST_MULTI_ADMIN_SUPPORT_REPO_PATH_WITHOUT_SUFFIX));
        // logout repocreator
        view.logout();
 
        // check with admin account if second admin has the same rights
        view.login("admin", "admin");
        Assert.assertTrue(view.isEmptyRepo(TEST_MULTI_ADMIN_SUPPORT_REPO_PATH));
        Assert.assertTrue(view
                .isEditableRepo(TEST_MULTI_ADMIN_SUPPORT_REPO_PATH));
        Assert.assertTrue(view
                .isDeletableRepo(TEST_MULTI_ADMIN_SUPPORT_REPO_PATH_WITHOUT_SUFFIX));
        // delete repo to reach state as before test execution
        view.navigateToDeleteRepo(TEST_MULTI_ADMIN_SUPPORT_REPO_PATH_WITHOUT_SUFFIX);
        view.acceptAlertDialog();
        view.logout();
 
        Assert.assertTrue(view.isLoginPartVisible());
    }
 
}