From 5436892f893d58526d94d28dac05afb5cff596aa Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Thu, 25 Mar 2021 10:58:50 -0300 Subject: [PATCH] 17337: Adds more file renaming test cases. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It seems that the UI is decoding literal decodeable strings like: %22 -> " %C3%BC -> ü Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- cypress/integration/collection.spec.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js index 8c002362..3041acf5 100644 --- a/cypress/integration/collection.spec.js +++ b/cypress/integration/collection.spec.js @@ -202,7 +202,11 @@ describe('Collection panel tests', function () { 'some_file.pdf?', '?some_file.pdf', 'some%file.pdf', - 'some%2Ffile.pdf' + 'some%2Ffile.pdf', + 'some%22file.pdf', + 'some%20file.pdf', + "G%C3%BCnter's%20file.pdf", + 'bar' // make sure we can go back to the original name as a last step ]; eachPair(names, (from, to) => { cy.get('[data-cy=collection-files-panel]') -- 2.30.2