Browse Source

SingleBrowserTest for testing browser-unrelated functionality

Change-Id: Ife2ce000cae1386334596a99592263bd489a5204
tags/7.3.0.rc1
Artur Signell 10 years ago
parent
commit
1e7b64901e

+ 0
- 26
uitest/src/com/vaadin/tests/VerifyAssertionsEnabled.html View File

@@ -1,26 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="" />
<title>New Test</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">New Test</td></tr>
</thead><tbody>
<tr>
<td>open</td>
<td>/run/com.vaadin.tests.VerifyAssertionsEnabled?restartApplication</td>
<td></td>
</tr>
<tr>
<td>assertText</td>
<td>vaadin=runcomvaadintestsVerifyAssertionsEnabled::/VVerticalLayout[0]/VVerticalLayout[0]/VLabel[0]</td>
<td>Assertions are enabled</td>
</tr>
</tbody></table>
</body>
</html>

+ 4
- 5
uitest/src/com/vaadin/tests/VerifyAssertionsEnabled.java View File

@@ -17,18 +17,17 @@
package com.vaadin.tests;

import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.Label;
import com.vaadin.tests.components.AbstractTestUIWithLog;

public class VerifyAssertionsEnabled extends AbstractTestUI {
public class VerifyAssertionsEnabled extends AbstractTestUIWithLog {

@Override
protected void setup(VaadinRequest request) {
try {
assert false;
addComponent(new Label("Assertions are not enabled"));
log("Assertions are not enabled");
} catch (AssertionError e) {
addComponent(new Label("Assertions are enabled"));
log("Assertions are enabled");
}
}


+ 14
- 0
uitest/src/com/vaadin/tests/VerifyAssertionsEnabledTest.java View File

@@ -0,0 +1,14 @@
package com.vaadin.tests;

import org.junit.Assert;
import org.junit.Test;

import com.vaadin.tests.tb3.SingleBrowserTest;

public class VerifyAssertionsEnabledTest extends SingleBrowserTest {
@Test
public void verifyServerAssertions() throws Exception {
openTestURL();
Assert.assertEquals("1. Assertions are enabled", getLogRow(0));
}
}

+ 2
- 2
uitest/src/com/vaadin/tests/VerifyJreVersionTest.java View File

@@ -21,9 +21,9 @@ import static org.hamcrest.core.Is.is;
import org.junit.Test;
import org.openqa.selenium.WebElement;

import com.vaadin.tests.tb3.MultiBrowserTest;
import com.vaadin.tests.tb3.SingleBrowserTest;

public class VerifyJreVersionTest extends MultiBrowserTest {
public class VerifyJreVersionTest extends SingleBrowserTest {

@Test
public void verifyJreVersion() {

+ 31
- 0
uitest/src/com/vaadin/tests/tb3/SingleBrowserTest.java View File

@@ -0,0 +1,31 @@
/*
* Copyright 2000-2014 Vaadin Ltd.
*
* 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 com.vaadin.tests.tb3;

import java.util.Collections;
import java.util.List;

import org.openqa.selenium.remote.DesiredCapabilities;

public abstract class SingleBrowserTest extends PrivateTB3Configuration {
@Override
public List<DesiredCapabilities> getBrowsersToTest() {
return Collections.unmodifiableList(Collections
.singletonList(MultiBrowserTest.Browser.PHANTOMJS
.getDesiredCapabilities()));
}

}

Loading…
Cancel
Save