Search in sources :

Example 6 with FileListView

use of com.owncloud.android.test.ui.models.FileListView in project android by owncloud.

the class ShareLinkFileTestSuite method testUnshareLinkFile.

@Test
@Category({ IgnoreTestCategory.class, SmokeTestCategory.class })
public void testUnshareLinkFile() throws Exception {
    AndroidElement sharedElementIndicator;
    FileListView fileListView = Actions.login(Config.URL, Config.user, Config.password, Config.isTrusted, driver);
    common.assertIsInFileListView();
    //TODO. if the file already exists, do not upload
    FileListView fileListViewAfterUploadFile = Actions.uploadFile(FILE_NAME, fileListView);
    fileListViewAfterUploadFile.scrollTillFindElement(FILE_NAME);
    assertTrue(fileHasBeenCreated = fileListViewAfterUploadFile.getFileElement().isDisplayed());
    sharedElementIndicator = Actions.shareLinkElementByCopyLink(FILE_NAME, fileListViewAfterUploadFile, driver, common);
    assertTrue(sharedElementIndicator.isDisplayed());
    Actions.unshareLinkElement(FILE_NAME, fileListViewAfterUploadFile, driver, common);
    assertFalse(sharedElementIndicator.isDisplayed());
}
Also used : FileListView(com.owncloud.android.test.ui.models.FileListView) AndroidElement(io.appium.java_client.android.AndroidElement) Category(org.junit.experimental.categories.Category) InProgressCategory(com.owncloud.android.test.ui.groups.InProgressCategory) SmokeTestCategory(com.owncloud.android.test.ui.groups.SmokeTestCategory) IgnoreTestCategory(com.owncloud.android.test.ui.groups.IgnoreTestCategory) NoIgnoreTestCategory(com.owncloud.android.test.ui.groups.NoIgnoreTestCategory) Test(org.junit.Test)

Example 7 with FileListView

use of com.owncloud.android.test.ui.models.FileListView in project android by owncloud.

the class ShareLinkFileTestSuite method testShareLinkFileByCopyLink.

@Test
@Category({ NoIgnoreTestCategory.class, SmokeTestCategory.class })
public void testShareLinkFileByCopyLink() throws Exception {
    AndroidElement sharedElementIndicator;
    FileListView fileListView = Actions.login(Config.URL, Config.user, Config.password, Config.isTrusted, driver);
    common.assertIsInFileListView();
    //TODO. if the file already exists, do not upload
    FileListView fileListViewAfterUploadFile = Actions.uploadFile(FILE_NAME, fileListView);
    fileListViewAfterUploadFile.scrollTillFindElement(FILE_NAME);
    assertTrue(fileHasBeenCreated = fileListViewAfterUploadFile.getFileElement().isDisplayed());
    sharedElementIndicator = Actions.shareLinkElementByCopyLink(FILE_NAME, fileListViewAfterUploadFile, driver, common);
    assertTrue(sharedElementIndicator.isDisplayed());
}
Also used : FileListView(com.owncloud.android.test.ui.models.FileListView) AndroidElement(io.appium.java_client.android.AndroidElement) Category(org.junit.experimental.categories.Category) InProgressCategory(com.owncloud.android.test.ui.groups.InProgressCategory) SmokeTestCategory(com.owncloud.android.test.ui.groups.SmokeTestCategory) IgnoreTestCategory(com.owncloud.android.test.ui.groups.IgnoreTestCategory) NoIgnoreTestCategory(com.owncloud.android.test.ui.groups.NoIgnoreTestCategory) Test(org.junit.Test)

Example 8 with FileListView

use of com.owncloud.android.test.ui.models.FileListView in project android by owncloud.

the class ShareLinkFileTestSuite method testShareLinkFileByGmail.

@Test
@Category({ NoIgnoreTestCategory.class })
public void testShareLinkFileByGmail() throws Exception {
    AndroidElement sharedElementIndicator;
    FileListView fileListView = Actions.login(Config.URL, Config.user, Config.password, Config.isTrusted, driver);
    common.assertIsInFileListView();
    //TODO. if the file already exists, do not upload
    FileListView fileListViewAfterUploadFile = Actions.uploadFile(FILE_NAME, fileListView);
    fileListViewAfterUploadFile.scrollTillFindElement(FILE_NAME);
    assertTrue(fileHasBeenCreated = fileListViewAfterUploadFile.getFileElement().isDisplayed());
    sharedElementIndicator = Actions.shareLinkElementByGmail(FILE_NAME, fileListViewAfterUploadFile, driver, common);
    assertTrue(sharedElementIndicator.isDisplayed());
}
Also used : FileListView(com.owncloud.android.test.ui.models.FileListView) AndroidElement(io.appium.java_client.android.AndroidElement) Category(org.junit.experimental.categories.Category) InProgressCategory(com.owncloud.android.test.ui.groups.InProgressCategory) SmokeTestCategory(com.owncloud.android.test.ui.groups.SmokeTestCategory) IgnoreTestCategory(com.owncloud.android.test.ui.groups.IgnoreTestCategory) NoIgnoreTestCategory(com.owncloud.android.test.ui.groups.NoIgnoreTestCategory) Test(org.junit.Test)

Example 9 with FileListView

use of com.owncloud.android.test.ui.models.FileListView in project android by owncloud.

the class UploadTestSuite method tearDown.

@After
public void tearDown() throws Exception {
    common.takeScreenShotOnFailed(name.getMethodName());
    FileListView fileListView = new FileListView(driver);
    if (fileHasBeenUploadedFromGmail) {
        Actions.deleteElement(FILE_GMAIL_NAME, fileListView, driver);
    }
    if (fileHasBeenUploaded) {
        Actions.deleteElement(FILE_NAME, fileListView, driver);
        Actions.deleteElement(BIG_FILE_NAME, fileListView, driver);
    }
    //driver.removeApp("com.owncloud.android");
    driver.quit();
}
Also used : FileListView(com.owncloud.android.test.ui.models.FileListView) After(org.junit.After)

Example 10 with FileListView

use of com.owncloud.android.test.ui.models.FileListView in project android by owncloud.

the class CreateFolderTestSuite method tearDown.

@After
public void tearDown() throws Exception {
    common.takeScreenShotOnFailed(name.getMethodName());
    if (folderHasBeenCreated) {
        FileListView fileListView = new FileListView(driver);
        Actions.deleteElement(CurrentCreatedFolder, fileListView, driver);
    }
    driver.removeApp("com.owncloud.android");
    driver.quit();
}
Also used : FileListView(com.owncloud.android.test.ui.models.FileListView) After(org.junit.After)

Aggregations

FileListView (com.owncloud.android.test.ui.models.FileListView)64 Test (org.junit.Test)46 Category (org.junit.experimental.categories.Category)46 NoIgnoreTestCategory (com.owncloud.android.test.ui.groups.NoIgnoreTestCategory)34 SmokeTestCategory (com.owncloud.android.test.ui.groups.SmokeTestCategory)32 InProgressCategory (com.owncloud.android.test.ui.groups.InProgressCategory)16 After (org.junit.After)16 UnfinishedTestCategory (com.owncloud.android.test.ui.groups.UnfinishedTestCategory)12 ElementMenuOptions (com.owncloud.android.test.ui.models.ElementMenuOptions)12 MenuList (com.owncloud.android.test.ui.models.MenuList)12 SettingsView (com.owncloud.android.test.ui.models.SettingsView)12 WaitAMomentPopUp (com.owncloud.android.test.ui.models.WaitAMomentPopUp)12 FailingTestCategory (com.owncloud.android.test.ui.groups.FailingTestCategory)10 IgnoreTestCategory (com.owncloud.android.test.ui.groups.IgnoreTestCategory)6 LoginForm (com.owncloud.android.test.ui.models.LoginForm)6 AndroidElement (io.appium.java_client.android.AndroidElement)6 FileDetailsView (com.owncloud.android.test.ui.models.FileDetailsView)4 MoveView (com.owncloud.android.test.ui.models.MoveView)4 NewFolderPopUp (com.owncloud.android.test.ui.models.NewFolderPopUp)4 NoSuchElementException (org.openqa.selenium.NoSuchElementException)4