From: Lucas Di Pentima Date: Thu, 25 Mar 2021 13:58:50 +0000 (-0300) Subject: 17337: Adds more file renaming test cases. X-Git-Tag: 2.1.2.1~4^2~6 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/5436892f893d58526d94d28dac05afb5cff596aa 17337: Adds more file renaming test cases. It seems that the UI is decoding literal decodeable strings like: %22 -> " %C3%BC -> ΓΌ Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- 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]')