mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 18:30:42 +00:00
JavaDoc for IT classes
This commit is contained in:
parent
e3b5d85cd5
commit
cb28b00ca3
@ -5,19 +5,15 @@ import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import edu.kit.typicalc.model.parser.ParseError;
|
||||
import edu.kit.typicalc.view.pageobjects.ErrorNotificationElement;
|
||||
import edu.kit.typicalc.view.pageobjects.ExampleDialogElement;
|
||||
import edu.kit.typicalc.view.pageobjects.InputBarElement;
|
||||
|
||||
public class ViewMainIT extends AbstractIT {
|
||||
|
||||
//TODO change to real Value
|
||||
private static final String EMPTY_INPUT_ERROR = "?[" + "root." + ParseError.TOO_FEW_TOKENS.toString() + "]?";
|
||||
private static final String OVERLONG_INPUT_ERROR = "Die maximale Länge der Eingabe beträgt 1000 Zeichen!";
|
||||
private static final String EMPTY_INPUT_ERROR = "Falsche Eingabe! Der Term endet abrupt.";
|
||||
private static final String INPUT_EXAMPLE = "let f = λx. g y y in f 3";
|
||||
|
||||
@Test
|
||||
@ -30,30 +26,13 @@ public class ViewMainIT extends AbstractIT {
|
||||
|
||||
ErrorNotificationElement errorNotification = $(ErrorNotificationElement.class).waitForFirst();
|
||||
assertTrue(errorNotification.isOpen());
|
||||
String errorMessage = errorNotification.getErrorSpan().getText();
|
||||
String errorMessage = errorNotification.getErrorParagraph().getText();
|
||||
assertEquals(EMPTY_INPUT_ERROR, errorMessage);
|
||||
|
||||
errorNotification.close();
|
||||
assertFalse(errorNotification.isOpen());
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
public void overlongInput() {
|
||||
//TODO only works when executed separately, fix bug
|
||||
InputBarElement inputBar = $(InputBarElement.class).first();
|
||||
inputBar.setCurrentValue(new String(new char[1000]));
|
||||
inputBar.typeInfer();
|
||||
|
||||
ErrorNotificationElement errorNotification = $(ErrorNotificationElement.class).waitForFirst();
|
||||
assertTrue(errorNotification.isOpen());
|
||||
String errorMessage = errorNotification.getErrorSpan().getText();
|
||||
assertEquals(OVERLONG_INPUT_ERROR, errorMessage);
|
||||
|
||||
errorNotification.close();
|
||||
assertFalse(errorNotification.isOpen());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void chooseExample() {
|
||||
InputBarElement inputBar = $(InputBarElement.class).first();
|
||||
|
@ -1,19 +1,31 @@
|
||||
package edu.kit.typicalc.view.pageobjects;
|
||||
|
||||
import com.vaadin.flow.component.button.testbench.ButtonElement;
|
||||
import com.vaadin.flow.component.html.testbench.SpanElement;
|
||||
import com.vaadin.flow.component.html.testbench.ParagraphElement;
|
||||
import com.vaadin.flow.component.notification.testbench.NotificationElement;
|
||||
import com.vaadin.flow.component.orderedlayout.testbench.VerticalLayoutElement;
|
||||
import com.vaadin.testbench.annotations.Attribute;
|
||||
|
||||
/**
|
||||
* Vaadin TestBench element for {@link edu.kit.typicalc.view.main.ErrorNotification}.
|
||||
*/
|
||||
@Attribute(name = "id", value = "errorNotification")
|
||||
public class ErrorNotificationElement extends NotificationElement {
|
||||
|
||||
/**
|
||||
* Click to close button of the ErrorNotification
|
||||
*/
|
||||
public void close() {
|
||||
$(ButtonElement.class).first().click();
|
||||
}
|
||||
|
||||
public SpanElement getErrorSpan() {
|
||||
return $(VerticalLayoutElement.class).first().$(SpanElement.class).first();
|
||||
/**
|
||||
* Get the errorMessage of the ErrorNotification
|
||||
*
|
||||
* @return the errorMessage within a ParagraphElement
|
||||
*/
|
||||
public ParagraphElement getErrorParagraph() {
|
||||
return $(VerticalLayoutElement.class).id("errorNotificationContent").$(ParagraphElement.class)
|
||||
.id("errorSummary");
|
||||
}
|
||||
}
|
||||
|
@ -5,9 +5,17 @@ import com.vaadin.flow.component.dialog.testbench.DialogElement;
|
||||
import com.vaadin.flow.component.orderedlayout.testbench.VerticalLayoutElement;
|
||||
import com.vaadin.testbench.annotations.Attribute;
|
||||
|
||||
/**
|
||||
* Vaadin TestBench element for {@link edu.kit.typicalc.view.main.ExampleDialog}.
|
||||
*/
|
||||
@Attribute(name = "id", value = "exampleDialog")
|
||||
public class ExampleDialogElement extends DialogElement {
|
||||
|
||||
/**
|
||||
* Click on an example of the example dialog.
|
||||
*
|
||||
* @param example the example
|
||||
*/
|
||||
public void insertExample(String example) {
|
||||
$(VerticalLayoutElement.class).first().$(ButtonElement.class).id(example).click();
|
||||
}
|
||||
|
@ -5,21 +5,40 @@ import com.vaadin.flow.component.orderedlayout.testbench.HorizontalLayoutElement
|
||||
import com.vaadin.flow.component.textfield.testbench.TextFieldElement;
|
||||
import com.vaadin.testbench.annotations.Attribute;
|
||||
|
||||
@Attribute(name = "id", value = "inputBar") // maybe make id constants public to use the here
|
||||
/**
|
||||
* Vaadin TestBench element for {@link edu.kit.typicalc.view.main.InputBar}.
|
||||
*/
|
||||
@Attribute(name = "id", value = "inputBar")
|
||||
public class InputBarElement extends HorizontalLayoutElement {
|
||||
|
||||
/**
|
||||
* Click the type infer button.
|
||||
*/
|
||||
public void typeInfer() {
|
||||
$(ButtonElement.class).id("inferButton").click();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the current value of the inputField.
|
||||
*
|
||||
* @param value the value
|
||||
*/
|
||||
public void setCurrentValue(String value) {
|
||||
$(TextFieldElement.class).id("inputField").setValue(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the current value of the inputField.
|
||||
*
|
||||
* @return the current value
|
||||
*/
|
||||
public String getCurrentValue() {
|
||||
return $(TextFieldElement.class).id("inputField").getValue();
|
||||
}
|
||||
|
||||
/**
|
||||
* Open the example dialog.
|
||||
*/
|
||||
public void openExampleDialog() {
|
||||
$(ButtonElement.class).id("exampleButton").click();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user