use of org.xwiki.test.ui.po.LiveTableElement in project xwiki-platform by xwiki.
the class LiveTableEditorTest method testDeprecatedColumns.
/**
* Tests how deprecated columns are handled.
*/
@Test
public void testDeprecatedColumns() {
// Fake a deprecated column by using a column that doesn't exist.
editQueryStringParameters.put("AppWithinMinutes.LiveTableClass_0_columns", "doc.name foo");
getUtil().gotoPage(getTestClassName(), getTestMethodName(), "edit", editQueryStringParameters);
editPage = new ApplicationHomeEditPage().waitUntilPageIsLoaded();
Assert.assertTrue(editPage.isDeprecatedLiveTableColumnsWarningDisplayed());
Assert.assertFalse(editPage.isLiveTableColumnDeprecated("Page Name"));
Assert.assertTrue(editPage.isLiveTableColumnDeprecated("foo"));
// Keep deprecated columns.
editPage.removeAllDeprecatedLiveTableColumns(false);
Assert.assertFalse(editPage.isDeprecatedLiveTableColumnsWarningDisplayed());
Assert.assertTrue(editPage.isLiveTableColumnDeprecated("foo"));
ApplicationHomePage viewPage = editPage.clickSaveAndView();
LiveTableElement liveTable = viewPage.getEntriesLiveTable();
liveTable.waitUntilReady();
// The column header isn't translated because we haven't generated the document translation bundle.
Assert.assertTrue(liveTable.hasColumn("xwikiusers.livetable.foo"));
// Edit again and remove the deprecated column.
editPage = viewPage.editInline();
Assert.assertTrue(editPage.isDeprecatedLiveTableColumnsWarningDisplayed());
editPage.removeLiveTableColumn("foo");
Assert.assertFalse(editPage.hasLiveTableColumn("foo"));
// The warning must disappear if we remove the deprecated column.
Assert.assertFalse(editPage.isDeprecatedLiveTableColumnsWarningDisplayed());
// Reload and remove all deprecated columns.
getDriver().navigate().refresh();
editPage = new ApplicationHomeEditPage().waitUntilPageIsLoaded();
editPage.removeAllDeprecatedLiveTableColumns(true);
Assert.assertFalse(editPage.isDeprecatedLiveTableColumnsWarningDisplayed());
Assert.assertTrue(editPage.hasLiveTableColumn("Page Name"));
Assert.assertFalse(editPage.hasLiveTableColumn("foo"));
}
use of org.xwiki.test.ui.po.LiveTableElement in project xwiki-platform by xwiki.
the class LiveTableEditorTest method testSaveAndContinue.
/**
* Tests that Save & Continue works fine.
*/
@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 testSaveAndContinue() {
editPage.setDescription("wait for WYSIWYG to load");
editPage.clickSaveAndContinue();
ApplicationHomePage viewPage = editPage.clickCancel();
LiveTableElement liveTable = viewPage.getEntriesLiveTable();
liveTable.waitUntilReady();
// The column header isn't translated because we haven't generated the document translation bundle.
Assert.assertTrue(liveTable.hasColumn("xwikiusers.livetable.doc.title"));
}
use of org.xwiki.test.ui.po.LiveTableElement 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.test.ui.po.LiveTableElement 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());
}
use of org.xwiki.test.ui.po.LiveTableElement in project xwiki-platform by xwiki.
the class WizardTest method testCreateApplication.
/**
* Tests the application creation process from start to end.
*/
@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 testCreateApplication() {
// Step 1
// Set the application location.
appCreatePage.getLocationPicker().browseDocuments();
new DocumentPickerModal().selectDocument(getClass().getSimpleName(), this.testName.getMethodName(), "WebHome");
appCreatePage.getLocationPicker().waitForLocation(Arrays.asList("", getClass().getSimpleName(), this.testName.getMethodName(), ""));
// Enter the application name, making sure we also use some special chars.
// See XWIKI-11747: Impossible to create new entry with an application having UTF8 chars in its name
String appName = "Cities âé";
String[] appPath = new String[] { getClass().getSimpleName(), this.testName.getMethodName(), appName };
appCreatePage.setApplicationName(appName);
// Wait for the preview.
appCreatePage.waitForApplicationNamePreview();
// Move to the next step.
ApplicationClassEditPage classEditPage = appCreatePage.clickNextStep();
// Step 2
// Add a 'Short Text' field.
ClassFieldEditPane fieldEditPane = classEditPage.addField("Short Text");
// Set the field pretty name and default value
fieldEditPane.setPrettyName("City Name");
fieldEditPane.setDefaultValue("Paris");
// Move to the next step.
ApplicationTemplateProviderEditPage templateProviderEditPage = classEditPage.clickNextStep();
// Move back to the second step.
classEditPage = templateProviderEditPage.clickPreviousStep();
// Open the configuration panel and set the field name
fieldEditPane = new ClassFieldEditPane("shortText1");
fieldEditPane.openConfigPanel();
fieldEditPane.setName("cityName");
// Move to the next step.
templateProviderEditPage = classEditPage.clickNextStep();
// Step 3
templateProviderEditPage.setIcon("worl");
templateProviderEditPage.setDescription("A city page");
// Move to the next step.
ApplicationHomeEditPage homeEditPage = templateProviderEditPage.clickNextStep().waitUntilPageIsLoaded();
// Step 4
// Enter the application description.
String appDescription = "Simple application to manage data about various cities";
homeEditPage.setDescription(appDescription);
// Add the Short Text field from the previous step to the list of columns.
homeEditPage.addLiveTableColumn("City Name");
// Click the finish button which should lead us to the application home page.
ApplicationHomePage homePage = homeEditPage.clickFinish();
// Assert the application description is present.
Assert.assertTrue(homePage.getContent().contains(appDescription));
// Add a new entry.
String firstEntryName = "City 1 âé";
EntryNamePane entryNamePane = homePage.clickAddNewEntry();
entryNamePane.setName(firstEntryName);
EntryEditPage entryEditPage = entryNamePane.clickAdd();
// Assert the pretty name and the default value of the Short Text field.
// Apparently WebElement#getText() takes into account the text-transform CSS property.
Assert.assertEquals("CITY NAME", entryEditPage.getLabel("cityName"));
Assert.assertEquals("Paris", entryEditPage.getValue("cityName"));
// Change the field value.
entryEditPage.setValue("cityName", "London");
// Save and go back to the application home page.
entryEditPage.clickSaveAndView().clickBreadcrumbLink(appName);
homePage = new ApplicationHomePage();
// Assert the entry we have just created is listed in the live table.
LiveTableElement entriesLiveTable = homePage.getEntriesLiveTable();
entriesLiveTable.waitUntilReady();
Assert.assertTrue(entriesLiveTable.hasRow("City Name", "London"));
// Assert that only the entry we have just created is listed as child of the application home page. The rest of
// the documents (class, template, sheet, preferences) should be marked as hidden.
PagesLiveTableElement childrenLiveTable = homePage.viewChildren().getLiveTable();
childrenLiveTable.waitUntilReady();
Assert.assertEquals(1, childrenLiveTable.getRowCount());
Assert.assertTrue(childrenLiveTable.hasPageWithTitle(firstEntryName));
// Go back to the application home page.
getDriver().navigate().back();
// Click the edit button.
homePage.edit();
homeEditPage = new ApplicationHomeEditPage();
// Change the application description.
appDescription = "The best app!";
homeEditPage.setDescription(appDescription);
// Remove one of the live table columns.
homeEditPage.removeLiveTableColumn("Actions");
// Save
homePage = homeEditPage.clickSaveAndView();
// Assert that the application description has changed and that the column has been removed.
Assert.assertTrue(homePage.getContent().contains(appDescription));
entriesLiveTable = homePage.getEntriesLiveTable();
entriesLiveTable.waitUntilReady();
Assert.assertFalse(entriesLiveTable.hasColumn("Actions"));
// Click the link to edit the application.
classEditPage = homePage.clickEditApplication();
// Drag a Number field.
fieldEditPane = classEditPage.addField("Number");
// Set the field pretty name.
fieldEditPane.setPrettyName("Population Size");
// Fast forward.
homeEditPage = classEditPage.clickNextStep().clickNextStep();
// Just wait for the WYSIWYG editor (which is used for setting the application description) to load so that the
// page layout is stable before we click on the Finish button.
homeEditPage.setDescription(appDescription);
homePage = homeEditPage.clickFinish();
// Add a new entry.
String secondEntryName = "City 2 âé";
entryNamePane = homePage.clickAddNewEntry();
entryNamePane.setName(secondEntryName);
entryEditPage = entryNamePane.clickAdd();
// Assert the new field is displayed in the edit sheet (field name was auto-generated).
// Apparently WebElement#getText() takes into account the text-transform CSS property.
Assert.assertEquals("POPULATION SIZE", entryEditPage.getLabel("number1"));
// Save and go back to the application home page.
entryEditPage.clickSaveAndView().clickBreadcrumbLink(appName);
homePage = new ApplicationHomePage();
// Assert both entries are displayed in the live table.
entriesLiveTable = homePage.getEntriesLiveTable();
entriesLiveTable.waitUntilReady();
Assert.assertTrue(entriesLiveTable.hasRow("Page Title", firstEntryName));
Assert.assertTrue(entriesLiveTable.hasRow("Page Title", secondEntryName));
// Go to the App Within Minutes home page.
AppWithinMinutesHomePage appWithinMinutesHomePage = AppWithinMinutesHomePage.gotoPage();
// Assert that the created application is listed in the live table.
ApplicationsLiveTableElement appsLiveTable = appWithinMinutesHomePage.getAppsLiveTable();
appsLiveTable.waitUntilReady();
Assert.assertTrue(appsLiveTable.isApplicationListed(appPath));
// Delete the application entries.
homePage = appsLiveTable.viewApplication(appPath);
homePage.clickDeleteAllEntries().clickYes();
// Verify that the entries live table is empty.
entriesLiveTable = homePage.getEntriesLiveTable();
entriesLiveTable.waitUntilReady();
Assert.assertEquals(0, entriesLiveTable.getRowCount());
// Delete the application.
homePage.clickDeleteApplication().clickYes();
// Verify that the application is not listed anymore.
appsLiveTable = AppWithinMinutesHomePage.gotoPage().getAppsLiveTable();
appsLiveTable.waitUntilReady();
Assert.assertFalse(appsLiveTable.isApplicationListed(appPath));
}
Aggregations