-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46973 from nextcloud/backport/46432/stable28
- Loading branch information
Showing
14 changed files
with
201 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,11 @@ | ||
/** | ||
* @copyright Copyright (c) 2024 Ferdinand Thiessen <[email protected]> | ||
* | ||
* @author Ferdinand Thiessen <[email protected]> | ||
* | ||
* @license AGPL-3.0-or-later | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
import type { User } from '@nextcloud/cypress' | ||
import { getRowForFile, navigateToFolder, triggerActionForFile } from './FilesUtils' | ||
import { assertNotExistOrNotVisible } from '../settings/usersUtils' | ||
|
||
describe('Files: Sidebar', { testIsolation: true }, () => { | ||
let user: User | ||
|
@@ -43,7 +27,10 @@ describe('Files: Sidebar', { testIsolation: true }, () => { | |
|
||
triggerActionForFile('file', 'details') | ||
|
||
cy.get('[data-cy-sidebar]').should('be.visible') | ||
cy.get('[data-cy-sidebar]') | ||
.should('be.visible') | ||
.findByRole('heading', { name: 'file' }) | ||
.should('be.visible') | ||
}) | ||
|
||
it('changes the current fileid', () => { | ||
|
@@ -56,22 +43,63 @@ describe('Files: Sidebar', { testIsolation: true }, () => { | |
cy.url().should('contain', `apps/files/files/${fileId}`) | ||
}) | ||
|
||
it('closes the sidebar on delete', () => { | ||
it('changes the sidebar content on other file', () => { | ||
cy.visit('/apps/files') | ||
getRowForFile('file').should('be.visible') | ||
|
||
triggerActionForFile('file', 'details') | ||
|
||
cy.get('[data-cy-sidebar]') | ||
.should('be.visible') | ||
.findByRole('heading', { name: 'file' }) | ||
.should('be.visible') | ||
|
||
triggerActionForFile('folder', 'details') | ||
cy.get('[data-cy-sidebar]') | ||
.should('be.visible') | ||
.findByRole('heading', { name: 'folder' }) | ||
.should('be.visible') | ||
}) | ||
|
||
it('closes the sidebar on navigation', () => { | ||
cy.visit('/apps/files') | ||
|
||
getRowForFile('file').should('be.visible') | ||
getRowForFile('folder').should('be.visible') | ||
|
||
// open the sidebar | ||
triggerActionForFile('file', 'details') | ||
// validate it is open | ||
cy.get('[data-cy-sidebar]').should('be.visible') | ||
// wait for the sidebar to be settled | ||
cy.wait(500) | ||
cy.get('[data-cy-sidebar]') | ||
.should('be.visible') | ||
|
||
// if we navigate to the folder | ||
navigateToFolder('folder') | ||
// the sidebar should not be visible anymore | ||
cy.get('[data-cy-sidebar]') | ||
.should(assertNotExistOrNotVisible) | ||
}) | ||
|
||
it('closes the sidebar on delete', () => { | ||
cy.intercept('DELETE', `**/remote.php/dav/files/${user.userId}/file`).as('deleteFile') | ||
// visit the files app | ||
cy.visit('/apps/files') | ||
getRowForFile('file').should('be.visible') | ||
// open the sidebar | ||
triggerActionForFile('file', 'details') | ||
// validate it is open | ||
cy.get('[data-cy-sidebar]').should('be.visible') | ||
// delete the file | ||
triggerActionForFile('file', 'delete') | ||
cy.get('[data-cy-sidebar]').should('not.exist') | ||
cy.wait('@deleteFile', { timeout: 10000 }) | ||
// see the sidebar is closed | ||
cy.get('[data-cy-sidebar]') | ||
.should(assertNotExistOrNotVisible) | ||
}) | ||
|
||
it('changes the fileid on delete', () => { | ||
cy.intercept('DELETE', `**/remote.php/dav/files/${user.userId}/folder/other`).as('deleteFile') | ||
|
||
cy.uploadContent(user, new Blob([]), 'text/plain', '/folder/other').then((response) => { | ||
const otherFileId = Number.parseInt(response.headers['oc-fileid'] ?? '0') | ||
cy.login(user) | ||
|
@@ -86,10 +114,10 @@ describe('Files: Sidebar', { testIsolation: true }, () => { | |
// validate it is open | ||
cy.get('[data-cy-sidebar]').should('be.visible') | ||
cy.url().should('contain', `apps/files/files/${otherFileId}`) | ||
// wait for the sidebar to be settled | ||
cy.wait(500) | ||
|
||
triggerActionForFile('other', 'delete') | ||
cy.wait('@deleteFile') | ||
|
||
cy.get('[data-cy-sidebar]').should('not.exist') | ||
// Ensure the URL is changed | ||
cy.url().should('not.contain', `apps/files/files/${otherFileId}`) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.