use of org.xwiki.appwithinminutes.test.po.EntryEditPage in project xwiki-platform by xwiki.
the class DocumentFieldsTest method titleAndContent.
@Test
public void titleAndContent() {
// Create a new application.
String appName = RandomStringUtils.randomAlphabetic(6);
ApplicationCreatePage appCreatePage = ApplicationCreatePage.gotoPage();
appCreatePage.setApplicationName(appName);
appCreatePage.waitForApplicationNamePreview();
ApplicationClassEditPage classEditPage = appCreatePage.clickNextStep();
// Add a standard field.
ClassFieldEditPane numberField = classEditPage.addField("Number");
// Add the Title and Content fields.
ClassFieldEditPane titleField = classEditPage.addField("Title");
ClassFieldEditPane contentField = classEditPage.addField("Content");
// Change the default field pretty names.
// See XWIKI-9154: The application live table uses the standard 'Page title' heading instead of the pretty name
// set for the Title field
titleField.setPrettyName("My Title");
contentField.setPrettyName("My Content");
// Set the default values that will be saved in the template.
numberField.setDefaultValue("13");
String defaultTitle = "Enter title here";
titleField.setDefaultValue(defaultTitle);
String defaultContent = "Enter content here";
contentField.setDefaultValue(defaultContent);
// Add live table columns for Title and Content.
ApplicationHomeEditPage homeEditPage = classEditPage.clickNextStep().clickNextStep().waitUntilPageIsLoaded();
homeEditPage.addLiveTableColumn("My Title");
homeEditPage.addLiveTableColumn("My Content");
// Add an application entry.
EntryNamePane entryNamePane = homeEditPage.clickFinish().clickAddNewEntry();
entryNamePane.setName("Test");
EntryEditPage entryEditPage = entryNamePane.clickAdd();
Assert.assertEquals("13", entryEditPage.getValue("number1"));
// The page name is used as the default value for the title field.
Assert.assertEquals("Test", entryEditPage.getDocumentTitle());
Assert.assertEquals("Test", entryEditPage.getTitle());
entryEditPage.setTitle("Foo");
Assert.assertEquals(defaultContent, entryEditPage.getContent());
entryEditPage.setContent("Bar");
// Check that the title and the content of the entry have been updated.
ViewPage entryViewPage = entryEditPage.clickSaveAndView();
Assert.assertEquals("Foo", entryViewPage.getDocumentTitle());
Assert.assertTrue(entryViewPage.getContent().contains("Bar"));
entryViewPage.clickBreadcrumbLink(appName);
// Check the entries live table.
LiveTableElement liveTable = new ApplicationHomePage().getEntriesLiveTable();
liveTable.waitUntilReady();
Assert.assertEquals(1, liveTable.getRowCount());
Assert.assertTrue(liveTable.hasRow("My Title", "Foo"));
Assert.assertTrue(liveTable.hasRow("My Content", "Bar"));
// Check that the title and the content of the class have not been changed.
getUtil().gotoPage(new LocalDocumentReference(Arrays.asList(appName, "Code"), appName + "Class"), "edit", "editor=wiki");
WikiEditPage editPage = new WikiEditPage();
Assert.assertEquals(appName + " Class", editPage.getTitle());
Assert.assertEquals("", editPage.getContent());
// Now edit the class and check if the default values for title and content are taken from the template.
editPage.editInline();
Assert.assertEquals(defaultTitle, new ClassFieldEditPane("title1").getDefaultValue());
Assert.assertEquals(defaultContent, new ClassFieldEditPane("content1").getDefaultValue());
}
use of org.xwiki.appwithinminutes.test.po.EntryEditPage in project xwiki-platform by xwiki.
the class AddEntryTest method testEntryNameWithURLSpecialCharacters.
/**
* Tests that entry name is URL encoded.
*/
@Test
@IgnoreBrowsers({ @IgnoreBrowser(value = "internet.*", version = "8\\.*", reason = "See https://jira.xwiki.org/browse/XE-1146"), @IgnoreBrowser(value = "internet.*", version = "9\\.*", reason = "See https://jira.xwiki.org/browse/XE-1177") })
public void testEntryNameWithURLSpecialCharacters() {
EntryNamePane entryNamePane = homePage.clickAddNewEntry();
String entryName = "A?b=c&d#" + RandomStringUtils.randomAlphanumeric(3);
entryNamePane.setName(entryName);
EntryEditPage entryEditPage = entryNamePane.clickAdd();
entryEditPage.setValue("description", "This is a test panel.");
entryEditPage.clickSaveAndView();
getUtil().gotoPage(getTestClassName(), getTestMethodName());
homePage = new ApplicationHomePage();
LiveTableElement entriesLiveTable = homePage.getEntriesLiveTable();
entriesLiveTable.waitUntilReady();
// The column header is not translated because we haven't generated the document translation bundle.
Assert.assertTrue(entriesLiveTable.hasRow("panel.livetable.doc.title", entryName));
}
use of org.xwiki.appwithinminutes.test.po.EntryEditPage in project xwiki-platform by xwiki.
the class ClassEditorTest method testReorderFields.
/**
* Tests that class fields can be reordered.
*/
@Test
@IgnoreBrowsers({ @IgnoreBrowser(value = "internet.*", version = "8\\.*", reason = "See https://jira.xwiki.org/browse/XE-1146"), @IgnoreBrowser(value = "internet.*", version = "9\\.*", reason = "See https://jira.xwiki.org/browse/XE-1177") })
public void testReorderFields() {
// Add two class fields.
editor.addField("Date").setPrettyName("Start Date");
editor.addField("Date").setPrettyName("End Date");
// Save and edit the class template in in-line edit mode.
editor.clickSaveAndView();
new ClassSheetPage().clickTemplateLink().edit();
// Assert the order of the form fields.
List<String> fieldNames = new EntryEditPage().getFieldNames();
Assert.assertEquals("date1", fieldNames.get(0));
Assert.assertEquals("date2", fieldNames.get(1));
// Go back to the class editor.
getDriver().navigate().back();
getDriver().navigate().back();
new ViewPage().edit();
editor = new ApplicationClassEditPage();
// Change the order of the class fields.
editor.moveFieldBefore("date2", "date1");
// Save and edit the class template again.
editor.clickSaveAndView();
new ClassSheetPage().clickTemplateLink().edit();
// Assert the order of the form fields.
fieldNames = new EntryEditPage().getFieldNames();
Assert.assertEquals("date2", fieldNames.get(0));
Assert.assertEquals("date1", fieldNames.get(1));
}
use of org.xwiki.appwithinminutes.test.po.EntryEditPage in project xwiki-platform by xwiki.
the class LiveTableGeneratorTest method titleField.
/**
* @see "XWIKI-8728: AWM home page does not list entries when \"Title\" column is set to be the first one"
*/
@Test
public void titleField() {
// Create an application that has a Title field and add a corresponding column to the live table.
classEditPage.addField("Title");
ApplicationHomeEditPage homeEditPage = classEditPage.clickNextStep().clickNextStep().waitUntilPageIsLoaded();
homeEditPage.addLiveTableColumn("Title");
homeEditPage.moveLiveTableColumnBefore("Title", "Page Title");
// Add first entry.
EntryNamePane entryNamePane = homeEditPage.clickFinish().clickAddNewEntry();
entryNamePane.setName("Foo");
EntryEditPage entryEditPage = entryNamePane.clickAdd();
entryEditPage.setTitle("The Mighty Foo");
entryEditPage.clickSaveAndView().clickBreadcrumbLink(appName);
// Add second entry.
entryNamePane = new ApplicationHomePage().clickAddNewEntry();
entryNamePane.setName("Bar");
entryEditPage = entryNamePane.clickAdd();
entryEditPage.setTitle("The Empty Bar");
entryEditPage.clickSaveAndView().clickBreadcrumbLink(appName);
// Filter the Title column of the live table.
LiveTableElement liveTable = new ApplicationHomePage().getEntriesLiveTable();
liveTable.waitUntilReady();
Assert.assertEquals(2, liveTable.getRowCount());
String filterInputId = getFilterInputId(0);
liveTable.filterColumn(filterInputId, "mighty");
Assert.assertEquals(1, liveTable.getRowCount());
Assert.assertTrue(liveTable.hasRow("Location", appName + "Foo"));
liveTable.filterColumn(filterInputId, "empty");
Assert.assertEquals(1, liveTable.getRowCount());
Assert.assertTrue(liveTable.hasRow("Location", appName + "Bar"));
liveTable.filterColumn(filterInputId, "");
Assert.assertEquals(2, liveTable.getRowCount());
}
use of org.xwiki.appwithinminutes.test.po.EntryEditPage in project xwiki-platform by xwiki.
the class LiveTableGeneratorTest method filterStaticList.
/**
* @see "XWIKI-8616: Filter a static list in an AWM livetable does not work."
*/
@Test
public void filterStaticList() {
// Create an application that has a Static List field and add a corresponding column to the live table.
classEditPage.addField("Static List");
ApplicationHomeEditPage homeEditPage = classEditPage.clickNextStep().clickNextStep().waitUntilPageIsLoaded();
homeEditPage.addLiveTableColumn("Static List");
// Add first entry.
EntryNamePane entryNamePane = homeEditPage.clickFinish().clickAddNewEntry();
entryNamePane.setName("Foo");
EntryEditPage entryEditPage = entryNamePane.clickAdd();
entryEditPage.setValue("staticList1", "value1");
entryEditPage.clickSaveAndView().clickBreadcrumbLink(appName);
// Add second entry.
entryNamePane = new ApplicationHomePage().clickAddNewEntry();
entryNamePane.setName("Bar");
entryEditPage = entryNamePane.clickAdd();
entryEditPage.setValue("staticList1", "value2");
entryEditPage.clickSaveAndView().clickBreadcrumbLink(appName);
// Filter the Static List column of the live table.
LiveTableElement liveTable = new ApplicationHomePage().getEntriesLiveTable();
liveTable.waitUntilReady();
Assert.assertEquals(2, liveTable.getRowCount());
String filterInputId = getFilterInputId(liveTable.getColumnIndex("Static List"));
liveTable.filterColumn(filterInputId, "Second Choice");
Assert.assertEquals(1, liveTable.getRowCount());
Assert.assertTrue(liveTable.hasRow("Page Title", "Bar"));
liveTable.filterColumn(filterInputId, "First Choice");
Assert.assertEquals(1, liveTable.getRowCount());
Assert.assertTrue(liveTable.hasRow("Page Title", "Foo"));
liveTable.filterColumn(filterInputId, "All");
Assert.assertEquals(2, liveTable.getRowCount());
}
Aggregations